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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', '游ゴシック体', 'Yu Gothic', 'YuGothic', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Inter font for headings and numbers */
h1, h2, h3, h4, h5, h6,
.service-number,
.service-number-large,
.step-number,
.history-year,
.news-date,
.media-date,
.info-label,
.ceo-info h3 {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

/* Color Variables */
:root {
    --primary-navy: #0a1128;
    --primary-cyan: #1e3a8a;
    --primary-purple: #b24bf3;
    --primary-50: #e6f7ff;
    --primary-100: #bae7ff;
    --primary-200: #91d5ff;
    --primary-300: #69c0ff;
    --primary-400: #40a9ff;
    --primary-500: #1e3a8a;
    --primary-600: #0a1128;
    --primary-700: #061023;
    --primary-800: #030814;
    --primary-900: #010306;
    --accent-purple: #b24bf3;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-700: #374151;
    --gray-900: #0f172a;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

#navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

#navbar.scrolled .logo {
    color: var(--primary-600);
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-image {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

#navbar.scrolled .nav-links a {
    color: var(--gray-700);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

#navbar.scrolled .hamburger span {
    background: var(--primary-600);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--gray-700);
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1.1rem;
    }

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

    .nav-container {
        padding: 0 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #061023 50%, #030814 100%);
    color: white;
    text-align: center;
    padding: 0 1.5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #e5e7eb;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-purple) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(178, 75, 243, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: white;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Sections */
.section {
    padding: 4rem 1.5rem;
}

.section-gray {
    background: #fafbfc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.title-underline {
    width: 4rem;
    height: 3px;
    background: var(--primary-cyan);
    margin: 0 0 2.5rem 0;
}

/* About Section */
.about-hero-image {
    width: 100%;
    margin-bottom: 4rem;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-mission {
    background: transparent;
    padding: 0 0 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.about-mission h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.about-mission p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-mission p:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
}

.about-card.full-width {
    grid-column: 1 / -1;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-left: 3px solid var(--primary-cyan);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.about-card:hover {
    border-left-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
}

.about-card h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-card p {
    color: var(--primary-navy);
    font-size: 1.125rem;
    font-weight: 500;
}

.about-card ul {
    list-style: none;
    color: var(--primary-navy);
}

.about-card ul li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.about-card ul li:before {
    content: "— ";
    color: var(--primary-cyan);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Mission Section */
.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem 0;
}

.mission-statement {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.mission-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(30, 58, 138, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(178, 75, 243, 0.5);
    box-shadow: 0 16px 48px rgba(178, 75, 243, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.service-card:hover .service-number {
    color: var(--accent-purple);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    line-height: 1;
}

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.service-card:hover .service-image {
    opacity: 1;
    transform: scale(1.02);
}

.service-logo {
    object-fit: contain;
    background: transparent;
    padding: 1rem;
    opacity: 1;
}

.service-card:hover .service-logo {
    opacity: 1;
    transform: scale(1.02);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
    line-height: 1.4;
}

.service-card p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--primary-navy);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-features li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
}

.service-view-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.service-view-more:hover {
    color: var(--accent-purple);
    transform: translateX(4px);
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: transparent;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.partner-card:hover {
    border-bottom-color: var(--primary-cyan);
}

.partner-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.partner-card p {
    color: var(--gray-700);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.partner-card .partner-detail {
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.partners-note {
    text-align: center;
}

.partners-note p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Contact Section */
.contact-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* HubSpot Form Container */
#contact-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.hs-form-frame {
    background: transparent;
    padding: 3rem 0;
    border-top: 2px solid var(--primary-cyan);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(0, 111, 230, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: var(--primary-cyan);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    background: var(--accent-purple);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.success-message {
    background: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--gray-700);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer p {
    font-size: 0.875rem;
}

/* Fade Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

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

.fade-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Service Cards Animation */
.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Article Cards Animation */
.article-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover {
    transform: translateY(-6px);
}

/* News Items Animation */
.news-item {
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(8px);
    background: var(--gray-50);
    padding-left: 1.5rem;
    margin-left: -0.5rem;
    border-radius: 8px;
}

/* Tablet Responsive (iPad) */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-nav-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .service-nav-title {
        font-size: 0.75rem;
    }

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

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .mission-statement {
        font-size: 1.75rem;
    }

    .ai-training-image,
    .ai-72h-image {
        max-width: 100%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        min-height: 100vh;
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .title-underline {
        margin: 0 auto 2rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .mission-statement {
        font-size: 1.5rem;
    }

    .mission-description {
        font-size: 1rem;
    }

    .services-grid,
    .partners-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-image {
        height: 200px;
    }

    .service-nav-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .service-nav-button {
        padding: 0.5rem 0.75rem;
    }

    .service-nav-number {
        font-size: 0.875rem;
    }

    .service-nav-title {
        font-size: 0.75rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .about-mission,
    .contact-form {
        padding: 2rem 0;
    }

    .about-hero-image img {
        height: 250px;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .news-preview {
        gap: 1.5rem;
    }

    .news-item {
        padding: 1.25rem 0;
    }

    .article-card h3 {
        font-size: 1rem;
    }

    .ai-training-image,
    .ai-72h-image {
        max-width: 100%;
    }

    .product-screenshot {
        max-width: 90%;
    }

    .page-header {
        padding: 8rem 1rem 3rem;
    }

    .page-header-title {
        font-size: 2rem;
    }

    .service-navigation {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.9375rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .mission-statement {
        font-size: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: 0.9375rem;
    }

    .service-nav-buttons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .service-nav-button {
        padding: 0.75rem 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .news-title {
        font-size: 1.125rem;
    }

    .article-title {
        font-size: 0.9375rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .page-header {
        padding: 7rem 1rem 2rem;
    }

    .page-header-title {
        font-size: 1.75rem;
    }

    .service-navigation {
        padding: 1rem;
    }

    .product-content h3 {
        font-size: 1.5rem;
    }

    .product-content p,
    .product-content ul li {
        font-size: 0.9375rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 8rem 1.5rem 4rem;
    min-height: 100vh;
    background: var(--gray-50);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, var(--primary-cyan), var(--accent-purple)) 1;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.15);
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
    line-height: 1.8;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-cyan);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-cyan);
}

.legal-section p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section ul li::marker {
    color: var(--primary-cyan);
}

.contact-info {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.legal-date {
    text-align: right;
    color: var(--gray-700);
    font-size: 0.875rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.legal-content a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 1rem 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }
}

/* Page Header Styles */
.page-header {
    padding: 10rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0d1129 100%);
    color: white;
    text-align: center;
}

/* Service Navigation */
.service-navigation {
    background: white;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.service-nav-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-nav-button {
    background: white;
    border: 2px solid var(--primary-cyan);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
}

.service-nav-button:hover {
    background: var(--primary-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.service-nav-button:hover .service-nav-number,
.service-nav-button:hover .service-nav-title,
.service-nav-button:hover .service-nav-icon {
    color: white;
}

.service-nav-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-nav-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-cyan);
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.service-nav-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-navy);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.service-nav-icon {
    font-size: 1rem;
    color: var(--primary-cyan);
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .service-nav-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

.page-header-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-cyan);
    font-weight: 500;
}

/* CEO Message Styles */
.ceo-message {
    max-width: 900px;
    margin: 2rem auto 0;
}

.ceo-profile {
    text-align: center;
}

.ceo-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-cyan);
}

.ceo-info h3 {
    font-size: 0.875rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.ceo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.ceo-name-en {
    font-size: 1rem;
    color: var(--gray-700);
}

.ceo-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--gray-700);
}

/* History Timeline */
.history-timeline {
    border-left: 2px solid var(--primary-cyan);
    padding-left: 2rem;
}

.history-item {
    margin-bottom: 3rem;
    position: relative;
}

.history-item:before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-cyan);
    border-radius: 50%;
}

.history-year {
    font-size: 0.875rem;
    color: var(--primary-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.history-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.history-content p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* Company Info Layout */
.company-info-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
    margin: 2rem 0;
}

.company-info-logo {
    text-align: center;
    padding: 2rem;
}

.company-logo-main {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.company-info-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-info-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-label {
    font-size: 0.875rem;
    color: var(--primary-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.125rem;
    color: var(--primary-navy);
    font-weight: 500;
    line-height: 1.8;
}

.info-value ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-value ul li {
    margin-bottom: 0.5rem;
}

.info-value ul li:before {
    content: "— ";
    color: var(--primary-cyan);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Service Detail Pages */
.service-detail {
    max-width: 1000px;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-cyan);
    opacity: 0.3;
    line-height: 1;
}

.service-detail h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.service-lead {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 3rem;
}

/* Product Screenshots - Modern Layout */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.product-showcase.reverse {
    direction: rtl;
}

.product-showcase.reverse > * {
    direction: ltr;
}

.product-image-container {
    text-align: center;
}

.product-screenshot {
    max-width: 65%;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ai-training-image {
    max-width: 130%;
}

.ai-72h-image {
    max-width: 130%;
    object-fit: contain;
}

.product-content {
    max-width: 100%;
}

.product-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.product-content p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.product-content ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.product-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
}

.service-subtitle {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-cyan);
}

.service-programs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.program-card {
    background: transparent;
    padding: 1.5rem 0;
    border-left: 3px solid var(--primary-cyan);
    padding-left: 1.5rem;
}

.program-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.program-card p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.program-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-card ul li {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.program-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-cyan);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 2px solid var(--primary-cyan);
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

/* News List */
.news-list, .news-preview {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.news-preview .news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 0.875rem;
    color: var(--primary-cyan);
    font-weight: 600;
    display: inline-block;
    margin-right: 1rem;
}

.news-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

.cat-press {
    background: #e6f1ff;
    color: var(--primary-600);
}

.cat-business {
    background: #f0e6ff;
    color: var(--accent-purple);
}

.cat-service {
    background: #e6fffa;
    color: #00a896;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.news-title a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--primary-cyan);
}

.news-excerpt {
    color: var(--gray-700);
    line-height: 1.8;
}

/* Media List */
.media-intro {
    text-align: center;
    color: var(--gray-700);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.media-list, .media-preview {
    max-width: 900px;
    margin: 0 auto;
}

.media-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.media-preview .media-item {
    border-bottom: none;
}

.media-date {
    font-size: 0.875rem;
    color: var(--primary-cyan);
    font-weight: 600;
}

.media-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.media-source {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.media-description {
    color: var(--gray-700);
    line-height: 1.8;
}

/* Article Grid & Cards */
.article-list-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.article-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-date {
    font-size: 0.875rem;
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.article-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-media-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-700);
}

.no-media-message p {
    margin-bottom: 0.5rem;
}

/* View More Link */
.view-more-container {
    text-align: center;
    margin-top: 2rem;
}

.view-more-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--primary-navy);
    text-decoration: none;
    border: 2px solid var(--primary-cyan);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.view-more-link:hover {
    background: var(--primary-cyan);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

/* Access Page */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.access-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.info-block {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.info-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-block h3 {
    font-size: 0.875rem;
    color: var(--primary-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.info-block p {
    font-size: 1rem;
    color: var(--primary-navy);
    line-height: 1.8;
}

.access-routes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.access-routes li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.access-map {
    border-left: 3px solid var(--primary-cyan);
    padding-left: 2rem;
}

.building-info {
    background: var(--gray-50);
    padding: 2rem;
    margin-top: 2rem;
}

.building-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.building-info p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.building-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 2rem;
}

.building-info ul li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.building-info ul li:before {
    content: "•";
    color: var(--primary-cyan);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 3rem;
}

.page-current {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--primary-cyan);
    color: white;
    border-radius: 50%;
    font-weight: 600;
}


/* Responsive for new pages */
@media (max-width: 768px) {
    .page-header {
        padding: 8rem 1rem 3rem;
    }

    .page-header-title {
        font-size: 2rem;
    }

    .ceo-message {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-programs,
    .feature-grid,
    .process-timeline,
    .company-info-grid,
    .company-info-layout,
    .access-grid,
    .product-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .company-info-logo {
        padding: 1rem;
    }

    .company-info-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .article-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-showcase.reverse {
        direction: ltr;
    }

    .media-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .building-info ul {
        column-count: 1;
    }
}
