:root {
    --primary-color: #003366;
    /* 深みのある青 */
    --accent-blue: #007bff;
    /* 鮮やかな青 */
    --accent-green: #28a745;
    /* 控えめな緑 */
    --accent-red: #dc3545;
    /* 控えめな赤 */
    --text-color: #333;
    --text-light: #666;
    --bg-white: #fff;
    --bg-light: #f4f7f9;
    --border-color: #e1e8ed;
    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    line-height: 1.3;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-blue);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.4);
    opacity: 0.95;
}

/* Header */
.site-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.site-header.scrolled .site-title a,
.site-header.scrolled .main-navigation ul li a {
    color: var(--text-color);
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-branding .logo-img {
    height: 76px;
    width: auto;
    display: block;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.site-title {
    font-size: 1.4rem;
    color: #fff;
    /* Initial state on video */
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    margin: 0 auto;
}

.main-navigation ul li {
    margin-left: 30px;
}

.main-navigation ul li a {
    color: #fff;
    /* Initial state */
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition);
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

/* Dropdown sub-menu */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 10px 0;
    list-style: none;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0 !important;
    border-bottom: 1px solid var(--border-color);
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    transition: background 0.3s, color 0.3s !important;
}

.sub-menu li a::after {
    display: none !important;
}

.sub-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color) !important;
}

/* responsive dropdown */
@media (max-width: 768px) {
    .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
        background: transparent;
    }

    .menu-item-has-children.open .sub-menu {
        display: block;
    }

    .sub-menu li a {
        color: var(--text-color) !important;
    }
}

/* Cursor (Desktop only) */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.custom-cursor.active {
    opacity: 1;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(2.5);
    background: rgba(0, 123, 255, 0.1);
}

/* FV Video Section */
.hero-video-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
}

@media (min-width: 769px) {
    .video-background {
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
        object-fit: cover;
        object-position: center center;
        transform: none;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-particle-field {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-orb {
    position: relative;
    width: clamp(84px, 10vw, 150px);
    padding: 0;
    border: 0;
    background: transparent;
    appearance: none;
    cursor: pointer;
    animation: heroOrbFloat 7.2s ease-in-out infinite;
}

.hero-orb-surface {
    position: relative;
    display: block;
    width: 100%;
}

.hero-orb-logo {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    filter: drop-shadow(0 18px 30px rgba(0, 20, 40, 0.26));
    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.hero-orb-glow {
    position: absolute;
    inset: 8% -4%;
    background:
        radial-gradient(circle at 28% 46%, rgba(56, 111, 194, 0.16), rgba(56, 111, 194, 0) 28%),
        radial-gradient(circle at 16% 24%, rgba(233, 65, 75, 0.16), rgba(233, 65, 75, 0) 22%),
        radial-gradient(circle at 30% 22%, rgba(83, 166, 131, 0.18), rgba(83, 166, 131, 0) 24%);
    filter: blur(18px);
    opacity: 0.58;
    z-index: -1;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-orb::before {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 111, 194, 0.12), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hero-orb:hover .hero-orb-surface,
.hero-orb:focus-visible .hero-orb-surface,
.hero-video-section.hero-orb-active .hero-orb-surface {
    transform: scale(1.04);
}

.hero-orb:hover .hero-orb-logo,
.hero-orb:focus-visible .hero-orb-logo,
.hero-video-section.hero-orb-active .hero-orb-logo {
    transform: scale(1.04);
    filter: drop-shadow(0 24px 36px rgba(0, 20, 40, 0.3));
}

.hero-orb:hover .hero-orb-glow,
.hero-orb:focus-visible .hero-orb-glow,
.hero-video-section.hero-orb-active .hero-orb-glow {
    opacity: 0.9;
    transform: scale(1.08);
}

.hero-orb:hover::before,
.hero-orb:focus-visible::before,
.hero-video-section.hero-orb-active .hero-orb::before {
    opacity: 1;
}

.hero-orb:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 8px;
}

.hero-video-section.hero-orb-active .hero-orb-logo,
.hero-video-section.hero-orb-complete .hero-orb-logo {
    opacity: 0;
    transform: scale(1.18);
    filter: drop-shadow(0 30px 44px rgba(0, 20, 40, 0.16));
}

.hero-video-section.hero-orb-active .hero-orb-glow,
.hero-video-section.hero-orb-complete .hero-orb-glow {
    opacity: 0;
    transform: scale(1.24);
}

.hero-video-section.hero-orb-complete .hero-orb {
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    transform: translate3d(0, 0, 0) scale(0.4);
    will-change: transform, opacity;
}

@keyframes heroOrbFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-7deg);
    }

    50% {
        transform: translateY(-8px) rotate(6deg);
    }
}

.hero-marquee-section {
    position: relative;
    padding: 26px 0 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 249, 0.82));
}

.hero-marquee-shell {
    position: relative;
    overflow: hidden;
}

.hero-marquee-shell::before,
.hero-marquee-shell::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.hero-marquee-shell::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}

.hero-marquee-shell::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}

.hero-marquee-track {
    display: flex;
    align-items: center;
    gap: 3.6rem;
    width: max-content;
    white-space: nowrap;
    animation: heroMarqueeFlow 34s linear infinite;
}

.hero-marquee-track span {
    display: inline-block;
    font-size: clamp(3.8rem, 8.8vw, 8.4rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    color: rgba(0, 51, 102, 0.05);
}

@keyframes heroMarqueeFlow {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Sections Style */
.section-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section Specifics */
.about-subcopy {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.about-vision-container {
    background: #fff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.05);
    border: 1px solid var(--border-color);
}

.about-message-box {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--text-color);
    font-weight: 500;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.1);
    background: #fff;
    border-color: rgba(0, 123, 255, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.stat-unit {
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 5px;
}

.stat-meta,
.stat-note {
    display: block;
    margin-top: 10px;
    font-size: 0.76rem;
    line-height: 1.6;
}

.stat-meta {
    color: var(--primary-color);
    font-weight: 700;
    opacity: 0.72;
}

.stat-note {
    color: var(--text-light);
}

.stat-card.stat-card-has-detail {
    position: relative;
    isolation: isolate;
    overflow: visible;
    z-index: 3;
}

.stat-card-detail {
    position: absolute;
    left: 50%;
    top: calc(100% + 14px);
    width: min(320px, calc(100vw - 56px));
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 123, 255, 0.18);
    box-shadow: 0 16px 30px rgba(0, 51, 102, 0.12);
    text-align: left;
    opacity: 0;
    transform: translate(-50%, -10px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
    z-index: 3;
}

.stat-card-detail::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -8px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.97);
    border-left: 1px solid rgba(0, 123, 255, 0.18);
    border-top: 1px solid rgba(0, 123, 255, 0.18);
    transform: translateX(-50%) rotate(45deg);
}

.stat-card-has-detail:hover .stat-card-detail,
.stat-card-has-detail:focus-within .stat-card-detail,
.stat-card-has-detail:focus .stat-card-detail {
    opacity: 1;
    transform: translate(-50%, 0);
}

.stat-card-detail-title {
    display: block;
    margin-bottom: 10px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary-color);
}

.stat-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stat-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.08);
    color: var(--primary-color);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1;
}

/* Services / Case Study Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Service Card (3D & Glassmorphism) */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card:hover {
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15),
        0 0 20px rgba(0, 123, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.service-card .card-icon,
.service-card .card-title,
.service-card .card-text,
.service-card .card-link {
    transform: translateZ(30px);
    transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
    transform: translateZ(50px) scale(1.1);
}

.service-card:hover .card-title,
.service-card:hover .card-link {
    transform: translateZ(40px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    display: inline-block;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.card-link {
    margin-top: 25px;
    color: var(--accent-blue);
    font-weight: bold;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-card:hover .card-link {
    gap: 12px;
}

/* Achievement (Results) Section specific - CSS Grid Layout */
.achievement-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.achievement-item {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.achievement-item:nth-child(even) {
    flex-direction: column;
    /* Reset row-reverse from before */
}

.achievement-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achievement-item:hover .achievement-image img {
    transform: scale(1.05);
}

.achievement-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.achievement-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    border-left: 3px solid var(--accent-blue);
    margin-bottom: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.achievement-results {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.result-box {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.result-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* News & Column List */
.post-list {
    border-top: 1px solid var(--border-color);
}

.post-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 30px;
}

.post-date {
    font-size: 0.9rem;
    color: var(--text-light);
    min-width: 100px;
}

.post-category {
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--primary-color);
    color: #fff;
    padding: 2px 10px;
    border-radius: 3px;
}

/* Footer */
.site-footer {
    background-color: #001a33;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 76px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.footer-logo-img-bottom {
    margin-top: 18px;
    margin-bottom: 0;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-address-mobile-break {
    display: none;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-nav .menu-item {
    margin-bottom: 12px;
}

.footer-service-item {
    margin-bottom: 14px;
}

.footer-service-label {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-submenu {
    margin-top: 10px;
    padding-left: 16px;
}

.footer-submenu li + li {
    margin-top: 8px;
}

.footer-submenu a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.footer-submenu a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-sns {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.sns-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.sns-icon:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-item {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        margin-bottom: 28px;
    }

    .hero-orb {
        width: clamp(74px, 22vw, 120px);
    }

    .video-background {
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
        object-fit: cover;
        object-position: center center;
        transform: none;
    }

    .about-subcopy {
        font-size: 1.3rem;
    }

    .about-vision-container {
        padding: 30px 20px;
    }

    .about-message-box {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-marquee-section {
        padding: 20px 0 12px;
    }

    .hero-marquee-shell::before,
    .hero-marquee-shell::after {
        width: 56px;
    }

    .hero-marquee-track {
        gap: 1.8rem;
        animation-duration: 24s;
    }

    .hero-marquee-track span {
        font-size: clamp(2.3rem, 12vw, 4.2rem);
        letter-spacing: 0.05em;
    }

    .stat-card {
        min-height: auto;
        padding: 24px 18px;
    }

    .stat-meta {
        display: none;
    }

    .stat-card.stat-card-has-detail {
        cursor: pointer;
    }

    .stat-card-detail {
        position: static;
        margin-top: 16px;
        opacity: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transform: translateY(-6px);
        pointer-events: none;
        padding-top: 0;
        padding-bottom: 0;
        transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease, padding 0.28s ease;
    }

    .stat-card-detail::before {
        display: none;
    }

    .stat-card-has-detail.is-open .stat-card-detail,
    .stat-card-has-detail:focus-within .stat-card-detail {
        opacity: 1;
        max-height: 240px;
        transform: translateY(0);
        pointer-events: auto;
        padding-top: 14px;
        padding-bottom: 14px;
    }

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

    .achievement-image {
        height: 200px;
    }

    .achievement-content {
        padding: 24px 20px;
    }

    .achievement-results {
        gap: 20px;
        flex-wrap: wrap;
    }

    .site-header {
        background: #fff;
        height: 70px;
    }

    .site-title,
    .main-navigation ul li a {
        color: var(--text-color);
    }

    .main-navigation ul {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-address-mobile-break {
        display: inline;
    }

    .custom-cursor {
        display: none;
    }
}
/* Extended Visual Effects */
body.is-loaded .hero-content,
body.is-loaded .site-header,
body.is-loaded .section-padding {
    animation: pageReveal 0.9s ease both;
}

@keyframes pageReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.scroll-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.24);
    transform-origin: left center;
    pointer-events: none;
}

.scroll-progress-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.08s linear;
}

.hero-video-section::before,
.hero-video-section::after {
    content: '';
    position: absolute;
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    filter: blur(4px);
    animation: floatingGlow 11s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.hero-video-section::before {
    top: -12vw;
    left: -6vw;
}

.hero-video-section::after {
    right: -8vw;
    bottom: -12vw;
    animation-delay: -5s;
}

@keyframes floatingGlow {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(12px, -14px, 0) scale(1.07);
    }
}

.hero-content {
    transition: transform 0.25s ease-out;
    will-change: transform;
}

.card,
.service-card,
.achievement-item,
.stat-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.card::before,
.service-card::before,
.achievement-item::before,
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.44) 45%, rgba(255, 255, 255, 0) 70%);
    transform: translateX(-125%);
    transition: transform 0.9s ease;
    pointer-events: none;
    z-index: 2;
}

.card:hover::before,
.service-card:hover::before,
.achievement-item:hover::before,
.stat-card:hover::before {
    transform: translateX(125%);
}

.post-item {
    position: relative;
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.post-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 3px;
    height: 0;
    transform: translateY(-50%);
    background: var(--accent-blue);
    transition: height 0.3s ease;
}

.post-item:hover {
    transform: translateX(6px);
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.08), rgba(0, 123, 255, 0));
}

.post-item:hover::before {
    height: 68%;
}

.fade-in-up[data-delay] {
    transition-delay: var(--stagger-delay, 0s);
}

.interactive-light {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.18), rgba(0, 123, 255, 0));
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.interactive-light.active {
    opacity: 1;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 42px;
    height: 42px;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    margin: 6px 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .main-navigation {
        position: relative;
    }

    .main-navigation ul {
        position: absolute;
        top: 70px;
        right: 0;
        left: auto;
        width: min(320px, calc(100vw - 24px));
        background: #fff;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        padding: 16px 18px 18px;
        flex-direction: column;
        gap: 2px;
        border-radius: 18px;
        border: 1px solid rgba(0, 51, 102, 0.08);
    }

    .main-navigation ul li {
        margin-left: 0;
    }

    .main-navigation ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 48px;
        padding: 10px 4px;
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .main-navigation .menu-item-has-children {
        padding-bottom: 4px;
        border-bottom: 1px solid rgba(0, 51, 102, 0.08);
    }

    .main-navigation .menu-item-has-children:last-child {
        border-bottom: none;
    }

    .main-navigation .sub-menu {
        padding: 6px 0 4px 12px;
        margin-top: 2px;
    }

    .main-navigation .sub-menu li + li {
        margin-top: 2px;
    }

    .main-navigation .sub-menu li a {
        min-height: 42px;
        padding: 8px 0;
        font-size: 0.92rem !important;
        color: rgba(0, 51, 102, 0.86) !important;
    }

    .main-navigation ul.is-open {
        display: flex;
    }

    .menu-toggle {
        display: block;
        color: var(--text-color);
    }

    .interactive-light {
        display: none;
    }

    .scroll-progress {
        height: 1px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* Section Background Effects (About / News) */
#about,
#news {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#about .container,
#news .container {
    position: relative;
    z-index: 2;
}

#about::before,
#news::before {
    content: '';
    position: absolute;
    inset: -20% -10%;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 123, 255, 0.09), rgba(0, 123, 255, 0) 44%),
        radial-gradient(circle at 86% 78%, rgba(0, 51, 102, 0.1), rgba(0, 51, 102, 0) 48%),
        linear-gradient(120deg, rgba(0, 123, 255, 0.04), rgba(0, 51, 102, 0.02));
    animation: sectionAurora 14s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

#about::after,
#news::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 51, 102, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 51, 102, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

@keyframes sectionAurora {
    0% {
        transform: translate3d(-1.5%, -1.2%, 0) scale(1);
    }

    100% {
        transform: translate3d(1.8%, 1.4%, 0) scale(1.05);
    }
}


/* About Page */
.about-page-hero {
    position: relative;
    padding: 150px 0 90px;
    background:
        linear-gradient(135deg, rgba(0, 51, 102, 0.96), rgba(0, 123, 255, 0.84)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 30%);
    color: #fff;
    overflow: hidden;
}

.about-page-hero::before,
.about-page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-page-hero::before {
    width: 360px;
    height: 360px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.about-page-hero::after {
    width: 280px;
    height: 280px;
    left: -80px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.about-page-kicker {
    margin-bottom: 14px;
    font-size: 0.88rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    opacity: 0.78;
}

.about-page-title {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.about-page-lead {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1.18rem;
    line-height: 1.9;
    opacity: 0.95;
}

.about-page-story {
    position: relative;
}

.about-page-panel {
    background: #fff;
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 18px 50px rgba(0, 51, 102, 0.08);
}

.about-page-heading-text {
    max-width: 760px;
    margin: -18px auto 0;
    color: var(--text-light);
    line-height: 1.9;
}

.about-page-copy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.about-page-copy-block {
    position: relative;
    padding: 28px 30px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(244, 247, 249, 0.9), rgba(255, 255, 255, 1));
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.05);
}

.about-page-copy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.about-page-copy-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.about-page-copy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95), rgba(0, 123, 255, 0.82));
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 51, 102, 0.16);
    font-size: 1rem;
}

.about-page-copy-title {
    margin-bottom: 14px;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--primary-color);
}

.about-page-copy-block p {
    line-height: 1.95;
}

.about-page-message {
    margin-top: 38px;
    padding: 36px 40px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.96), rgba(0, 123, 255, 0.88));
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 51, 102, 0.18);
}

.about-page-copy-header-light .about-page-copy-step {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.about-page-copy-header-light .about-page-copy-icon {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.about-page-copy-title-light {
    color: #fff;
}

.about-page-message p {
    line-height: 1.95;
}

.about-page-message-accent {
    margin-top: 18px;
    font-size: 1.18rem;
    font-weight: 700;
}

.about-page-stats-section .section-intro,
.about-page-services .section-intro,
.about-page-phases .section-intro {
    max-width: 760px;
}

.about-page-card-grid {
    margin-top: 10px;
}

.about-page-card {
    min-height: 100%;
}

.about-page-phase-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.about-page-phase {
    position: relative;
    padding: 34px 30px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 14px 34px rgba(0, 51, 102, 0.06);
}

.about-page-phase-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.about-page-phase h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.about-page-phase p {
    color: var(--text-light);
}

.about-page-cta-box {
    padding: 56px 40px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.97), rgba(0, 123, 255, 0.88));
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.18);
}

.about-page-cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.about-page-cta-box p {
    max-width: 720px;
    margin: 0 auto 28px;
    opacity: 0.92;
}

@media (max-width: 992px) {
    .about-page-panel {
        padding: 40px 30px;
    }

    .about-page-copy-grid,
    .about-page-phase-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-page-hero {
        padding: 130px 0 72px;
    }

    .about-page-lead {
        font-size: 1rem;
    }

    .about-page-story .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .about-page-panel {
        padding: 30px 18px;
        border-radius: 18px;
    }

    .about-page-copy-block,
    .about-page-message,
    .about-page-phase,
    .about-page-cta-box {
        padding: 24px 20px;
    }
}

/* Service Page */
.service-page {
    position: relative;
    overflow: hidden;
}

.service-page-hero {
    position: relative;
    padding: 150px 0 92px;
    background:
        linear-gradient(135deg, rgba(0, 51, 102, 0.97), rgba(0, 123, 255, 0.84)),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 28%);
    color: #fff;
    overflow: hidden;
}

.service-page-hero::before,
.service-page-hero::after,
.service-detail-section::before,
.service-summary-section::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.service-page-hero::before {
    width: 360px;
    height: 360px;
    top: -120px;
    right: -70px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.service-page-hero::after {
    width: 280px;
    height: 280px;
    left: -60px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.service-page-kicker,
.service-detail-kicker,
.service-summary-kicker,
.service-subcard-kicker {
    font-size: 0.88rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.service-page-kicker {
    margin-bottom: 14px;
    opacity: 0.8;
}

.service-page-title {
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: 1.14;
    margin-bottom: 24px;
}

.service-page-lead {
    max-width: 880px;
    margin: 0 auto;
    font-size: 1.16rem;
    line-height: 1.9;
    opacity: 0.94;
}

.service-page-overview {
    position: relative;
    margin-top: -34px;
}

.service-page-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 28px;
    padding: 56px 60px;
    box-shadow: 0 24px 60px rgba(0, 51, 102, 0.1);
    backdrop-filter: blur(10px);
}

.service-page-heading-text {
    max-width: 760px;
    margin: -18px auto 0;
    color: var(--text-light);
    line-height: 1.9;
}

.service-page-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 46px;
}

.service-page-pillar {
    position: relative;
    padding: 32px 30px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(244, 247, 249, 0.92), rgba(255, 255, 255, 1));
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 16px 34px rgba(0, 51, 102, 0.05);
}

.service-page-pillar-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: #fff;
    font-weight: 800;
}

.service-page-pillar h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.service-page-pillar p,
.service-detail-content p,
.service-subcard p,
.service-ai-card-body p,
.service-summary-box p {
    color: var(--text-light);
    line-height: 1.9;
}

.service-detail-section,
.service-summary-section {
    position: relative;
    overflow: hidden;
}

.service-detail-section::before,
.service-summary-section::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.08), rgba(0, 123, 255, 0));
    filter: blur(4px);
}

.service-detail-section::before {
    top: -180px;
    left: -150px;
}

.service-summary-section::before {
    right: -160px;
    bottom: -180px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 54px;
    align-items: center;
}

.service-detail-grid-reverse {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.service-detail-media {
    position: relative;
    padding: 20px 0 54px 20px;
}

.service-detail-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 51, 102, 0.16);
}

.service-detail-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 20, 40, 0.18));
}

.service-detail-image-wrap img {
    display: block;
    width: 100%;
    min-height: 620px;
    object-fit: cover;
}

.service-detail-float-card {
    position: absolute;
    right: -8px;
    bottom: 0;
    max-width: 320px;
    padding: 24px 24px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 18px 40px rgba(0, 51, 102, 0.12);
    backdrop-filter: blur(14px);
}

.service-detail-float-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: var(--primary-color);
}

.service-detail-float-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-detail-float-card-dark {
    background: rgba(0, 51, 102, 0.88);
    border-color: rgba(255, 255, 255, 0.16);
}

.service-detail-float-card-dark strong,
.service-detail-float-card-dark p,
.service-detail-float-card-dark .service-detail-float-label {
    color: #fff;
}

.service-detail-float-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-blue);
    font-weight: 700;
}

.service-detail-title {
    font-size: clamp(2.2rem, 3.2vw, 3.4rem);
    margin: 6px 0 18px;
    color: var(--primary-color);
}

.service-detail-lead {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color) !important;
}

.service-feature-list {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.service-feature-item {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 14px 30px rgba(0, 51, 102, 0.06);
}

.service-feature-icon,
.service-subcard-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: #fff;
}

.service-feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
}

.service-feature-item h3,
.service-subcard h3,
.service-ai-card-body h3,
.service-summary-box h2 {
    color: var(--primary-color);
}

.service-feature-item h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.service-subcards,
.service-ai-grid,
.service-summary-points {
    display: grid;
    gap: 28px;
}

.service-subcards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 58px;
}

.service-subcard,
.service-ai-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(0, 51, 102, 0.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 40px rgba(0, 51, 102, 0.08);
}

.service-subcard {
    padding: 34px 32px;
}

.service-subcard::after,
.service-ai-card::after {
    content: '';
    position: absolute;
    inset: auto -10% -45% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.13), rgba(0, 123, 255, 0));
    pointer-events: none;
}

.service-subcard-head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.service-subcard-icon {
    width: 62px;
    height: 62px;
    font-size: 1.45rem;
}

.service-subcard-kicker {
    margin-bottom: 8px;
    color: var(--accent-blue);
}

.service-subcard h3 {
    font-size: 1.38rem;
    line-height: 1.45;
    margin-bottom: 0;
}

.service-subcard p + p,
.service-summary-box p + p {
    margin-top: 18px;
}

.service-ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 56px;
}

.service-ai-card-visual img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-ai-card-body {
    padding: 28px 28px 32px;
}

.service-ai-card-body h3 {
    margin: 0 0 12px;
    font-size: 1.36rem;
}

.service-summary-box {
    position: relative;
    padding: 60px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.98), rgba(0, 123, 255, 0.88));
    color: #fff;
    box-shadow: 0 24px 60px rgba(0, 51, 102, 0.18);
    overflow: hidden;
}

.service-summary-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 28%);
    pointer-events: none;
}

.service-summary-box > * {
    position: relative;
    z-index: 1;
}

.service-summary-box h2 {
    margin: 10px 0 22px;
    font-size: clamp(2rem, 3.4vw, 3rem);
    color: #fff;
}

.service-summary-box p,
.service-summary-point span,
.service-summary-point strong {
    color: rgba(255, 255, 255, 0.92);
}

.service-summary-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 34px 0 30px;
}

.service-summary-point {
    padding: 24px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.service-summary-point span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-summary-point strong {
    display: block;
    font-size: 1.02rem;
    line-height: 1.7;
}

.service-summary-box .btn-primary {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 10px 26px rgba(0, 20, 40, 0.18);
}

.service-summary-box .btn-primary:hover {
    color: var(--primary-color);
}

@media (max-width: 1100px) {
    .service-detail-grid,
    .service-detail-grid-reverse,
    .service-subcards,
    .service-ai-grid,
    .service-summary-points {
        grid-template-columns: 1fr;
    }

    .service-detail-media {
        padding: 0 0 48px;
    }

    .service-detail-image-wrap img {
        min-height: 420px;
    }

    .service-detail-float-card {
        right: 24px;
        left: 24px;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .service-page-hero {
        padding: 132px 0 74px;
    }

    .service-page-lead {
        font-size: 1rem;
    }

    .service-page-panel,
    .service-summary-box {
        padding: 34px 22px;
        border-radius: 22px;
    }

    .service-page-pillars,
    .service-feature-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-detail-grid {
        gap: 36px;
    }

    .service-detail-image-wrap,
    .service-subcard,
    .service-ai-card,
    .service-feature-item {
        border-radius: 20px;
    }

    .service-detail-image-wrap img {
        min-height: 320px;
    }

    .service-detail-float-card {
        position: relative;
        right: auto;
        left: auto;
        bottom: auto;
        margin: -48px 18px 0;
    }

    .service-subcard,
    .service-ai-card-body,
    .service-feature-item {
        padding: 24px 20px;
    }

    .service-subcard-head,
    .service-feature-item {
        flex-direction: column;
    }
}

/* Recruit Page */
.recruit-page {
    position: relative;
    overflow: hidden;
}

.recruit-page-hero {
    position: relative;
    padding: 150px 0 94px;
    background:
        linear-gradient(135deg, rgba(0, 51, 102, 0.97), rgba(0, 123, 255, 0.86)),
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 28%);
    color: #fff;
    overflow: hidden;
}

.recruit-page-hero::before,
.recruit-page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.recruit-page-hero::before {
    width: 360px;
    height: 360px;
    top: -120px;
    right: -90px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.recruit-page-hero::after {
    width: 280px;
    height: 280px;
    left: -70px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.recruit-page-kicker,
.recruit-page-message-kicker,
.recruit-page-cta-kicker {
    font-size: 0.88rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.recruit-page-kicker {
    margin-bottom: 14px;
    opacity: 0.8;
}

.recruit-page-title {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.14;
    margin-bottom: 24px;
}

.recruit-page-lead {
    max-width: 920px;
    font-size: 1.12rem;
    line-height: 1.95;
    opacity: 0.94;
}

.recruit-page-message-section,
.recruit-page-cta {
    position: relative;
}

.recruit-page-message-panel,
.recruit-page-story,
.recruit-page-value-card,
.recruit-page-outline-panel,
.recruit-page-cta-box {
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 20px 48px rgba(0, 51, 102, 0.08);
}

.recruit-page-message-panel {
    padding: 40px 36px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(244, 247, 249, 0.96), rgba(255, 255, 255, 1));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recruit-page-story {
    margin-top: 28px;
    position: relative;
    padding: 42px 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    overflow: hidden;
}

.recruit-page-story::before {
    content: '';
    position: absolute;
    left: 0;
    top: 32px;
    bottom: 32px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-blue));
}

.recruit-page-message-kicker {
    margin-bottom: 18px;
    color: var(--accent-blue);
}

.recruit-page-message-title {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.08;
    color: var(--primary-color);
}

.recruit-page-story p {
    color: var(--text-light);
    line-height: 1.95;
    font-size: 1.02rem;
}

.recruit-page-story p + p {
    margin-top: 20px;
}

.recruit-page-story p:first-child {
    font-size: 1.08rem;
}

.recruit-page-story-accent {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.08);
    color: var(--primary-color) !important;
    font-size: 1rem;
    font-weight: 700;
}

.recruit-page-values-list {
    display: grid;
    gap: 22px;
}

.recruit-page-value-card {
    position: relative;
    padding: 30px 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
}

.recruit-page-value-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.recruit-page-value-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.recruit-page-value-card p {
    color: var(--text-light);
    line-height: 1.9;
}

.recruit-page-outline-panel {
    padding: 44px 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
}

.recruit-page-outline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.recruit-page-outline-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 24px 24px 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(244, 247, 249, 0.9), rgba(255, 255, 255, 1));
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.recruit-page-outline-label {
    display: inline-flex;
    align-self: start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.08);
    color: var(--accent-blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.recruit-page-outline-value {
    color: var(--primary-color);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.8;
}

.recruit-page-outline-note {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.recruit-page-cta-box {
    padding: 58px 40px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.97), rgba(0, 123, 255, 0.88));
    color: #fff;
    text-align: center;
}

.recruit-page-cta-kicker {
    margin-bottom: 14px;
    opacity: 0.8;
}

.recruit-page-cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 18px;
}

.recruit-page-cta-box p {
    max-width: 760px;
    margin: 0 auto 30px;
    line-height: 1.9;
    opacity: 0.94;
}

@media (max-width: 992px) {
    .recruit-page-outline-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .recruit-page-hero {
        padding: 132px 0 76px;
    }

    .recruit-page-lead {
        font-size: 1rem;
    }

    .recruit-page-message-panel,
    .recruit-page-story,
    .recruit-page-value-card,
    .recruit-page-outline-panel,
    .recruit-page-cta-box {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .recruit-page-story::before {
        top: 22px;
        bottom: 22px;
    }

    .recruit-page-outline-item {
        padding: 22px 20px;
        border-radius: 18px;
    }
}

/* Privacy Policy */
.privacy-page {
    position: relative;
    overflow: hidden;
}

.privacy-page-hero {
    position: relative;
    padding: 150px 0 92px;
    background:
        linear-gradient(135deg, rgba(0, 51, 102, 0.97), rgba(0, 123, 255, 0.84)),
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 28%);
    color: #fff;
    overflow: hidden;
}

.privacy-page-hero::before,
.privacy-page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.privacy-page-hero::before {
    width: 340px;
    height: 340px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.privacy-page-hero::after {
    width: 260px;
    height: 260px;
    left: -70px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.privacy-page-kicker {
    margin-bottom: 14px;
    font-size: 0.88rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
}

.privacy-page-title {
    font-size: clamp(2.7rem, 5vw, 4.4rem);
    line-height: 1.16;
    margin-bottom: 22px;
}

.privacy-page-lead {
    max-width: 880px;
    font-size: 1.08rem;
    line-height: 1.95;
    opacity: 0.94;
}

.privacy-page-section {
    position: relative;
    margin-top: -36px;
}

.privacy-page-panel {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 28px;
    padding: 56px 60px;
    box-shadow: 0 24px 60px rgba(0, 51, 102, 0.1);
}

.privacy-page-content {
    display: grid;
    gap: 28px;
}

.privacy-page-block {
    padding: 28px 30px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(244, 247, 249, 0.92), rgba(255, 255, 255, 1));
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 14px 34px rgba(0, 51, 102, 0.05);
}

.privacy-page-block h2 {
    margin-bottom: 14px;
    font-size: 1.32rem;
    color: var(--primary-color);
}

.privacy-page-block p {
    color: var(--text-light);
    line-height: 1.95;
}

.privacy-page-block p + p {
    margin-top: 14px;
}

.privacy-page-list {
    display: grid;
    gap: 10px;
    color: var(--text-light);
    padding-left: 1.2rem;
    list-style: disc;
}

.privacy-page-list li {
    line-height: 1.9;
}

.privacy-page-contact-list {
    display: grid;
    gap: 16px;
}

.privacy-page-contact-list div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
}

.privacy-page-contact-list div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-page-contact-list dt {
    color: var(--primary-color);
    font-weight: 700;
}

.privacy-page-contact-list dd,
.privacy-page-contact-list a {
    color: var(--text-light);
    line-height: 1.9;
}

.privacy-page-contact-list a:hover {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .privacy-page-hero {
        padding: 132px 0 74px;
    }

    .privacy-page-lead {
        font-size: 1rem;
    }

    .privacy-page-panel {
        padding: 34px 22px;
        border-radius: 22px;
    }

    .privacy-page-block {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .privacy-page-contact-list div {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Case Page */
.case-page {
    position: relative;
    overflow: hidden;
}

.case-page-hero {
    position: relative;
    padding: 150px 0 92px;
    background:
        linear-gradient(135deg, rgba(0, 51, 102, 0.97), rgba(0, 123, 255, 0.84)),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 28%);
    color: #fff;
    overflow: hidden;
}

.case-page-hero::before,
.case-page-hero::after,
.case-page-list-section::before,
.case-page-cta::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.case-page-hero::before {
    width: 360px;
    height: 360px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.case-page-hero::after {
    width: 280px;
    height: 280px;
    left: -70px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.case-page-kicker {
    margin-bottom: 14px;
    font-size: 0.88rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    opacity: 0.8;
}

.case-page-title {
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: 1.14;
    margin-bottom: 24px;
}

.case-page-lead {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1.16rem;
    line-height: 1.9;
    opacity: 0.94;
}

.case-page-overview {
    position: relative;
    margin-top: -34px;
}

.case-page-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 28px;
    padding: 56px 60px;
    box-shadow: 0 24px 60px rgba(0, 51, 102, 0.1);
    backdrop-filter: blur(10px);
}

.case-page-heading-text {
    max-width: 760px;
    margin: -18px auto 0;
    color: var(--text-light);
    line-height: 1.9;
}

.case-page-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
}

.case-page-stat {
    padding: 26px 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(244, 247, 249, 0.92), rgba(255, 255, 255, 1));
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 16px 34px rgba(0, 51, 102, 0.05);
    text-align: center;
}

.case-page-stat-value {
    display: block;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.case-page-stat-label {
    color: var(--text-light);
    line-height: 1.7;
}

.case-page-list-section,
.case-page-cta {
    position: relative;
    overflow: hidden;
}

.case-page-list-section::before,
.case-page-cta::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.08), rgba(0, 123, 255, 0));
}

.case-page-list-section::before {
    top: -180px;
    left: -150px;
}

.case-page-cta::before {
    right: -160px;
    bottom: -180px;
}

.case-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.case-study-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 20px 48px rgba(0, 51, 102, 0.08);
}

.case-study-card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.case-study-card:nth-child(even) .case-study-visual {
    order: 2;
}

.case-study-card:nth-child(even) .case-study-body {
    order: 1;
}

.case-study-card::after {
    content: '';
    position: absolute;
    inset: auto -8% -40% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.12), rgba(0, 123, 255, 0));
    pointer-events: none;
}

.case-study-visual {
    position: relative;
    min-height: 100%;
}

.case-study-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.case-study-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 20, 40, 0.04), rgba(0, 20, 40, 0.32));
}

.case-study-tag {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.case-study-body {
    position: relative;
    padding: 34px 34px 32px;
}

.case-study-body > * {
    position: relative;
    z-index: 1;
}

.case-study-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--accent-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.case-study-body h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
    line-height: 1.45;
    color: var(--primary-color);
}

.case-study-body p {
    color: var(--text-light);
    line-height: 1.9;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.case-study-metric {
    padding: 20px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(244, 247, 249, 0.92), rgba(255, 255, 255, 1));
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.case-study-metric strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.case-study-metric span {
    color: var(--text-light);
    font-size: 0.92rem;
}

.case-page-cta-box {
    padding: 56px 40px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.97), rgba(0, 123, 255, 0.88));
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.18);
}

.case-page-cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.case-page-cta-box p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1100px) {
    .case-page-stats,
    .case-study-card,
    .case-study-card:nth-child(even),
    .case-study-metrics {
        grid-template-columns: 1fr;
    }

    .case-study-card:nth-child(even) .case-study-visual,
    .case-study-card:nth-child(even) .case-study-body {
        order: initial;
    }
}

@media (max-width: 768px) {
    .case-page-hero {
        padding: 132px 0 74px;
    }

    .case-page-lead {
        font-size: 1rem;
    }

    .case-page-panel,
    .case-page-cta-box {
        padding: 34px 22px;
        border-radius: 22px;
    }

    .case-study-card,
    .case-study-body {
        border-radius: 22px;
    }

    .case-study-visual img {
        min-height: 240px;
    }

    .case-study-body {
        padding: 24px 20px 22px;
    }

    .case-study-body h3 {
        font-size: 1.25rem;
    }
}

/* Post Archive / Single */
.post-archive-page,
.single-post-page {
    position: relative;
    overflow: hidden;
}

.post-archive-hero,
.single-post-hero {
    position: relative;
    padding: 150px 0 92px;
    background:
        linear-gradient(135deg, rgba(0, 51, 102, 0.97), rgba(0, 123, 255, 0.84)),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 28%);
    color: #fff;
    overflow: hidden;
}

.post-archive-hero::before,
.post-archive-hero::after,
.post-archive-overview::before,
.single-post-hero::before,
.single-post-hero::after,
.single-post-section::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.post-archive-hero::before,
.single-post-hero::before {
    width: 360px;
    height: 360px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.post-archive-hero::after,
.single-post-hero::after {
    width: 280px;
    height: 280px;
    left: -70px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.post-archive-kicker,
.single-post-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
}

.post-archive-title,
.single-post-title {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.post-archive-lead,
.single-post-lead {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1.14rem;
    line-height: 1.9;
    opacity: 0.94;
}

.post-archive-overview,
.single-post-section {
    position: relative;
    margin-top: -34px;
}

.post-archive-overview::before,
.single-post-section::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.08), rgba(0, 123, 255, 0));
}

.post-archive-overview::before {
    top: 60px;
    left: -150px;
}

.single-post-section::before {
    right: -160px;
    bottom: -180px;
}

.post-archive-panel,
.single-post-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 28px;
    padding: 56px 60px;
    box-shadow: 0 24px 60px rgba(0, 51, 102, 0.1);
}

.post-archive-heading-text {
    max-width: 760px;
    margin: -18px auto 0;
    color: var(--text-light);
    line-height: 1.9;
}

.post-archive-list,
.post-archive-card-grid {
    margin-top: 46px;
}

.post-archive-list {
    display: grid;
    gap: 18px;
}

.post-archive-item {
    position: relative;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(244, 247, 249, 0.92), rgba(255, 255, 255, 1));
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 16px 34px rgba(0, 51, 102, 0.05);
    overflow: hidden;
}

.post-archive-link {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 40px;
    gap: 24px;
    align-items: center;
    padding: 28px 30px;
}

.post-archive-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.post-archive-date,
.single-post-date {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
}

.post-archive-item .post-archive-date,
.post-archive-card .post-archive-date {
    color: var(--text-light);
}

.post-archive-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--accent-blue);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.post-archive-copy h3,
.post-archive-card-body h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--primary-color);
    line-height: 1.5;
}

.post-archive-copy p,
.post-archive-card-body p,
.post-archive-empty p {
    color: var(--text-light);
    line-height: 1.85;
}

.post-archive-arrow,
.post-archive-readmore {
    color: var(--accent-blue);
    font-weight: 700;
}

.post-archive-arrow {
    justify-self: end;
}

.post-archive-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.post-archive-card {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 18px 40px rgba(0, 51, 102, 0.08);
}

.post-archive-card-link {
    display: block;
    height: 100%;
}

.post-archive-card-image,
.post-archive-card-image img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.post-archive-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.96), rgba(0, 123, 255, 0.86));
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.post-archive-card-body {
    padding: 26px 24px 28px;
}

.post-archive-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.post-archive-empty {
    padding: 42px 24px;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(244, 247, 249, 0.92), rgba(255, 255, 255, 1));
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.post-archive-empty h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.post-archive-pagination {
    margin-top: 36px;
}

.post-archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.post-archive-pagination .page-numbers {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    background: #fff;
}

.post-archive-pagination .page-numbers.current,
.post-archive-pagination .page-numbers:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.single-post-hero-meta {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.single-post-hero-meta .single-post-category {
    margin-bottom: 0;
}

.single-post-thumbnail {
    margin-bottom: 34px;
    border-radius: 24px;
    overflow: hidden;
}

.single-post-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

.single-post-content {
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--text-color);
}

.single-post-content h2 {
    margin: 44px 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 123, 255, 0.18);
    color: var(--primary-color);
    font-size: 1.7rem;
}

.single-post-content h3 {
    margin: 34px 0 14px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.single-post-content p,
.single-post-content ul,
.single-post-content ol,
.single-post-content blockquote {
    margin-bottom: 1.6em;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.single-post-content ul,
.single-post-content ol {
    padding-left: 1.4em;
}

.single-post-content ul {
    list-style: disc;
}

.single-post-content ol {
    list-style: decimal;
}

.single-post-content blockquote {
    padding: 18px 20px;
    border-left: 4px solid var(--accent-blue);
    background: rgba(0, 123, 255, 0.06);
    border-radius: 0 16px 16px 0;
}

.single-post-footer {
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 51, 102, 0.08);
    text-align: center;
}

@media (max-width: 992px) {
    .post-archive-card-grid {
        grid-template-columns: 1fr;
    }

    .post-archive-link {
        grid-template-columns: 1fr;
    }

    .post-archive-arrow {
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .post-archive-hero,
    .single-post-hero {
        padding: 132px 0 74px;
    }

    .post-archive-lead,
    .single-post-lead {
        font-size: 1rem;
    }

    .post-archive-panel,
    .single-post-panel {
        padding: 34px 22px;
        border-radius: 22px;
    }

    .post-archive-item,
    .post-archive-card,
    .single-post-thumbnail {
        border-radius: 20px;
    }

    .post-archive-link,
    .post-archive-card-body {
        padding: 22px 20px;
    }
}

@media (max-width: 768px) {
    #services .card-grid,
    #achievements .achievement-list {
        grid-template-columns: 1fr;
    }

    #services .card-grid {
        gap: 18px;
    }

    #achievements .achievement-list {
        gap: 20px;
    }

    #services .service-card,
    #achievements .achievement-item {
        width: 100%;
    }
}

/* Contact Page */
.contact-page {
    position: relative;
    overflow: hidden;
}

.contact-page-hero {
    position: relative;
    padding: 150px 0 90px;
    background:
        linear-gradient(135deg, rgba(0, 51, 102, 0.97), rgba(0, 123, 255, 0.84)),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 28%);
    color: #fff;
    overflow: hidden;
}

.contact-page-hero::before,
.contact-page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-page-hero::before {
    width: 360px;
    height: 360px;
    top: -120px;
    right: -70px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.contact-page-hero::after {
    width: 280px;
    height: 280px;
    left: -60px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.contact-page-kicker,
.contact-page-side-kicker {
    font-size: 0.88rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-page-kicker {
    margin-bottom: 14px;
    opacity: 0.8;
}

.contact-page-title {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 1.14;
    margin-bottom: 24px;
}

.contact-page-lead {
    max-width: 920px;
    font-size: 1.12rem;
    line-height: 1.95;
    opacity: 0.94;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.9fr);
    gap: 30px;
    align-items: start;
}

.contact-page-form-panel,
.contact-page-side-card {
    border-radius: 26px;
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 20px 48px rgba(0, 51, 102, 0.08);
}

.contact-page-form-panel {
    padding: 40px 38px;
    background: linear-gradient(180deg, rgba(244, 247, 249, 0.96), rgba(255, 255, 255, 1));
}

.contact-page-heading {
    margin-bottom: 28px;
}

.contact-page-heading-text {
    margin-top: 14px;
    color: var(--text-light);
    line-height: 1.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form-field label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.94rem;
}

.contact-form-field label span {
    margin-left: 8px;
    font-size: 0.72rem;
    color: #fff;
    background: var(--accent-blue);
    border-radius: 999px;
    padding: 3px 8px;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
    width: 100%;
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 14px;
    background: #fff;
    padding: 15px 16px;
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
    border-color: rgba(0, 123, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    outline: none;
}

.contact-form textarea {
    min-height: 220px;
    resize: vertical;
}

.contact-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-consent input {
    margin-top: 4px;
}

.contact-form-submit {
    width: 100%;
    justify-content: center;
    padding: 18px 28px;
}

.contact-form-message {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    line-height: 1.8;
}

.contact-form-message-success {
    background: rgba(42, 162, 110, 0.12);
    border: 1px solid rgba(42, 162, 110, 0.22);
    color: #136441;
}

.contact-form-message-error {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.16);
    color: #8a2030;
}

.contact-form-error-list {
    margin: 0;
    padding-left: 18px;
}

.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-page-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-side-card {
    padding: 30px 28px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.97), rgba(0, 123, 255, 0.88));
    color: #fff;
}

.contact-page-side-card h2,
.contact-page-side-card h3 {
    margin: 10px 0 14px;
    color: #fff;
}

.contact-page-side-card p {
    line-height: 1.85;
    opacity: 0.94;
}

.contact-page-line-btn {
    margin-top: 18px;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 10px 26px rgba(0, 20, 40, 0.18);
}

.contact-page-line-btn:hover {
    color: var(--primary-color);
}

.contact-page-side-card-light {
    background: #fff;
    color: var(--text-color);
}

.contact-page-side-card-light h3 {
    color: var(--primary-color);
}

.contact-page-side-card-light a {
    color: var(--accent-blue);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page-hero {
        padding: 132px 0 74px;
    }

    .contact-page-lead {
        font-size: 1rem;
    }

    .contact-page-form-panel,
    .contact-page-side-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
