/*
Theme Name: wp-min
*/

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Orange Color Palette */
    --primary-color: #FF6B35;
    --primary-light: #FF9F68;
    --primary-dark: #E85A2A;
    --secondary-color: #FFA07A;
    --accent-color: #FFB347;

    /* Neutral Colors */
    --dark-bg: #1a1a1a;
    --dark-text: #2c2c2c;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #e0e0e0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF9F68 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 159, 104, 0.8) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

.pc-hidden {
    display: none;
}

.mobile-nav-logo {
    display: none;
}

@media (max-width: 768px) {
    .pc-hidden {
        display: inline;
    }

    body {
        font-size: 14px;
    }

    .btn-primary::after {
        right: 5px;
    }
}

/* ========================================
   Scroll Progress Bar
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background-color: transparent;
    transition: all var(--transition-base);
    z-index: 1000;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 25px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    transition: var(--transition-base);
}

.header.scrolled .logo a {
    color: var(--primary-color);
}

.logo-image {
    height: 32px;
    width: auto;
    display: block;
}

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

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
    position: relative;
    transition: var(--transition-base);
}

.header.scrolled .nav-link {
    color: var(--dark-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.nav-cta {
    background: var(--white);
    color: var(--dark-text);
    padding: 12px 40px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
}

.nav-link.nav-cta::after {
    display: none;
}

.header.scrolled .nav-link.nav-cta {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.nav-link.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition-base);
    border-radius: 2px;
}

.header.scrolled .mobile-menu-toggle span {
    background-color: var(--primary-color);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    will-change: transform;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}


/* パララックス装飾要素 */
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 159, 104, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #1F3C88;
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.6);
}

.hero-title .highlight {
    color: inherit;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--white);
    margin: 0 auto;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    padding-right: 52px;
}

.btn-primary::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    transition: transform var(--transition-base);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-49%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover::after {
    transform: translate(4px, -49%);
}

.hero .btn-primary {
    background: var(--white);
    color: var(--dark-text);
}

.hero .btn-primary:hover {
    color: var(--primary-color);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    padding-right: 52px;
}

.btn-outline::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    transition: transform var(--transition-base);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline:hover::after {
    transform: translate(4px, -50%);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 18px 45px;
    font-size: 16px;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: var(--section-padding);
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 6px;
}

.section-label::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 44px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
    transform: translateX(-50%);
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.contact-form-section .section-title {
    text-align: center;
}

.section-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   With AI Teaser Section
   ======================================== */
.with-ai-teaser {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* パララックス装飾 */
.with-ai-teaser::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.with-ai-teaser::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 159, 104, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.with-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.with-ai-image {
    position: relative;
    will-change: transform;
}

.with-ai-image img {
    border-radius: 20px;
    width: 100%;
    transform: translateZ(0);
}

.image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
    will-change: transform;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 20px;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* パララックス装飾 */
.services::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 159, 104, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.services-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
    align-items: start;
}

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

.service-tab {
    position: relative;
    text-align: left;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 107, 53, 0.18);
    border-radius: 16px;
    padding: 16px 18px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.service-tab-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

.service-tab-text {
    display: block;
}

.service-tab-title {
    font-size: 18px;
    font-weight: 800;
    display: block;
}

.service-tab-sub {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin-top: 4px;
}

.service-tab-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 999px;
}

.service-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-tab.is-active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.service-tab.is-active .service-tab-sub {
    color: rgba(255, 255, 255, 0.85);
}

.service-tab.is-active .service-tab-badge {
    background: var(--white);
    color: var(--primary-dark);
}

.services-detail {
    position: relative;
}

.service-panel {
    display: none;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, 0.12);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.service-panel.is-active {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(0, 1.2fr);
    animation: service-panel-fade 1.2s ease;
}

.service-panel-media {
    height: 100%;
}

.service-panel-media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.service-panel-body {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.service-panel-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.service-panel-logo {
    object-fit: cover;
}

.service-panel-logo-buchigire {
    width: 130px;
}

.service-panel-logo-buchiage {
    width: 160px;
}

.service-panel-logo-hinata {
    width: 200px;
}

.service-panel-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    top: 24px;
    right: 24px;
    justify-content: flex-end;
    max-width: 60%;
}

.service-panel-badge {
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #8a3a2d;
    background: rgba(214, 58, 47, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(214, 58, 47, 0.15);
}

.service-panel-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-text);
}

.service-panel-text {
    font-size: 15px;
    color: var(--dark-text);
    line-height: 1.7;
}

.service-emphasis {
    color: #d63a2f;
    font-weight: 800;
}

.service-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 5px;
}

.service-panel-list li {
    position: relative;
    padding-left: 18px;
    color: var(--dark-text);
}

.service-panel-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.service-panel-cta {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-primary);
    border-radius: 999px;
    width: fit-content;
    position: relative;
    padding-right: 38px;
}

.service-panel-cta::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-base);
}

.service-panel-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-panel-cta:hover::after {
    transform: translate(4px, -50%);
}

@keyframes service-panel-fade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    will-change: transform;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.service-recommend {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 10px;
    border-radius: 999px;
}

.service-card.is-recommended {
    border: 2px solid var(--primary-color);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.service-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 20px;
    position: relative;
}

.service-icon i {
    font-size: 30px;
    color: var(--white);
}

.service-title {
    font-size: 22px;
    font-weight: 800;
    text-align: left;
    margin-bottom: 4px;
}

.service-catch {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.6;
}

.service-target {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.service-target-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-right: 8px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 4px 0 6px;
    display: grid;
    gap: 8px;
}

.service-benefits li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: var(--dark-text);
}

.service-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.service-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.service-price {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(255, 107, 53, 0.12);
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    background: var(--white);
    transition: var(--transition-base);
}

.service-cta:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

.service-description {
    font-size: 15px;
    color: var(--gray);
    text-align: center;
    line-height: 1.7;
    padding: 0 20px 30px;
}

/* ========================================
   Strengths Section (プロフェッショナルデザイン)
   ======================================== */
/* ========================================
   Strengths Section - Premium Design
   ======================================== */
.strengths-new {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 140px 0 50px;
    position: relative;
}

.strengths-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    z-index: 1;
}

.strengths-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.strengths-new>.container {
    position: relative;
    z-index: 2;
}

.strengths-bg span {
    position: absolute;
    opacity: 0.95;
}

.bg-orb {
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.28) 0%, rgba(255, 107, 53, 0.08) 55%, transparent 72%);
    animation: float-bold 14s ease-in-out infinite;
}

.bg-ring {
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: inset 0 0 0 8px rgba(255, 159, 104, 0.12);
    animation: spin-slow 18s linear infinite;
}

.bg-ring-complex {
    background: conic-gradient(from 40deg, rgba(255, 107, 53, 0.28), rgba(255, 159, 104, 0.12), rgba(255, 107, 53, 0.28));
    mask: radial-gradient(circle, transparent 58%, #000 60%);
    -webkit-mask: radial-gradient(circle, transparent 58%, #000 60%);
    animation: spin-slow 16s linear infinite, drift-side 14s ease-in-out infinite;
}

.bg-grid {
    width: 220px;
    height: 220px;
    background-image: linear-gradient(rgba(255, 107, 53, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.14) 1px, transparent 1px);
    background-size: 18px 18px;
    border-radius: 24px;
    opacity: 0.7;
    animation: float-soft 20s ease-in-out infinite;
}

.bg-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255, 107, 53, 0.25);
    filter: drop-shadow(0 8px 16px rgba(255, 107, 53, 0.18));
    animation: float-bold 16s ease-in-out infinite;
}

.bg-square {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 107, 53, 0.32);
    background: rgba(255, 159, 104, 0.08);
    transform: rotate(12deg);
    animation: spin-drift 18s ease-in-out infinite;
}

.bg-hex {
    width: 90px;
    height: 52px;
    background: rgba(255, 107, 53, 0.18);
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: float-bold 20s ease-in-out infinite;
    box-shadow: 0 10px 18px rgba(255, 107, 53, 0.12);
}

.orb-1 {
    width: 220px;
    height: 220px;
    top: 42%;
    left: -90px;
    animation-duration: 12s;
}

.orb-2 {
    width: 160px;
    height: 160px;
    top: 48%;
    right: 6%;
    animation-duration: 14s;
}

.orb-3 {
    width: 320px;
    height: 320px;
    bottom: -140px;
    right: -120px;
    animation-duration: 16s;
}

.orb-4 {
    width: 140px;
    height: 140px;
    top: 70%;
    right: 28%;
    animation-duration: 12s;
}

.orb-5 {
    width: 120px;
    height: 120px;
    top: 14%;
    right: 16%;
    animation-duration: 10s;
}

.orb-6 {
    width: 90px;
    height: 90px;
    bottom: 12%;
    right: 6%;
    animation-duration: 9s;
}

.ring-1 {
    width: 140px;
    height: 140px;
    top: 46%;
    left: 12%;
    animation-duration: 18s;
}

.ring-2 {
    width: 220px;
    height: 220px;
    bottom: 10%;
    left: -40px;
    animation-duration: 24s;
}

.ring-3 {
    width: 120px;
    height: 120px;
    top: 62%;
    right: 18%;
    animation-duration: 16s;
}

.ring-4 {
    width: 160px;
    height: 160px;
    top: 10%;
    left: 8%;
    animation-duration: 20s;
}

.ring-5 {
    width: 260px;
    height: 260px;
    top: 28%;
    right: -120px;
    animation-duration: 22s;
}

.ring-7 {
    width: 140px;
    height: 140px;
    top: 8%;
    right: 4%;
    animation-duration: 20s;
}

.grid-1 {
    top: 66%;
    left: 10%;
    animation-duration: 28s;
}

.grid-2 {
    width: 180px;
    height: 180px;
    top: 38%;
    right: 4%;
    animation-duration: 24s;
}

.tri-1 {
    top: 6%;
    left: 40%;
    animation-duration: 12s;
}

.sq-1 {
    top: 12%;
    left: 12%;
    animation-duration: 16s;
}

.sq-2 {
    top: 60%;
    right: 10%;
    animation-duration: 18s;
}

.sq-3 {
    top: 24%;
    right: 22%;
    animation-duration: 14s;
}

.hex-1 {
    top: 34%;
    right: 36%;
    animation-duration: 15s;
}

.hex-2 {
    top: 70%;
    left: 22%;
    animation-duration: 17s;
}

.hex-4 {
    top: 16%;
    right: 32%;
    animation-duration: 17s;
}

@keyframes float-soft {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(28px) translateX(-18px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes float-bold {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(28px) translateX(-20px) rotate(6deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

@keyframes spin-drift {
    0% {
        transform: translateY(0) rotate(8deg);
    }

    50% {
        transform: translateY(22px) rotate(20deg);
    }

    100% {
        transform: translateY(0) rotate(8deg);
    }
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes drift-side {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(28px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Parallax Strengths Layout */
.parallax-strengths-wrapper {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 80px;
    align-items: flex-start;
}

/* Left: Sticky Vision & Mission */
.vm-sticky-container {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.vm-sticky-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
}

.vm-sticky-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FF9F68);
    border-radius: 24px 24px 0 0;
}

.vm-block {
    text-align: center;
    padding: 0;
}

.vm-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF6B35;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
}

.vm-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-sticky-image {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 24px;
    border-radius: 16px;
    overflow: hidden;
    background: #f7f4f1;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.vm-sticky-image img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.68;
    filter: grayscale(35%);
}

.vm-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.vm-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
}

/* Divider between Vision and Mission */
.vm-divider {
    margin: 35px 0;
    position: relative;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #FF9F68);
    opacity: 0.3;
    margin: 0 auto;
}

/* Right: Scrolling Strengths */
.strengths-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.strength-scroll-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.12);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.strength-scroll-card::after {
    content: '';
    position: absolute;
    inset: auto -10% -40% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 159, 104, 0.18) 0%, rgba(255, 159, 104, 0) 70%);
    pointer-events: none;
}

.strength-content {
    padding-right: 30px;
}

.strength-kicker {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.08);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.strength-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.strength-title-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.strength-title-text {
    display: inline-block;
}

.strength-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    font-weight: 400;
}

.pc-only {
    display: inline;
}

/* ========================================
   Strengths Section - Responsive
   ======================================== */
@media (max-width: 1200px) {
    .parallax-strengths-wrapper {
        grid-template-columns: 45% 1fr;
        gap: 40px;
    }

    .vm-sticky-content {
        padding: 30px 20px;
    }

    .vm-title {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .strengths-new {
        padding: 100px 0 120px;
    }

    .parallax-strengths-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vm-sticky-container {
        position: relative;
        top: 0;
    }

    .vm-sticky-content {
        padding: 40px;
    }

    .vm-title {
        font-size: 22px;
    }

    .vm-text {
        font-size: 14px;
    }

    .strength-scroll-card {
        padding: 35px 30px;
    }

}

@media (max-width: 768px) {
    .strengths-new {
        padding: 80px 0 100px;
    }

    .parallax-strengths-wrapper {
        gap: 40px;
    }

    .vm-sticky-content {
        padding: 35px 30px;
    }

    .vm-title {
        font-size: 20px;
    }

    .vm-text {
        font-size: 13px;
    }

    .vm-divider {
        margin: 25px 0;
    }

    .strength-scroll-card {
        padding: 35px 30px;
    }

    .strength-kicker {
        justify-content: center;
    }

    .strength-title {
        font-size: 20px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .strength-title-icon {
        width: 60px;
        height: 60px;
    }

    .strength-desc {
        font-size: 14px;
    }

    .strength-content {
        padding-right: 20px;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .strengths-new {
        padding: 60px 0 20px;
    }

    .parallax-strengths-wrapper {
        gap: 30px;
    }

    .vm-sticky-content {
        padding: 30px 20px;
    }

    .vm-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .vm-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .vm-label {
        font-size: 10px;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    .vm-divider {
        margin: 20px 0;
    }

    .strength-scroll-card {
        padding: 30px 25px;
    }

    .strength-title {
        font-size: 18px;
    }

    .strength-desc {
        font-size: 14px;
    }

    .strength-content {
        padding-right: 15px;
    }

}

/* ========================================
   Case Study Section
   ======================================== */
.case-study {
    padding: 120px 0 0;
    position: relative;
}

.case-study .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.case-study .section-description {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* AI Use Cases Section - Dark Theme with Complex Design */
.use-cases-ai {
    background: linear-gradient(135deg, #0a0a14 0%, #12122a 40%, #1a1a3e 70%, #0f1a30 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Grid Pattern Overlay */
.use-cases-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Glowing Orbs and Geometric Elements */
.use-cases-ai::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Large glowing orb - top right */
        radial-gradient(ellipse 600px 600px at 85% 15%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        /* Medium glowing orb - bottom left */
        radial-gradient(ellipse 400px 400px at 10% 85%, rgba(255, 159, 104, 0.12) 0%, transparent 50%),
        /* Small accent - center */
        radial-gradient(circle 200px at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        /* Diagonal highlight */
        linear-gradient(135deg, transparent 40%, rgba(255, 107, 53, 0.03) 50%, transparent 60%);
    pointer-events: none;
}

/* Decorative Circles */
.use-cases-ai .container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.use-cases-ai .container::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.use-cases-ai .container {
    position: relative;
    z-index: 1;
}

/* Floating Dots Decoration - using box-shadow trick */
.use-cases-ai .section-header::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 20%;
    width: 6px;
    height: 6px;
    background: rgba(255, 107, 53, 0.6);
    border-radius: 50%;
    box-shadow:
        80px 40px 0 rgba(255, 107, 53, 0.3),
        200px -20px 0 rgba(255, 159, 104, 0.4),
        320px 60px 0 rgba(255, 107, 53, 0.2),
        -60px 80px 0 rgba(255, 159, 104, 0.3),
        400px 20px 0 rgba(255, 107, 53, 0.25);
    pointer-events: none;
}

.use-cases-ai .section-header {
    position: relative;
}

.use-cases-ai .section-label {
    color: var(--primary-color);
}

.use-cases-ai .section-title {
    color: var(--white);
}

.use-cases-ai .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.use-cases-ai .case-nav-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
}

.use-cases-ai .case-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.use-cases-ai .case-dot {
    background: rgba(255, 255, 255, 0.3);
}

.use-cases-ai .case-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Case Slider Container */
.case-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.case-slider {
    overflow: hidden;
    border-radius: 16px;
    padding: 20px 0 50px;
}

.case-track {
    display: flex;
    align-items: stretch;
}

/* Case Card */
.case-card {
    width: 60%;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.12);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    transform: scale(1);
    transform-origin: center center;
    opacity: 1;
}

.case-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

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

.case-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #FF6B35;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(8px);
}

.case-content {
    padding: 26px 26px 28px;
}

.case-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.case-client,
.case-industry {
    font-size: 12px;
    color: #444;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.case-client::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.case-industry::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Slider Navigation */
.case-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
    margin-top: 0px;
}

.case-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--dark-text);
    z-index: 10;
}

.case-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.case-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    top: auto !important;
    bottom: auto !important;
}

.case-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Trusted By */
.trusted-by {
    text-align: center;
    margin-top: 60px;
}

.trusted-label {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Case Study Responsive */
@media (max-width: 1024px) {
    .case-card {
        width: 70%;
    }

    .case-slider-container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .case-study {
        padding: 80px 0 0;
    }

    .use-cases-ai {
        padding: 80px 0;
    }

    /* Grid pattern - smaller on mobile */
    .use-cases-ai::before {
        background-size: 40px 40px;
    }

    /* Glowing orbs - simplified for mobile */
    .use-cases-ai::after {
        background:
            radial-gradient(ellipse 300px 300px at 90% 10%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse 200px 200px at 5% 90%, rgba(255, 159, 104, 0.1) 0%, transparent 50%);
    }

    /* Decorative circles - smaller and repositioned */
    .use-cases-ai .container::before {
        width: 150px;
        height: 150px;
        top: -40px;
        right: -60px;
    }

    .use-cases-ai .container::after {
        width: 120px;
        height: 120px;
        bottom: -30px;
        left: -50px;
    }

    /* Floating dots - simplified */
    .use-cases-ai .section-header::before {
        top: -40px;
        left: 10%;
        box-shadow:
            40px 20px 0 rgba(255, 107, 53, 0.3),
            100px -10px 0 rgba(255, 159, 104, 0.4),
            -30px 50px 0 rgba(255, 159, 104, 0.3);
    }

    .case-card {
        width: 88%;
    }

    .case-slider-container {
        padding: 0 0px;
    }

    .case-content {
        padding: 20px;
    }

    .case-title {
        font-size: 16px;
    }

    .case-nav-btn {
        width: 44px;
        height: 44px;
    }

    .trusted-by {
        margin-top: 50px;
        padding: 40px 0 0;
    }
}

@media (max-width: 480px) {
    .use-cases-ai {
        padding: 60px 0;
    }

    /* Hide grid pattern on very small screens for performance */
    .use-cases-ai::before {
        background-size: 30px 30px;
        opacity: 0.5;
    }

    /* Simpler orbs on small screens */
    .use-cases-ai::after {
        background:
            radial-gradient(ellipse 200px 200px at 85% 5%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    }

    /* Hide container decorative circles on very small screens */
    .use-cases-ai .container::before,
    .use-cases-ai .container::after {
        display: none;
    }

    /* Minimal floating dots */
    .use-cases-ai .section-header::before {
        box-shadow:
            30px 15px 0 rgba(255, 107, 53, 0.25),
            -20px 40px 0 rgba(255, 159, 104, 0.2);
    }
}

/* ========================================
   Clients Logo Slider
   ======================================== */
.clients-slider {
    padding: 30px 0 80px;
    overflow: hidden;
    position: relative;
}

.clients-slider::before,
.clients-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-logo-swiper {
    width: 100%;
    overflow: visible;
}

.clients-logo-swiper .swiper-slide {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.clients-logo-swiper .swiper-slide img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .clients-slider {
        padding: 10px 0 50px;
    }

    .clients-slider::before,
    .clients-slider::after {
        width: 50px;
    }

    .clients-logo-swiper .swiper-slide {
        width: 160px;
        height: 80px;
        padding: 10px;
    }
}

/* ========================================
   Company Section
   ======================================== */
.company {
    position: relative;
    color: var(--white);
    overflow: hidden;
    padding: 70px 0;
}

.company-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.company-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.05) brightness(0.7);
}

.company-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 14, 10, 0.92) 0%, rgba(32, 22, 18, 0.92) 55%, rgba(255, 107, 53, 0.18) 100%);
}

.company-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
    justify-items: center;
}

.company-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.company-logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.company-info {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(12px) saturate(120%);
    border-radius: 20px;
    padding: 50px 00px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    width: 100%;
}

.company .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.company .section-label {
    color: var(--primary-light);
    text-transform: none;
    letter-spacing: 0.6px;
}

.company .section-label::after {
    left: 50%;
    transform: translateX(-50%);
}

.company .section-title {
    color: var(--white);
    font-size: 36px;
}

.company-details {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.company-detail-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    padding: 0;
    border-bottom: none;
}

.company-detail-row:last-child {
    border-bottom: none;
}

.company-detail-row dt {
    flex: none;
    font-weight: 600;
    color: var(--primary-light);
    font-size: 14px;
    letter-spacing: 1px;
}

.company-detail-row dd {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.company-cta {
    margin-top: 40px;
    text-align: center;
}

.company .btn-outline-white {
    position: relative;
    padding-right: 52px;
}

.company .btn-outline-white::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    transition: transform var(--transition-base);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.company .btn-outline-white:hover::after {
    transform: translate(4px, -50%);
}

@media (max-width: 992px) {
    .company-content {
        grid-template-columns: 1fr;
    }

    .company-logo-area {
        order: -1;
    }

    .company-logo {
        width: 140px;
    }

    .company-info {
        padding: 36px 32px;
    }

    .company .section-header {
        text-align: center;
    }

    .company .section-label::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .company-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .company-detail-row {
        grid-template-columns: 120px 1fr;
    }
}

@media (max-width: 576px) {
    .company {
        padding: 70px 0;
    }

    .company-detail-row {
        flex-direction: column;
        gap: 8px;
    }

    .company-detail-row dt {
        flex: none;
    }

    .company .section-title {
        font-size: 28px;
    }

    .company-info {
        padding: 28px 20px;
    }
}

/* ========================================
   Company Section - Animated Objects Background
   ======================================== */
.company-objects-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.company-objects-bg span {
    position: absolute;
    opacity: 0.6;
}

/* Circles */
.co-circle {
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    animation: co-float 5s ease-in-out infinite;
}

.co-circle-1 {
    width: 180px;
    height: 180px;
    top: 10%;
    left: -60px;
    animation-duration: 6s;
    animation-delay: 0s;
}

.co-circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 5%;
    animation-duration: 4.5s;
    animation-delay: -1s;
}

.co-circle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-duration: 5.5s;
    animation-delay: -2s;
}

.co-circle-4 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: -80px;
    animation-duration: 7s;
    animation-delay: -0.5s;
}

.co-circle-5 {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 40%;
    animation-duration: 4s;
    animation-delay: -3s;
}

/* Rings */
.co-ring {
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    animation: co-spin 6s linear infinite;
}

.co-ring-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 20%;
    border-width: 1px;
    animation-duration: 5s;
}

.co-ring-2 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 25%;
    border-style: dashed;
    animation-duration: 4s;
    animation-direction: reverse;
}

.co-ring-3 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: -100px;
    border-width: 3px;
    animation-duration: 8s;
}

.co-ring-4 {
    width: 70px;
    height: 70px;
    top: 40%;
    right: 35%;
    animation-duration: 3.5s;
    animation-delay: -1s;
}

/* Squares */
.co-square {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    animation: co-spin-drift 5s ease-in-out infinite;
}

.co-square-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-duration: 6s;
}

.co-square-2 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    right: 15%;
    animation-duration: 4.5s;
    animation-delay: -1.5s;
}

.co-square-3 {
    width: 80px;
    height: 80px;
    top: 65%;
    left: 60%;
    animation-duration: 7s;
    animation-delay: -2s;
}

.co-square-4 {
    width: 30px;
    height: 30px;
    top: 35%;
    left: 35%;
    animation-duration: 3.5s;
    animation-delay: -0.5s;
}

/* Triangles */
.co-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid rgba(255, 255, 255, 0.15);
    animation: co-float-rotate 5s ease-in-out infinite;
}

.co-triangle-1 {
    top: 25%;
    right: 10%;
    animation-duration: 5.5s;
}

.co-triangle-2 {
    bottom: 35%;
    left: 8%;
    animation-duration: 6s;
    animation-delay: -2s;
}

.co-triangle-3 {
    top: 55%;
    right: 40%;
    animation-duration: 7s;
    animation-delay: -1s;
}

/* Hexagons */
.co-hex {
    width: 60px;
    height: 35px;
    background: rgba(255, 255, 255, 0.12);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: co-float 5s ease-in-out infinite;
}

.co-hex-1 {
    top: 18%;
    left: 30%;
    animation-duration: 4.5s;
}

.co-hex-2 {
    bottom: 20%;
    right: 25%;
    width: 80px;
    height: 46px;
    animation-duration: 6s;
    animation-delay: -1.5s;
}

.co-hex-3 {
    top: 45%;
    left: 5%;
    width: 50px;
    height: 29px;
    animation-duration: 5s;
    animation-delay: -3s;
}

/* Lines / Bars */
.co-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: co-slide 3s ease-in-out infinite;
}

.co-line-1 {
    width: 120px;
    top: 30%;
    left: 20%;
    animation-duration: 3.5s;
}

.co-line-2 {
    width: 80px;
    top: 55%;
    right: 12%;
    animation-duration: 2.5s;
    animation-delay: -0.5s;
}

.co-line-3 {
    width: 150px;
    bottom: 25%;
    left: 40%;
    animation-duration: 4s;
    animation-delay: -1s;
}

.co-line-4 {
    width: 60px;
    top: 75%;
    right: 30%;
    animation-duration: 3s;
    animation-delay: -2s;
}

/* Dots clusters */
.co-dots {
    width: 80px;
    height: 80px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 12px 12px;
    animation: co-float 6s ease-in-out infinite;
}

.co-dots-1 {
    top: 12%;
    right: 8%;
    animation-duration: 5s;
}

.co-dots-2 {
    bottom: 15%;
    left: 50%;
    width: 60px;
    height: 60px;
    animation-duration: 7s;
    animation-delay: -2s;
}

/* Cross shapes */
.co-cross {
    width: 30px;
    height: 30px;
    position: relative;
    animation: co-spin 3s linear infinite;
}

.co-cross::before,
.co-cross::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
}

.co-cross::before {
    width: 100%;
    height: 4px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.co-cross::after {
    width: 4px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.co-cross-1 {
    top: 38%;
    right: 22%;
    animation-duration: 4s;
}

.co-cross-2 {
    bottom: 40%;
    left: 18%;
    width: 20px;
    height: 20px;
    animation-duration: 2.5s;
    animation-direction: reverse;
}

/* Diamond shapes */
.co-diamond {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: co-float-diamond 4s ease-in-out infinite;
}

.co-diamond-1 {
    top: 22%;
    left: 55%;
    animation-duration: 5s;
}

.co-diamond-2 {
    bottom: 28%;
    right: 8%;
    width: 25px;
    height: 25px;
    animation-duration: 3.5s;
    animation-delay: -1.5s;
}

/* Arc shapes */
.co-arc {
    width: 100px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    border-radius: 100px 100px 0 0;
    animation: co-arc-float 5s ease-in-out infinite;
}

.co-arc-1 {
    top: 48%;
    left: 70%;
    animation-duration: 6s;
}

.co-arc-2 {
    bottom: 12%;
    left: 12%;
    width: 70px;
    height: 35px;
    animation-duration: 4s;
    animation-delay: -2s;
}

/* Keyframes for company objects */
@keyframes co-float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
    }

    15% {
        transform: translateY(-50px) translateX(40px) scale(1.1);
    }

    30% {
        transform: translateY(30px) translateX(-60px) scale(0.9);
    }

    50% {
        transform: translateY(-70px) translateX(-30px) scale(1.15);
    }

    70% {
        transform: translateY(50px) translateX(50px) scale(0.85);
    }

    85% {
        transform: translateY(-30px) translateX(-20px) scale(1.05);
    }

    100% {
        transform: translateY(0) translateX(0) scale(1);
    }
}

@keyframes co-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(180deg) scale(1.2);
    }

    50% {
        transform: rotate(360deg) scale(0.8);
    }

    75% {
        transform: rotate(540deg) scale(1.1);
    }

    100% {
        transform: rotate(720deg) scale(1);
    }
}

@keyframes co-spin-drift {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    20% {
        transform: translateY(-60px) translateX(50px) rotate(120deg);
    }

    40% {
        transform: translateY(40px) translateX(-40px) rotate(240deg);
    }

    60% {
        transform: translateY(-50px) translateX(-60px) rotate(360deg);
    }

    80% {
        transform: translateY(30px) translateX(30px) rotate(480deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(720deg);
    }
}

@keyframes co-float-rotate {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    20% {
        transform: translateY(-60px) translateX(50px) rotate(60deg);
    }

    40% {
        transform: translateY(40px) translateX(-70px) rotate(-40deg);
    }

    60% {
        transform: translateY(-40px) translateX(30px) rotate(90deg);
    }

    80% {
        transform: translateY(50px) translateX(-40px) rotate(-30deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

@keyframes co-slide {
    0% {
        transform: translateX(0) translateY(0) scaleX(1);
        opacity: 0.7;
    }

    25% {
        transform: translateX(80px) translateY(-30px) scaleX(1.5);
        opacity: 0.4;
    }

    50% {
        transform: translateX(-60px) translateY(20px) scaleX(0.8);
        opacity: 0.8;
    }

    75% {
        transform: translateX(40px) translateY(-15px) scaleX(1.3);
        opacity: 0.5;
    }

    100% {
        transform: translateX(0) translateY(0) scaleX(1);
        opacity: 0.7;
    }
}

@keyframes co-float-diamond {
    0% {
        transform: rotate(45deg) translateY(0) translateX(0) scale(1);
    }

    25% {
        transform: rotate(90deg) translateY(-60px) translateX(40px) scale(1.2);
    }

    50% {
        transform: rotate(135deg) translateY(30px) translateX(-50px) scale(0.8);
    }

    75% {
        transform: rotate(180deg) translateY(-40px) translateX(30px) scale(1.1);
    }

    100% {
        transform: rotate(225deg) translateY(0) translateX(0) scale(1);
    }
}

@keyframes co-arc-float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-50px) translateX(60px) rotate(45deg);
    }

    50% {
        transform: translateY(40px) translateX(-50px) rotate(-30deg);
    }

    75% {
        transform: translateY(-30px) translateX(40px) rotate(60deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

/* Responsive - hide some objects on smaller screens */
@media (max-width: 768px) {

    .co-circle-1,
    .co-circle-4,
    .co-ring-3,
    .co-square-3,
    .co-hex-2,
    .co-line-3,
    .co-arc-1 {
        display: none;
    }

    .company-objects-bg span {
        opacity: 0.4;
    }
}

@media (max-width: 576px) {
    .company-objects-bg span {
        opacity: 0.3;
    }

    .co-triangle-3,
    .co-dots-2,
    .co-cross-2,
    .co-diamond-2 {
        display: none;
    }
}

/* ========================================
   News Section
   ======================================== */
.news {
    background-color: var(--light-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
}

.news-card {
    background: #f7f6f2;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: 0 14px 40px rgba(17, 24, 39, 0.12);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.2);
}

.news-date {
    display: block;
    font-size: 14px;
    color: #8c7f6f;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #1d1d1d;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.news-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.25) 100%);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform var(--transition-base);
}

.news-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(17, 24, 39, 0.88);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.news-card:hover .news-card-image img {
    transform: scale(1.04);
}

.news-card-body {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
}

.news-excerpt {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    position: relative;
    padding-right: 18px;
}

.news-link:hover {
    gap: 12px;
}

.news-link::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-base);
}

.news-link:hover::after {
    transform: translate(4px, -50%);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: url('assets/image/bg_cta.png') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-title-emphasis {
    font-size: 42px;
}

.cta-title-logo-wrap {
    display: inline-flex;
    align-items: center;
    margin: 0 6px;
}

.cta-title-logo {
    height: 50px;
    width: auto;
    vertical-align: middle;
    filter:
        drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 1px rgba(255, 255, 255, 0.75));
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--dark-bg);
    color: var(--white);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-logo {
    display: block;
    height: 28px;
    width: auto;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links li {
    display: inline-block;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding: 10px 0 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    margin: 0;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-privacy-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
}

.footer-privacy-link:hover {
    color: var(--white);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {

    .with-ai-grid,
    .services-grid,
    .strengths-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .services-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .service-panel.is-active {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px;
        transition: right var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .mobile-nav-logo {
        display: flex;
        justify-content: center;
        margin: 0 0 50px;
    }

    .mobile-nav-logo-image {
        width: 140px;
        height: auto;
    }

    .nav-link {
        color: var(--dark-text);
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
    }

    .nav-link.nav-cta {
        padding: 0;
        border-radius: 0;
        border: 0;
    }

    .header.scrolled .nav-link.nav-cta {
        background: var(--white);
        color: var(--dark-text);
    }

    .nav-link::after {
        bottom: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .mobile-menu-toggle.active span {
        background-color: var(--primary-color);
    }

    .hero {
        min-height: 600px;
        /* height: auto; */
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .btn-outline::after {
        border-radius: 10px;
    }

    .btn-primary::after {
        border-radius: 10px;
    }

    .with-ai-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    .with-ai-image {
        order: 2;
    }

    .with-ai-content {
        order: 1;
        text-align: center;
        width: 100%;
    }

    .with-ai-image img {
        margin: 0 auto;
    }

    .feature-list {
        max-width: 250px;
        margin: 30px auto;
    }

    .services-grid,
    .strengths-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .services-split {
        gap: 24px;
    }

    .services-tabs {
        grid-template-columns: 1fr;
    }

    .service-tab {
        padding: 15px 10px;
    }

    .service-panel.is-active {
        grid-template-columns: 1fr;
    }

    .service-panel {
        position: relative;
    }

    .service-panel-body {
        padding: 22px;
        position: static;
    }

    .service-panel-header {
        align-items: center;
    }

    .service-panel-badges {
        top: 12px;
        right: 12px;
        max-width: 80%;
        z-index: 2;
    }

    .service-panel-badge {
        background: var(--white);
    }

    .service-panel-title,
    .service-panel-text {
        text-align: center;
    }

    .service-panel-cta {
        width: 100%;
    }

    .service-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .service-cta {
        width: 100%;
    }

    .vision .section-title {
        font-size: 32px;
    }

    .vision-text {
        font-size: 16px;
    }

    .cta-title {
        font-size: 21px;
    }

    .cta-title-emphasis {
        font-size: 30px;
    }

    .cta-description {
        font-size: 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 100px;
        text-align: center;
    }

    .footer-links li {
        width: 100%;
    }

    .footer-bottom .container {
        flex-direction: column-reverse;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 33px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 14px 40px;
        font-size: 14px;
    }

}

/* ========================================
   Width AI Page Styles
   ======================================== */

/* Page Hero */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
    padding: 70px 0 50px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-hero-content .breadcrumb,
.page-hero-content .breadcrumb a,
.page-hero-content .breadcrumb i,
.page-hero-content .breadcrumb span {
    color: #000000;
}

.page-hero-content .breadcrumb a:hover {
    color: #ffffff;
}

.page-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-title {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.6);
}

.page-subtitle {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
}

/* Why Introduction */
.with-intro {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFF 50%, #FFF5F0 100%);
    overflow: hidden;
}

.with-intro::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.5) 0%, rgba(255, 107, 53, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.with-intro::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 159, 104, 0.5) 0%, rgba(255, 159, 104, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.with-intro .container {
    position: relative;
    z-index: 1;
}

.intro-content {
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.intro-text {
    line-height: 2;
    color: var(--gray);
    margin-top: 30px;
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--light-bg);
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.philosophy-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.philosophy-card-reverse {
    direction: rtl;
}

.philosophy-card-reverse>* {
    direction: ltr;
}

.philosophy-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

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

.philosophy-content {
    padding: 40px;
}

.philosophy-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.philosophy-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.philosophy-description {
    line-height: 1.9;
    color: var(--gray);
}

/* ========================================
   Philosophy Section - Parallax Layout
   ======================================== */
.philosophy-parallax {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #fef5f0 100%);
}

.philosophy-parallax-wrapper {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

/* Left: Sticky Section Info */
.philosophy-sticky-container {
    position: sticky;
    top: 140px;
}

.philosophy-sticky-content {
    text-align: center;
}

.philosophy-sticky-content .section-label {
    margin-bottom: 16px;
}

.philosophy-sticky-content .section-title {
    margin-bottom: 15px;
}

.philosophy-lead {
    color: var(--gray);
}

/* Right: Scrolling Cards */
.philosophy-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.philosophy-scroll-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.philosophy-card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.philosophy-kicker {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.philosophy-card-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 10px;
}

.philosophy-card-image {
    flex-shrink: 0;
    width: 280px;
    height: 190px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
}

.philosophy-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.philosophy-card-desc {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray);
    margin: 0;
}

/* Philosophy Parallax Responsive */
@media (max-width: 1024px) {
    .philosophy-parallax-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .philosophy-sticky-container {
        position: relative;
        top: 0;
    }

    .philosophy-sticky-content {
        padding-right: 0;
        text-align: center;
    }

    .philosophy-lead {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .philosophy-parallax {
        padding: 80px 0;
    }

    .philosophy-scroll-card {
        padding: 20px;
    }

    .philosophy-card-content {
        flex-direction: column;
        gap: 20px;
    }

    .philosophy-card-image {
        width: 100%;
        height: 200px;
    }

    .philosophy-card-title {
        font-size: 20px;
    }

    .philosophy-card-desc {
        font-size: 14px;
    }
}

/* AI Vision Section */
.ai-vision {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Diagonal stripes pattern */
.ai-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 35px,
            rgba(255, 107, 53, 0.035) 35px,
            rgba(255, 107, 53, 0.035) 38px);
    pointer-events: none;
}

/* Large decorative circles */
.ai-vision::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle 500px at -10% 20%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(circle 400px at 110% 75%, rgba(255, 159, 104, 0.15) 0%, transparent 50%),
        radial-gradient(circle 200px at 85% 5%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle 250px at 15% 95%, rgba(255, 159, 104, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating geometric shapes */
.ai-vision .container {
    position: relative;
    z-index: 1;
}

.ai-vision .container::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -60px;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.ai-vision .container::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -50px;
    width: 140px;
    height: 140px;
    border: 3px solid rgba(255, 159, 104, 0.25);
    transform: rotate(45deg);
    pointer-events: none;
}

/* Decorative dots */
.ai-vision .vision-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 12px;
    height: 12px;
    background: rgba(255, 107, 53, 0.35);
    border-radius: 50%;
    box-shadow:
        80px 40px 0 rgba(255, 159, 104, 0.3),
        -50px 100px 0 rgba(255, 107, 53, 0.25),
        150px -30px 0 rgba(255, 159, 104, 0.2),
        250px 80px 0 rgba(255, 107, 53, 0.3),
        -100px 180px 0 rgba(255, 159, 104, 0.25),
        300px 150px 0 rgba(255, 107, 53, 0.2);
    pointer-events: none;
}

.ai-vision .vision-grid {
    position: relative;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-image {
    position: relative;
}

.vision-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 450px;
}

.vision-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
}

.vision-text {
    line-height: 1.5;
    color: var(--gray);
    margin: 25px 0 40px;
}

.vision-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vision-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision-icon i {
    font-size: 24px;
    color: var(--white);
}

.vision-item-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.vision-item-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   Questions for the AI Era Section
   ======================================== */
.ai-questions {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background-color: #f2f2f2;
}

.ai-questions::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,
            rgba(0, 0, 0, 0.06) 0,
            rgba(0, 0, 0, 0.06) 1px,
            transparent 1px,
            transparent 80px),
        repeating-linear-gradient(180deg,
            rgba(0, 0, 0, 0.06) 0,
            rgba(0, 0, 0, 0.06) 1px,
            transparent 1px,
            transparent 80px);
    pointer-events: none;
}

.ai-questions::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02) 55%, rgba(0, 0, 0, 0.10));
    pointer-events: none;
}

.ai-questions-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Header */
.ai-questions-header {
    margin-bottom: 60px;
}

.ai-questions-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.ai-questions-sublabel {
    font-size: 15px;
    color: var(--gray);
    letter-spacing: 0.05em;
}

/* Lead Copy */
.ai-questions-lead {
    line-height: 2;
    margin-bottom: 50px;
    letter-spacing: 0.03em;
}

/* Main Copy */
.ai-questions-main {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 70px;
    letter-spacing: 0.02em;
}

/* Questions Block */
.ai-questions-block {
    margin-bottom: 70px;
}

.ai-questions-block p {
    font-size: 16px;
    font-weight: 400;
    line-height: 2.2;
    color: var(--dark-text);
    margin-bottom: 40px;
    letter-spacing: 0.04em;
}

.ai-questions-block p:last-child {
    margin-bottom: 0;
}

/* Closing Copy */
.ai-questions-closing p {
    font-weight: 500;
    line-height: 2;
    color: var(--dark-text);
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

p.ai-questions-emphasis {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.ai-questions-closing p:last-child {
    margin-bottom: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Width AI Page - Responsive
   ======================================== */
@media (max-width: 1024px) {

    .philosophy-card,
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-card-reverse {
        direction: ltr;
    }

    .philosophy-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 350px;
        margin-top: 70px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .vision-image img {
        max-height: 300px;
    }

    /* AI Vision responsive decorations */
    .ai-vision::before {
        background-image: repeating-linear-gradient(-45deg,
                transparent,
                transparent 28px,
                rgba(255, 107, 53, 0.05) 28px,
                rgba(255, 107, 53, 0.05) 31px);
    }

    .ai-vision::after {
        background:
            radial-gradient(circle 300px at -15% 15%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
            radial-gradient(circle 250px at 115% 85%, rgba(255, 159, 104, 0.12) 0%, transparent 50%);
    }

    .ai-vision .container::before {
        width: 140px;
        height: 140px;
        top: 3%;
        right: -50px;
        border-width: 2px;
        border-color: rgba(255, 107, 53, 0.15);
    }

    .ai-vision .container::after {
        width: 100px;
        height: 100px;
        bottom: 8%;
        left: -40px;
        border-width: 2px;
        border-color: rgba(255, 159, 104, 0.2);
    }

    .ai-vision .vision-grid::before {
        width: 10px;
        height: 10px;
        background: rgba(255, 107, 53, 0.3);
        box-shadow:
            50px 25px 0 rgba(255, 159, 104, 0.25),
            -40px 70px 0 rgba(255, 107, 53, 0.2);
    }

    .with-intro {
        padding: 80px 0;
    }

    .with-intro::before {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -80px;
    }

    .with-intro::after {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: -50px;
    }

    .intro-content::before {
        top: -30px;
        width: 40px;
    }

    .intro-text {
        font-size: 15px;
    }

    .philosophy-grid {
        gap: 40px;
    }

    .philosophy-content {
        padding: 30px;
    }

    .philosophy-number {
        font-size: 36px;
    }

    .philosophy-title {
        font-size: 22px;
    }

    .vision-decoration {
        width: 150px;
        height: 150px;
    }

    /* AI Questions responsive */
    .ai-questions {
        padding: 80px 0;
    }

    .ai-questions-inner {
        max-width: 100%;
    }

    .ai-questions-header {
        margin-bottom: 40px;
    }

    .ai-questions-main {
        font-size: 22px;
        margin-bottom: 50px;
    }

    .ai-questions-block {
        margin-bottom: 50px;
    }

    .ai-questions-block p {
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 30px;
    }

    .page-hero {
        min-height: 300px;
    }

    /* AI Questions - smaller screens */
    .ai-questions {
        padding: 60px 0;
    }

    .ai-questions-main {
        font-size: 20px;
    }

    .ai-questions-lead {
        font-size: 14px;
    }

    .ai-questions-block p {
        font-size: 15px;
    }

    /* AI Vision - simplified for small screens */
    .ai-vision::before {
        background-image: repeating-linear-gradient(-45deg,
                transparent,
                transparent 22px,
                rgba(255, 107, 53, 0.04) 22px,
                rgba(255, 107, 53, 0.04) 25px);
    }

    .ai-vision::after {
        background:
            radial-gradient(circle 200px at 95% 5%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
            radial-gradient(circle 180px at -10% 90%, rgba(255, 159, 104, 0.08) 0%, transparent 50%);
    }

    .ai-vision .container::before,
    .ai-vision .container::after {
        display: none;
    }

    .ai-vision .vision-grid::before {
        display: none;
    }
}

/* ========================================
   Vision Page Styles
   ======================================== */
.mission-statement {
    background-color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    font-size: 18px;
    line-height: 2;
    color: var(--gray);
    margin-top: 30px;
}

.vision-values {
    background-color: var(--light-bg);
}

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

.value-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.value-card:hover .value-image img {
    transform: scale(1.1);
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-overlay .value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
}

.value-overlay .value-icon i {
    font-size: 35px;
    color: var(--white);
}

.value-content {
    padding: 30px;
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.value-subtitle {
    color: var(--gray);
    margin-bottom: 15px;
}

.value-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

.future-vision {
    background-color: var(--white);
}

.future-items {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.future-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.future-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    min-width: 100px;
}

.future-item-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.future-item-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.ceo-message {
    background-color: var(--light-bg);
}

.message-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    margin-top: 60px;
}

.ceo-image {
    position: relative;
}

.ceo-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.ceo-name-plate {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
}

.ceo-position {
    font-size: 14px;
    margin-bottom: 5px;
}

.ceo-name {
    font-size: 20px;
    font-weight: 700;
}

.message-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message-paragraph {
    line-height: 1.9;
    color: var(--dark-text);
}

.message-signature {
    margin-top: 30px;
    text-align: right;
}

.message-signature p {
    font-size: 15px;
    color: var(--gray);
}

.signature-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 5px;
}

.culture-section {
    background-color: var(--white);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.culture-item {
    text-align: center;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all var(--transition-base);
}

.culture-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.culture-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.culture-icon i {
    font-size: 35px;
    color: var(--white);
}

.culture-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.culture-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   Company Page Styles
   ======================================== */
.company-overview {
    background-color: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.overview-text {
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 20px;
}

.access-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.access-link:hover {
    text-decoration: underline;
}

.company-history {
    background-color: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--light-bg);
}

.timeline-date {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.access-map {
    background-color: var(--light-bg);
}

.access-content {
    display: grid;
    gap: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--light-gray);
}

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

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--primary-color);
}

.map-overlay i {
    font-size: 48px;
    margin-bottom: 10px;
}

.map-overlay p {
    font-weight: 600;
}

.access-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.access-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
}

.access-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-title i {
    color: var(--primary-color);
}

.access-list {
    list-style: none;
}

.access-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.access-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   Service Page Styles
   ======================================== */
.service-intro {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFF 50%, #FFF5F0 100%);
    overflow: hidden;
}

.service-intro::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.5) 0%, rgba(255, 107, 53, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-intro::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 159, 104, 0.5) 0%, rgba(255, 159, 104, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-intro .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .service-intro {
        padding: 80px 0;
    }

    .service-intro::before {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -80px;
    }

    .service-intro::after {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: -50px;
    }
}

/* Service Page - Service Tabs (service.html専用) */
.sv-services-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 50px;
    justify-content: center;
}

.sv-service-tab {
    position: relative;
    text-align: left;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 107, 53, 0.18);
    border-radius: 16px;
    padding: 16px 18px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.sv-service-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sv-service-tab__logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

.sv-service-tab__text {
    display: block;
}

.sv-service-tab__title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.sv-service-tab__sub {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin-top: 4px;
}

.sv-service-tab__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .sv-services-tabs {
        grid-template-columns: 1fr;
    }

    .sv-service-tab {
        padding: 15px 10px;
    }
}

.main-services {
    background-color: var(--light-bg);
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-reverse .service-detail-grid {
    direction: rtl;
}

.service-detail-reverse .service-detail-grid>* {
    direction: ltr;
}

.service-detail-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 50px;
}

.service-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.service-detail-description {
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.service-flow {
    background-color: var(--white);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flow-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 20px;
    position: relative;
    transition: all var(--transition-base);
}

.flow-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.flow-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.flow-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}

.flow-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.flow-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.flow-description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.pricing-section {
    background-color: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-featured .pricing-title,
.pricing-featured .price-amount,
.pricing-featured .pricing-features li {
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.pricing-price {
    margin: 30px 0;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
}

.price-suffix {
    font-size: 20px;
    color: var(--gray);
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    color: var(--gray);
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

.case-studies {
    background-color: var(--white);
}

.case-study-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.case-study-card:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 30px;
}

.case-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.case-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
}

.case-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-results {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.result-item {
    flex: 1;
    text-align: center;
}

.result-label {
    font-size: 13px;
    color: var(--gray);
    display: block;
    margin-bottom: 5px;
}

.result-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
}

/* ========================================
   News Page Styles
   ======================================== */
.news-filter {
    background-color: var(--white);
    padding: 40px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
}

.news-list {
    background-color: var(--light-bg);
}

/* ニュースグリッド - 3列レイアウト */
.news-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ニュースカード - 縦型 */
.news-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.news-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

/* 画像エリア */
.news-item-image {
    position: relative;
    width: 100%;
    height: clamp(200px, 18vw, 260px);
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* カテゴリータグ（画像左上） */
.news-item-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* コンテンツエリア */
.news-item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

/* 日付 */
.news-item-date {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

/* タイトル（2行省略） */
.news-item-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 説明文（2行省略） */
.news-item-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* 続きを読むリンク */
.news-item-link {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s ease;
}

/* カード全体をクリック可能に */
.news-item-link::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.news-item-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.news-item-link:hover {
    gap: 10px;
}

.news-item-link:hover::after {
    transform: translateX(2px);
}

/* ニュースグリッド レスポンシブ */
@media (max-width: 992px) {
    .news-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .news-items {
        grid-template-columns: 1fr;
    }

    .news-item-title {
        font-size: 15px;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all var(--transition-base);
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all var(--transition-base);
}

.pagination-number:hover {
    background: var(--light-bg);
    border-color: var(--primary-color);
}

.pagination-number.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.pagination-dots {
    display: flex;
    align-items: center;
    color: var(--gray);
    padding: 0 5px;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-form-section {
    background: linear-gradient(135deg, #fff5f2 0%, #fff 50%, #f8f9fa 100%);
    padding: 100px 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-description {
    text-align: center;
    margin-bottom: 30px;
}

.form-notice {
    background: #fff8f5;
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 40px;
}

.form-notice p {
    margin: 0 0 10px;
}

.form-notice ul {
    margin: 0;
    padding-left: 20px;
}

.form-notice li {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.required-mark {
    color: #e74c3c;
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-group {
    display: grid;
    gap: 10px;
}

.form-label {
    font-weight: 600;
    color: var(--dark-text);
}

.form-input,
.form-textarea {
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all var(--transition-base);
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* Select カスタムスタイル */
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 50px;
    cursor: pointer;
}

/* IE対応: デフォルト矢印を非表示 */
select.form-input::-ms-expand {
    display: none;
}

/* Contact Form 7 対応 */
.wpcf7 select,
.wpcf7-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 50px;
    cursor: pointer;
}

.wpcf7 select::-ms-expand,
.wpcf7-form select::-ms-expand {
    display: none;
}

/* Contact Form 7 フォームレイアウト対応 */
.contact-form .wpcf7-form {
    display: grid;
    gap: 25px;
}

/* Contact Form 7 入力フィールド幅対応 */
.wpcf7 .form-input,
.wpcf7 .form-textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    box-sizing: border-box;
}

/* Contact Form 7 span.wpcf7-form-control-wrap 対応 */
.wpcf7-form-control-wrap {
    display: block;
}

.form-checkbox-group {
    margin-top: 15px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-text {
    font-size: 15px;
    color: var(--dark-text);
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 15px;
}

/* ========================================
   Responsive Styles for New Pages
   ======================================== */
@media (max-width: 1024px) {

    .values-grid,
    .culture-grid,
    .overview-grid,
    .access-info {
        grid-template-columns: 1fr;
    }

    .message-content {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-reverse .service-detail-grid {
        direction: ltr;
    }

    .service-detail-image {
        min-height: 300px;
    }

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

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

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

    .news-item-image {
        height: 220px;
    }

    .news-item-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item::before {
        left: -34px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .flow-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .pagination-number{font-size: 14px; height: 42px; width: 42px;}

    .pagination-btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .contact-form-section {
        padding: 30px 0;
    }

    .contact-form-section .section-title {
        font-size: 24px;
    }

    .form-wrapper {
        padding: 30px 20px;
        border-radius: 8px;
    }
    .form-description{margin-bottom: 20px;}
    .form-notice{padding: 15px;}
    .form-notice li{font-size: 12px; margin-bottom: 5px;}
    .form-input, .form-textarea{font-size: 14px;}
    .news-item-content{padding: 20px;}

    .pagination {
        flex-wrap: wrap;
    }
}

/* ========================================
   News Detail Page Styles
   ======================================== */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--gray);
    transition: var(--transition-base);
}

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

.breadcrumb i {
    font-size: 10px;
    color: var(--light-gray);
}

.breadcrumb span {
    color: var(--primary-color);
}

/* News Detail Hero */
.news-detail-hero {
    padding: 120px 0 30px;
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
}

.news-detail-header {
    max-width: 900px;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.news-detail-category {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: var(--primary-color);
    color: var(--white);
}

.news-detail-category.event {
    background: #4CAF50;
}

.news-detail-category.press {
    background: #2196F3;
}

.news-detail-category.update {
    background: #FF9800;
}

.news-detail-category.media {
    background: #9C27B0;
}

.news-detail-date {
    color: var(--gray);
    font-size: 14px;
}

.news-detail-date i {
    margin-right: 5px;
}

.news-detail-title {
    font-size: 39px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-text);
    margin: 0;
}

/* News Detail Content */
.news-detail-content {
    padding: 40px 0 100px;
}

.news-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.news-article {
    background: var(--white);
}

.article-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.article-body {
    line-height: 1.9;
    color: var(--dark-text);
}

.article-lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.9;
    color: var(--dark-text);
    padding: 25px;
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 40px;
    border-radius: 8px;
}

.article-lead p {
    margin: 0;
}

/* WordPress Blog Headings - グラデーション・モダンデザイン */
.article-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 60px 0 30px;
    padding-bottom: 15px;
    color: var(--dark-text);
    line-height: 1.4;
    position: relative;
}

.article-body h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8F5A 50%, transparent 100%);
    border-radius: 2px;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 50px 0 25px;
    padding: 15px 20px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.08) 0%, transparent 100%);
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #FF6B35 0%, #FF8F5A 100%) 1;
    color: var(--dark-text);
    line-height: 1.5;
}

.article-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-left: 25px;
    color: var(--dark-text);
    line-height: 1.5;
    position: relative;
}

.article-body h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.article-body h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 35px 0 18px;
    padding-left: 18px;
    color: var(--dark-text);
    line-height: 1.5;
    position: relative;
}

.article-body h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(180deg, #FF6B35 0%, #FF8F5A 100%);
    border-radius: 2px;
}

.article-body h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 30px 0 15px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8F5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
}

/* 旧クラス名との互換性維持 */
.article-heading {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    color: var(--dark-text);
    line-height: 1.4;
    position: relative;
}

.article-heading::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--white);
}

.article-body p {
    margin-bottom: 25px;
    line-height: 1.9;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition-base);
}

.article-body a:hover {
    color: var(--primary-dark);
}

.article-list {
    margin: 25px 0;
    padding-left: 25px;
}

.article-list li {
    margin-bottom: 15px;
    line-height: 1.8;
    position: relative;
    padding-left: 10px;
}

.article-list li::marker {
    color: var(--primary-color);
}

/* Event Info Box */
.event-info-box {
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    border: 2px solid #ffe8dc;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.event-info-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ffe8dc;
}

.event-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-info-row:first-child {
    padding-top: 0;
}

.event-info-label {
    font-weight: 600;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-info-label i {
    color: var(--primary-color);
    font-size: 16px;
}

.event-info-value {
    color: var(--dark-text);
    line-height: 1.8;
}

/* Program List */
.program-list {
    margin: 30px 0;
}

.program-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 1px solid var(--light-gray);
}

.program-item:last-child {
    border-bottom: none;
}

.program-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.program-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.program-content p {
    margin: 0;
    line-height: 1.8;
    color: var(--gray);
}

/* Speaker Box */
.speaker-box {
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.speaker-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.speaker-title {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.speaker-bio {
    line-height: 1.8;
    margin: 0;
}

/* Article CTA */
.article-cta {
    text-align: center;
    margin: 50px 0;
}

/* Article Footer */
.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-label {
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
    font-size: 18px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.line {
    background: #00B900;
}

/* Sidebar */
.news-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.recent-news-list {
    list-style: none;
}

.recent-news-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.recent-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-news-item a {
    display: block;
    transition: var(--transition-base);
}

.recent-news-item a:hover {
    color: var(--primary-color);
}

.recent-news-item time {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.recent-news-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    color: var(--dark-text);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--dark-text);
    transition: all var(--transition-base);
    background: var(--light-bg);
}

.category-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.sidebar-cta {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.sidebar-cta h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.sidebar-cta p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.sidebar-cta .btn {
    background: var(--white);
    color: var(--primary-color);
}

.sidebar-cta .btn:hover {
    background: var(--dark-text);
    color: var(--white);
}

/* News Navigation */
.news-navigation {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--light-gray);
}

.news-nav-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all var(--transition-base);
    color: var(--dark-text);
}

.news-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.news-nav-btn.prev {
    justify-content: flex-end;
    position: relative;
    text-align: right;
}

.news-nav-btn.prev::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.news-nav-btn.next {
    /* justify-content: flex-end; */
    grid-column: 3;
    position: relative;
}

.news-nav-btn.next::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.news-nav-btn.list {
    justify-content: center;
    padding: 20px 30px;
}

.news-nav-btn.disabled {
    visibility: hidden;
}

.news-nav-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-nav-label {
    font-size: 12px;
    opacity: 0.7;
    font-weight: 600;
}

.news-nav-title {
    font-size: 14px;
    font-weight: 600;
}

/* Ranking Article Styles */
.table-of-contents {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px 0;
}

.table-of-contents ul {
    list-style: none;
    margin: 0;
}

.table-of-contents li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.table-of-contents li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.table-of-contents a {
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition-base);
    display: block;
}

.table-of-contents a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.ranking-item {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 35px;
    border: 2px solid var(--light-gray);
    transition: all var(--transition-base);
    position: relative;
}

.ranking-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.ranking-item.rank-1 {
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    border-color: #FFD700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.ranking-item.rank-2 {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-color: #C0C0C0;
}

.ranking-item.rank-3 {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    border-color: #CD7F32;
}

.ranking-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.rank-1 .ranking-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-text);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.rank-2 .ranking-badge {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
}

.rank-3 .ranking-badge {
    background: linear-gradient(135deg, #CD7F32 0%, #B8792B 100%);
}

.rank-number {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.rank-label {
    font-size: 14px;
    font-weight: 600;
}

.ranking-content {
    margin-left: 0;
}

.ranking-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ranking-title i {
    color: #FFD700;
}

.ranking-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.ranking-tags .tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-text);
    border: 1px solid var(--light-gray);
}

.ranking-description {
    line-height: 1.9;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.ranking-details {
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px;
}

.detail-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    font-size: 15px;
    line-height: 1.8;
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-item strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 8px;
}

.detail-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.detail-item a:hover {
    color: var(--primary-dark);
}

.tips-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.tip-item {
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid #ffe8dc;
}

.tip-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-item h4 i {
    color: var(--primary-color);
}

.tip-item p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: var(--gray);
}

.related-info {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
}

.related-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.related-info ul {
    list-style: none;
}

.related-info li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.related-info li:last-child {
    border-bottom: none;
}

.related-info a {
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
}

.related-info a::before {
    content: '▸';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: 700;
}

.related-info a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 8px 16px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-text);
    transition: all var(--transition-base);
    border: 1px solid var(--light-gray);
}

.tag-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* News Detail Responsive */
@media (max-width: 1024px) {
    .news-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .news-detail-title {
        font-size: 27px;
    }

    .event-info-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .program-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-navigation {
        grid-template-columns: 1fr;
        margin-top: 40px;
        padding-top: 40px;
    }

    .news-nav-btn.next {
        grid-column: 1;
    }

    .news-nav-btn.list {
        order: -1;
    }

    .news-nav-btn.prev::before {
        left: 10px;
    }

    .news-nav-btn.next::after {
        right: 10px;
    }

    .news-nav-btn.prev {
        text-align: left;
        justify-content: flex-start;
        padding-left: 40px;
    }

    .tips-box {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        padding: 25px;
    }

    .ranking-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .news-detail-hero {
        padding: 100px 0 20px;
    }

    .news-detail-content {
        padding-top: 20px;
    }

    .article-heading {
        font-size: 22px;
    }

    .article-body h2 {
        font-size: 22px;
        margin: 50px 0 25px;
    }

    .article-body h3 {
        font-size: 20px;
        margin: 40px 0 20px;
        padding: 12px 15px;
    }

    .article-body h4 {
        font-size: 18px;
        margin: 35px 0 18px;
    }

    .article-body h5 {
        font-size: 16px;
        margin: 30px 0 15px;
    }

    .article-body h6 {
        font-size: 15px;
        margin: 25px 0 12px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .sidebar-cta .btn {
        padding-left: 30px;
    }

    .news-nav-content {
        padding-right: 15px;
    }
}

/* ========================================
   Service Section Styles (service.html)
   Shift AI Inspired Design
   ======================================== */

/* セクション基本スタイル */
.sv-section {
    padding: 120px 0;
    position: relative;
}

.sv-section--light {
    background: var(--white);
}

#buchigire-web {
    background: var(--white);
    position: relative;
}

#buchigire-web::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 35px,
            rgba(255, 107, 53, 0.03) 35px,
            rgba(255, 107, 53, 0.03) 38px);
    pointer-events: none;
}

#buchigire-web::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle 500px at -10% 20%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(circle 400px at 110% 75%, rgba(255, 159, 104, 0.15) 0%, transparent 50%),
        radial-gradient(circle 200px at 85% 5%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle 250px at 15% 95%, rgba(255, 159, 104, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* #buchigire-web::before,
#buchigire-web::after {
    content: "";
    position: absolute;
    pointer-events: none;
    mix-blend-mode: screen;
} */

#buchigire-web .container {
    position: relative;
    z-index: 1;
}

#buchigire-web .sv-hero {
    position: relative;
}

#hinata-web {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 55%, #f1ede8 100%);
    position: relative;
    overflow: hidden;
}

#hinata-web::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 28px,
            rgba(30, 30, 30, 0.035) 28px,
            rgba(30, 30, 30, 0.035) 30px);
    pointer-events: none;
}

#hinata-web::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 420px at 15% 15%, rgba(255, 215, 170, 0.2) 0%, transparent 55%),
        radial-gradient(circle 360px at 90% 75%, rgba(210, 200, 255, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

#hinata-web .container {
    position: relative;
    z-index: 1;
}



.sv-section--dark {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    color: var(--white);
}

/* セクションヘッダー */
.sv-header {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.sv-logo {
    max-height: 50px;
    margin-bottom: 10px;
}

.sv-section--dark .sv-logo {
    filter: brightness(0) invert(1);
}

.sv-category {
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sv-section--dark .sv-category {
    color: rgba(255, 255, 255, 0.5);
}

/* ヒーローエリア */
.sv-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.sv-hero--reverse {
    direction: rtl;
}

.sv-hero--reverse>* {
    direction: ltr;
}

.sv-hero__visual {
    position: relative;
}

.sv-hero__visual img {
    width: 100%;
}

.sv-title {
    font-size: 36px;
    font-weight: 710;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.sv-section--light .sv-title {
    color: var(--dark-text);
}

.sv-title--accent {
    color: var(--primary-color);
}

.sv-lead {
    font-size: 18px;
    line-height: 1.9;
    max-width: 680px;
    color: #666;
}

.sv-section--dark .sv-lead {
    color: rgba(255, 255, 255, 0.65);
}

/* ターゲットブロック */
.sv-target {
    margin: 0 auto 80px;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.04) 0%, rgba(255, 107, 53, 0.02) 100%);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.sv-target__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.sv-section--dark .sv-target__title {
    color: var(--primary-color);
}

.sv-target__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sv-target__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-text);
}

.sv-section--dark .sv-target__item {
    color: rgba(255, 255, 255, 0.85);
}

.sv-target__item i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    margin-top: 3px;
}

/* 特徴リスト */
.sv-features {
    max-width: 900px;
    margin: 0 auto 100px;
}

.sv-features__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.sv-features__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.sv-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.sv-section--dark .sv-feature {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.sv-section--light .sv-feature {
    background: #fff;
    border-color: #e8e8e8;
}

.sv-feature__icon {
    order: 2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 22px;
    margin: 24px 0;
}

.sv-section--dark .sv-feature__icon {
    background: var(--primary-color);
    color: #fff;
}

.sv-feature__title {
    order: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--dark-text);
    margin: 0;
}

.sv-section--dark .sv-feature__title {
    color: var(--white);
}

.sv-feature__text {
    order: 3;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.sv-section--dark .sv-feature__text {
    color: rgba(255, 255, 255, 0.6);
}

/* 料金・CTAエリア */
.sv-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.sv-cta__price {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    padding: 50px 70px;
    background: var(--light-bg);
    border-radius: 24px;
    margin-bottom: 24px;
}

.sv-section--dark .sv-cta__price {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-cta__price-divider {
    width: 1px;
    height: 70px;
    background: rgba(0, 0, 0, 0.08);
}

.sv-section--dark .sv-cta__price-divider {
    background: rgba(255, 255, 255, 0.15);
}

.sv-cta__price-item {
    text-align: center;
}

.sv-cta__price-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sv-section--dark .sv-cta__price-label {
    color: rgba(255, 255, 255, 0.45);
}

.sv-cta__price-value {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: var(--dark-text);
    letter-spacing: -3px;
}

.sv-section--dark .sv-cta__price-value {
    color: var(--white);
}

.sv-cta__price-unit {
    font-size: 24px;
    font-weight: 700;
}

.sv-cta__price-item--main .sv-cta__price-value {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sv-cta__note {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 35px;
}

.sv-section--dark .sv-cta__note {
    color: rgba(255, 255, 255, 0.45);
}

.sv-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ========================================
   Service Section Responsive
   ======================================== */
@media (max-width: 992px) {
    .sv-section {
        padding: 80px 0;
    }

    .sv-hero {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sv-hero--reverse {
        direction: ltr;
    }

    .sv-title {
        font-size: 36px;
    }

    .sv-cta__price {
        flex-direction: column;
        gap: 30px;
        padding: 40px 50px;
    }

    .sv-cta__price-divider {
        width: 80px;
        height: 1px;
    }

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

@media (max-width: 768px) {
    .sv-section {
        padding: 60px 0;
    }

    .sv-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .sv-number {
        font-size: 70px;
    }

    .sv-header__content {
        padding-top: 0;
    }

    .sv-hero {
        margin-bottom: 60px;
    }

    .sv-hero--flux .sv-hero__content {
        text-align: center;
    }

    .sv-cta__left {
        text-align: center;
    }

    .sm-hidden {
        display: none;
    }

    .cta-section {
        padding: 50px 0;
    }

    .sv-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .sv-lead {
        font-size: 14px;
    }

    .sv-target {
        padding: 28px 24px;
        margin-bottom: 50px;
    }

    .sv-target__title {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .sv-target__item {
        font-size: 14px;
        gap: 12px;
    }

    .sv-target__list {
        grid-template-columns: 1fr;
    }

    .sv-features {
        margin-bottom: 60px;
    }

    .sv-features__list {
        grid-template-columns: 1fr;
    }

    .sv-feature {
        padding: 32px 24px;
    }

    .sv-feature__title {
        font-size: 17px;
    }

    .sv-feature__icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin: 20px 0;
    }

    .sv-cta__price {
        padding: 35px 30px;
    }

    .sv-cta__price-value {
        font-size: 48px;
    }

    .sv-cta__price-unit {
        font-size: 20px;
    }

    .sv-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .sv-cta__buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .sv-number {
        font-size: 56px;
    }

    .sv-title {
        font-size: 24px;
    }

    .sv-feature__title {
        font-size: 16px;
    }

    .sv-feature__text {
        font-size: 13px;
    }

    .sv-cta__price-value {
        font-size: 40px;
    }
}

/* ========================================
   Flux-Inspired Service Section Styles
   ======================================== */

/* --- 共通設定 --- */
.sv-section--flux {
    padding: 100px 0;
}

/* --- ヘッダー --- */
.sv-header--flux {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
    margin-bottom: 40px;
}

.sv-header__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 6px 12px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 4px;
}

.sv-section--dark .sv-header__label {
    background: rgba(255, 255, 255, 0.1);
}

/* --- セクションヘッダーのH2タイトル --- */
.sv-header__title {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-header__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.sv-section--dark .sv-header__title {
    color: var(--white);
}

/* --- Target/Features 統一見出しスタイル --- */
.sv-section-header {
    margin-bottom: 32px;
    text-align: center;
}

.sv-section-header__title {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-text);
}

.sv-section--dark .sv-section-header__title {
    color: var(--white);
}

.sv-section-header__subtitle {
    color: var(--gray);
    margin: 0;
}

.sv-section--dark .sv-section-header__subtitle {
    color: rgba(255, 255, 255, 0.5);
}

/* --- ヒーロー（Flux風 2カラム） --- */
.sv-hero--flux {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.sv-hero__visual--flux {
    width: 100%;
}

.sv-hero__image-wrapper img {
    border-radius: 8px;
}

/* --- ターゲット（カード型） --- */
.sv-target--flux {
    margin: 0 auto 50px;
    padding: 0;
    background: none;
    border: none;
}

.sv-target--flux .sv-target__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.sv-target--flux .sv-target__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
}

.sv-target--flux .sv-target__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
}

.sv-section--dark .sv-target--flux .sv-target__title {
    color: var(--white);
}

.sv-target--flux .sv-target__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.sv-target__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px 20px 32px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    line-height: 1.6;
    box-shadow: 0 10px 24px rgba(22, 33, 62, 0.08);
    position: relative;
}

.sv-target__card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--primary-color), rgba(255, 107, 53, 0.2));
}

.sv-target__card i {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
}

.sv-section--dark .sv-target__card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

/* --- フィーチャー（Flux風グリッド） --- */
.sv-features--flux {
    max-width: 100%;
    margin: 0 auto 60px;
}

.sv-features--flux .sv-features__header {
    margin-bottom: 40px;
}

.sv-features--flux .sv-features__title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
    border: none;
    padding: 0;
    letter-spacing: -0.5px;
    color: var(--dark-text);
}

.sv-section--dark .sv-features--flux .sv-features__title {
    color: var(--white);
}

.sv-features__subtitle {
    font-size: 14px;
    color: var(--gray);
}

.sv-section--dark .sv-features__subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.sv-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sv-feature-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 20px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(22, 33, 62, 0.08);
    position: relative;
    overflow: hidden;
}

.sv-feature-card::after {
    content: "";
    position: absolute;
    top: -24px;
    right: -24px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.08);
}

.sv-section--dark .sv-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.sv-section--dark .sv-feature-card::after {
    background: rgba(255, 255, 255, 0.08);
}

.sv-feature-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 20px;
}

.sv-section--dark .sv-feature-card__icon {
    background: rgba(255, 107, 53, 0.2);
}

.sv-feature-card__content {
    flex: 1;
}

.sv-feature-card__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dark-text);
}

.sv-section--dark .sv-feature-card__title {
    color: var(--white);
}

.sv-feature-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

.sv-section--dark .sv-feature-card__text {
    color: rgba(255, 255, 255, 0.6);
}

/* --- CTA（Flux風） --- */
.sv-cta--flux {
    max-width: 100%;
    text-align: left;
}

.sv-cta__wrapper {
    position: relative;
    padding: 40px 45px;
    border-radius: 16px;
    overflow: hidden;
}

.sv-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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


.sv-cta__wrapper > *:not(.sv-cta__bg) {
    position: relative;
    z-index: 1;
}

.sv-cta__content {
    display: grid;
    grid-template-columns: minmax(180px, 240px) 1fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 850px;
    margin: 0 auto;
}

.sv-cta__badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 10px;
}

.sv-cta__heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.sv-cta--flux .sv-cta__buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
}

.sv-cta__text {
    font-size: 27px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.sv-cta__subtext {
    color: #fff;
    margin: 0 0 24px;
}

.sv-cta__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 80px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.sv-cta__btn-label {
    font-size: 14px;
    font-weight: 700;
}

.sv-cta__btn-text {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-cta__btn--primary {
    background: #2b6cb0;
    color: #fff;
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3);
}

.sv-cta__btn--primary:hover {
    background: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.4);
}

.sv-cta__btn--outline {
    background: #fff;
    color: var(--dark-text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sv-cta__btn--outline::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.sv-cta__btn--outline:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sv-cta__btn--outline:hover::after {
    transform: translateY(-50%) translateX(4px);
}

/* ========================================
   Flux-Inspired Responsive Styles
   ======================================== */
@media (max-width: 992px) {
    .sv-section--flux {
        padding: 80px 0;
    }

    .sv-hero--flux {
        gap: 40px;
    }

    .sv-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-target--flux .sv-target__cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sv-section--flux {
        padding: 60px 0;
    }

    .sv-header--flux {
        margin-bottom: 30px;
    }

    .sv-hero--flux {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    .sv-header__label{margin-bottom: 10px;}

    .sv-header__title {
        font-size: 26px;
    }

    .sv-header__logo {
        display: none;
    }

    .sv-section-header__title {
        font-size: 24px;
    }

    .sv-target--flux {
        margin-bottom: 48px;
    }

    .sv-target--flux .sv-target__title {
        font-size: 18px;
    }

    .sv-target__card {
        padding: 16px 20px;
        font-size: 14px;
    }

    .sv-features--flux {
        margin-bottom: 48px;
    }

    .sv-features--flux .sv-features__title {
        font-size: 28px;
    }

    .sv-features__grid {
        grid-template-columns: 1fr;
    }

    .sv-feature-card {
        padding: 20px 15px;
    }

    .sv-cta__wrapper {
        padding: 30px 20px;
    }

    .sv-cta__content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sv-cta__title {
        font-size: 14px;
    }

    .sv-cta__text {
        font-size: 20px;
    }

    .sv-cta--flux .sv-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .sv-cta__btn {
        width: 100%;
        max-width: 280px;
        min-height: 70px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .sv-feature-card {
        flex-direction: column;
        text-align: center;
    }

    .sv-feature-card__icon {
        margin: 0 auto;
    }

    .sv-feature-card__content {
        text-align: center;
        margin: auto;
    }
}

/* ========================================
   About Page - Goodpatch Style
   ======================================== */

/* About Intro Section (like width-intro) */
.about-intro {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFF 50%, #FFF5F0 100%);
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.5) 0%, rgba(255, 107, 53, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-intro::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 159, 104, 0.5) 0%, rgba(255, 159, 104, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-intro .container {
    position: relative;
    z-index: 1;
}

/* Vision / Mission Blocks */
.intro-vm-blocks {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 100px;
}

.intro-vm-block {
    text-align: center;
}

.intro-vm-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
}

.intro-vm-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    line-height: 1.4;
}

.intro-vm-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
}

/* Core Values - Goodpatch Style */
.core-values-gp {
    background-color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* 左上の1/4円 */
.core-values-gp::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.08);
    pointer-events: none;
}

/* 右下の1/4円 */
.core-values-gp::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.08);
    pointer-events: none;
}

.core-values-gp .container {
    position: relative;
    z-index: 1;
}

.values-list-gp {
    max-width: 900px;
    margin: 60px auto 0;
}

.value-item-gp {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.value-item-gp:first-child {
    padding-top: 0;
}

.value-item-gp:last-child {
    border-bottom: none;
}

.value-number-gp {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Noto Sans JP', sans-serif;
}

.value-icon-gp {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.value-icon-gp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-content-gp {
    padding-top: 5px;
}

.value-badge-gp {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding: 5px 14px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
}

.value-title-gp {
    font-size: 27px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.value-subtitle-gp {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.value-description-gp {
    line-height: 2;
}

/* Company Info - Enhanced Spacing & Centered */
.about-company-info {
    background:
        radial-gradient(600px 300px at 10% 10%, rgba(255, 107, 53, 0.08), transparent 70%),
        radial-gradient(480px 260px at 90% 20%, rgba(255, 159, 104, 0.12), transparent 70%),
        linear-gradient(180deg, #f7f5f2 0%, #ffffff 45%, #f6f6f6 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-company-info::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 17, 17, 0.06) 0%, transparent 70%);
    top: -220px;
    right: -160px;
    opacity: 0.7;
}

.about-company-info::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 255, 255, 0));
    bottom: -120px;
    left: -80px;
    transform: rotate(-12deg);
    opacity: 0.9;
}

.about-company-info .container {
    position: relative;
    z-index: 1;
}

.about-company-info .section-header {
    margin-bottom: 60px;
}

.about-company-info .about-info-table {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 28px 34px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
}

.about-company-info .about-info-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-company-info .about-info-row:nth-child(4){align-items: flex-start;}

.about-company-info .about-info-row:last-child {
    border-bottom: none;
}

.about-company-info .about-info-label {
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    justify-self: start;
}

/* Future Vision - Enhanced */
.future-vision {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.future-vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 500px at 80% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle 400px at 20% 80%, rgba(255, 159, 104, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.future-vision .container {
    position: relative;
    z-index: 1;
}

.future-vision .section-label,
.future-vision .section-title {
    color: var(--white);
}

.future-vision .vision-text,
.future-vision .future-item p {
    color: rgba(255, 255, 255, 0.85);
}

.future-vision .vision-description {
    color: #fff;
}

.future-vision .future-item h4 {
    color: var(--white);
}

.future-vision .future-icon {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
}

/* Company History - 2 Column Layout with Sticky Logo */
.company-history {
    background-color: #f9f9f9;
    padding: 120px 0;
}

.history-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.history-sticky-container {
    position: sticky;
    top: 120px;
}

.history-sticky-content {
    text-align: left;
}

.history-sticky-content .section-label {
    margin-bottom: 5px;
}

.history-sticky-content .section-title {
    margin-bottom: 20px;
}

.history-logo {
    display: inline-flex;
    align-items: flex-end;
    gap: 12px;
}

.history-logo img {
    max-width: 180px;
}

.history-logo-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text);
    letter-spacing: 0.5px;
}

.history-timeline-container {
    padding-top: 0;
}

.company-history .timeline {
    margin-top: 0;
}

/* Responsive - About Page Goodpatch Style */
@media (max-width: 768px) {
    .about-intro {
        padding: 80px 0;
    }

    .about-intro::before {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -80px;
    }

    .about-intro::after {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: -50px;
    }

    .intro-vm-blocks {
        gap: 40px;
        margin-top: 40px;
    }

    .intro-vm-title {
        font-size: 20px;
    }

    .intro-vm-text {
        font-size: 14px;
    }

    .core-values-gp {
        padding: 80px 0;
    }

    .values-list-gp {
        margin-top: 40px;
    }

    .value-item-gp {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 30px 0;
    }

    .value-item-gp:last-of-type{padding-bottom: 0;}

    .value-number-gp {
        font-size: 32px;
    }

    .value-icon-gp {
        width: 60px;
        height: 60px;
    }

    .value-title-gp {
        font-size: 21px;
        line-height: 1.5;
    }

    .value-description-gp {
        font-size: 15px;
        line-height: 1.9;
    }

    .about-company-info,
    .future-vision,
    .company-history {
        padding: 80px 0;
    }

    .about-company-info .about-info-table {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .about-company-info .about-info-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 0;
    }

    .about-company-info .about-info-label {
        min-width: auto;
        font-weight: 600;
        justify-self: start;
        border-radius: 20px;
        padding: 3px 15px;
    }

    .about-company-info .about-info-value {
        max-width: none;
        padding-left: 10px;
    }

    .future-number{font-size: 24px; min-width: 50px;}
    .future-item-content h3{font-size: 18px;}

    .history-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-sticky-container {
        position: static;
        text-align: center;
    }

    .history-sticky-content {
        text-align: center;
    }

    .history-logo {
        display: none;
    }

    /* Future section header center align */
    .future-vision .section-label,
    .future-vision .section-title,
    .future-vision .vision-description {
        text-align: center;
        display: block;
    }
}

/* ========================================
   Privacy Policy Page Styles
   ======================================== */

.privacy-section {
    padding: 80px 0 100px;
    background: var(--white);
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.privacy-intro {
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark-text);
    margin-bottom: 50px;
    padding: 25px;
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
}

.privacy-article {
    margin-bottom: 40px;
}

.privacy-article h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.privacy-article p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.privacy-article ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-article li {
    font-size: 15px;
    line-height: 1.9;
    color: var(--dark-text);
    margin-bottom: 10px;
    position: relative;
}

.privacy-article ul ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.privacy-contact {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.privacy-contact p {
    margin-bottom: 8px;
}

.privacy-contact a {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-contact a:hover {
    color: var(--primary-dark);
}

.privacy-date {
    font-size: 14px;
    color: var(--gray);
    text-align: right;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

/* Privacy Page Responsive */
@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 30px 20px;
    }

    .privacy-article h2 {
        font-size: 18px;
    }

    .privacy-intro {
        padding: 20px;
    }
}

/* ========================================
   Case Card Hover Effects
   ======================================== */
.case-card {
    cursor: pointer;
}

.case-card:hover {
    transform: scale(1.03);
    box-shadow: 0 24px 50px rgba(255, 107, 53, 0.15);
}

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

.case-card .case-image img {
    transition: transform 0.5s ease;
}

/* Hover indicator line */
.case-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.case-card:hover::after {
    transform: scaleX(1);
}

/* Click hint overlay on image */
.case-card .case-image::after {
    content: '詳細をダウンロード';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.85);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.case-card:hover .case-image::after {
    opacity: 1;
}

/* ========================================
   Case Download Modal Styles
   ======================================== */
.case-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.case-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.case-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.case-modal__container {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.case-modal.is-active .case-modal__container {
    transform: translateY(0) scale(1);
}

.case-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 16px;
    border-bottom: 1px solid var(--light-gray);
}

.case-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
}

.case-modal__close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--light-bg);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--gray);
}

.case-modal__close:hover {
    background: var(--primary-color);
    color: white;
}

.case-modal__body {
    padding: 28px;
}

.case-modal__description {
    text-align: center;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Modal内のCF7フォームスタイル */
.case-modal__form .wpcf7-form {
    display: grid;
    gap: 20px;
}

.case-modal__form .form-group {
    margin-bottom: 0;
}

.case-modal__form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.case-modal__form .form-group label .required {
    color: var(--primary-color);
}

.case-modal__form .wpcf7-form-control-wrap {
    display: block;
}

.case-modal__form input[type="text"],
.case-modal__form input[type="email"],
.case-modal__form input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.case-modal__form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.case-modal__form select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.case-modal__form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.case-modal__form .privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.case-modal__form .privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.case-modal__form .privacy-check label,
.case-modal__form .wpcf7-list-item-label {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.case-modal__form .privacy-check a {
    color: var(--primary-color);
    text-decoration: underline;
}

.case-modal__form .wpcf7-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.case-modal__form .wpcf7-submit:hover {
    background: var(--primary-dark);
}

.case-modal__form .wpcf7-spinner {
    display: block;
    margin: 10px auto 0;
}

.case-modal__form .wpcf7-response-output {
    margin: 15px 0 0;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}

/* Success State */
.case-modal__success {
    text-align: center;
    padding: 20px 0;
    display: none;
}

.case-modal__success.is-visible {
    display: block;
}

.case-modal__success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.case-modal__success-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.case-modal__success-text {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.case-modal__download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.case-modal__download-btn:hover {
    background: var(--primary-dark);
    color: white;
}

.case-modal__note {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .case-modal__container {
        max-width: 100%;
        margin: 0 10px;
    }

    .case-modal__header {
        padding: 20px 20px 14px;
    }

    .case-modal__body {
        padding: 20px;
    }

    .case-modal__title {
        font-size: 18px;
    }

    /* モバイルではホバーオーバーレイ非表示 */
    .case-card .case-image::after {
        display: none;
    }
}

/* ========================================
   Download Page Styles
   ======================================== */

.download-section {
    padding: 80px 0 100px;
    background: #fff;
}

.download-intro {
    text-align: center;
    margin-bottom: 60px;
}

.download-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.download-single {
    max-width: 600px;
    margin: 0 auto;
}

.download-card--large {
    display: flex;
    flex-direction: row;
}

.download-card--large .download-card__thumbnail {
    min-width: 200px;
    flex-shrink: 0;
}

.download-card--large .download-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.download-card__thumbnail {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8F5E 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.download-card__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-card__icon i {
    font-size: 36px;
    color: #fff;
}

.download-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    color: #FF6B35;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.download-card__badge.badge-ai {
    background: #1a1a2e;
    color: #fff;
}

.download-card__badge.badge-web {
    background: #00a8cc;
    color: #fff;
}

.download-card__content {
    padding: 28px;
}

.download-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.download-card__description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.download-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.download-card__meta span {
    font-size: 13px;
    color: #999;
}

.download-card__meta i {
    margin-right: 4px;
    color: #FF6B35;
}

.download-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8F5E 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.download-card__btn i {
    font-size: 16px;
}

/* Download CTA Section */
.download-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.download-cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.download-cta__title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.download-cta__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

.download-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-cta__buttons .btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.download-cta__buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.download-cta__buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.download-cta__buttons .btn-arrow {
    position: relative;
    padding-right: 40px;
}

.download-cta__buttons .btn-arrow::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Download Page Responsive */
@media screen and (max-width: 768px) {
    .download-section {
        padding: 60px 0 80px;
    }

    .download-intro {
        margin-bottom: 40px;
    }

    .download-description {
        font-size: 15px;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .download-card--large {
        flex-direction: column;
    }

    .download-card--large .download-card__thumbnail {
        min-width: auto;
    }

    .download-card__thumbnail {
        padding: 32px;
    }

    .download-card__icon {
        width: 64px;
        height: 64px;
    }

    .download-card__icon i {
        font-size: 28px;
    }

    .download-card__content {
        padding: 24px;
    }

    .download-card__title {
        font-size: 18px;
    }

    .download-card__description {
        font-size: 13px;
    }

    .download-card__meta {
        flex-direction: column;
        gap: 8px;
    }

    .download-cta {
        padding: 60px 0;
    }

    .download-cta__title {
        font-size: 22px;
    }

    .download-cta__text {
        font-size: 15px;
    }

    .download-cta__buttons {
        flex-direction: column;
    }

    .download-cta__buttons .btn-lg {
        width: 100%;
    }
}
