/* リセットCSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--agtech-text-primary, #1a1a1a);
            background: var(--agtech-bg-primary, #ffffff);
            overflow-x: hidden;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        /* コンテナ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ヘッダー - Clean White Glass */
        header {
            background: var(--agtech-light-bg-glass, rgba(255, 255, 255, 0.95));
            backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: var(--agtech-border-light, 1px solid rgba(0, 0, 0, 0.08));
            box-shadow: var(--agtech-shadow-light, 0 2px 8px rgba(0, 0, 0, 0.08));
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            
            /* Clean Glass Text - No Haze */
            color: transparent;
            background: linear-gradient(135deg, 
                #00FF88 0%, 
                #00AAFF 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            
            /* No effects - crystal clear */
        }

        .logo:hover {
            transform: translateY(-1px) scale(1.02);
        }

        /* アイコンシステム - 洗練されたデザイン */
        .agtech-icon {
            width: 60%;
            height: 60%;
            stroke: currentColor;
            fill: none;
            color: white;
            transform-origin: center;
            margin: auto;
        }
        
        .service-icon .agtech-icon,
        .feature-icon .agtech-icon {
            stroke-width: 1.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .service-card:hover .agtech-icon {
            transform: scale(1.08);
            stroke-width: 1.4;
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
        }

        /* アイコンコンテナの調整 */
        .service-icon {
            background: linear-gradient(135deg, #00FF88, #00AAFF);
            box-shadow: 0 4px 16px rgba(0, 255, 136, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card:hover .service-icon {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
        }

        /* レスポンシブ アイコン調整 */
        @media (max-width: 768px) {
            .service-icon {
                width: 50px;
                height: 50px;
                border-radius: 12px;
                box-shadow: 0 3px 12px rgba(0, 255, 136, 0.18);
            }

            .agtech-icon {
                width: 70%;
                height: 70%;
            }
        }

        /* アクセシビリティ対応 */
        @media (prefers-reduced-motion: reduce) {
            .agtech-icon {
                transition: none;
            }

            .service-card:hover .agtech-icon {
                transform: none;
            }
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--agtech-text-secondary, #666);
            font-weight: 500;
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            letter-spacing: -0.01em;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--agtech-neon-green-500, #00FF88);
            background: var(--agtech-surface-100, rgba(0, 255, 136, 0.08));
            transform: translateY(-1px);
        }
        
        .nav-links a:hover {
            color: var(--agtech-neon-green-500, #00FF88);
            background: var(--agtech-surface-100, rgba(0, 255, 136, 0.08));
            transform: translateY(-1px);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--agtech-text-primary, #1a1a1a);
            margin: 3px 0;
        }

        /* サービスヘッダー */
        .services-header {
            padding: 8rem 0 4rem;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 170, 255, 0.05) 100%);
            text-align: center;
        }

        .services-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--agtech-text-primary, #1a1a1a);
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            letter-spacing: -0.02em;
        }

        .services-header p {
            font-size: 1.2rem;
            color: var(--agtech-text-secondary, #666);
            max-width: 600px;
            margin: 0 auto;
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            letter-spacing: -0.005em;
        }

        /* サービスセクション - Clean Light Mode */
        .services {
            padding: 5rem 0;
            background: var(--agtech-bg-secondary, #fafafa);
            position: relative;
            z-index: 10;
            border-top: var(--agtech-border-light, 1px solid rgba(0, 0, 0, 0.08));
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--agtech-text-primary, #1a1a1a);
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            font-weight: 700;
            letter-spacing: -0.015em;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-grid .loading {
            opacity: 0;
            transform: translateY(40px) scale(0.9);
        }
        
        .service-grid .loaded {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .service-card {
            background: var(--agtech-bg-elevated, #ffffff);
            border: var(--agtech-border-light, 1px solid rgba(0, 0, 0, 0.08));
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--agtech-shadow-light);
            text-align: center;
            color: var(--agtech-text-primary, #1a1a1a);
        }

        .service-card:hover {
            transform: translateY(-8px);
            background: var(--agtech-surface-100, #ffffff);
            border-color: var(--agtech-neon-green-500, #00FF88);
            box-shadow: var(--agtech-shadow-strong), var(--agtech-shadow-accent);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00FF88, #00AAFF);
            border-radius: 15px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--agtech-text-primary, #1a1a1a);
            font-weight: 600;
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            letter-spacing: -0.01em;
        }

        .service-card p {
            color: var(--agtech-text-secondary, #555);
            margin-bottom: 1rem;
            line-height: 1.6;
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            font-weight: 400;
            letter-spacing: -0.005em;
        }

        .service-link {
            color: var(--agtech-neon-green-500, #00FF88);
            text-decoration: none;
            font-weight: 600;
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            letter-spacing: -0.005em;
        }

        .service-link:hover {
            color: var(--agtech-neon-green-600, #00AA66);
        }

        /* 詳細情報セクション */
        .service-details {
            padding: 5rem 0;
            background: var(--agtech-bg-primary, #ffffff);
        }

        .detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .detail-card {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 170, 255, 0.05) 100%);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 136, 0.1);
        }

        .detail-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--agtech-text-primary, #1a1a1a);
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .detail-list {
            list-style: none;
            padding: 0;
        }

        .detail-list li {
            padding: 0.5rem 0;
            color: var(--agtech-text-secondary, #555);
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            letter-spacing: -0.005em;
        }

        .detail-list li::before {
            content: "✓";
            color: var(--agtech-neon-green-500, #00FF88);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* CTA セクション */
        .cta-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 170, 255, 0.1) 100%);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--agtech-text-primary, #1a1a1a);
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            font-weight: 700;
            letter-spacing: -0.015em;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--agtech-text-secondary, #555);
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            letter-spacing: -0.005em;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            letter-spacing: -0.005em;
            text-decoration: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #00FF88, #00AAFF);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
        }

        /* フッター */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            color: #f5f5f5;
            padding: 3rem 0 1.5rem;
            position: relative;
            z-index: 10;
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            font-weight: 400;
            letter-spacing: -0.005em;
            overflow: hidden;
        }

        footer::before {
            content: 'AGUTEKU';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(12rem, 20vw, 28rem);
            font-weight: 800;
            font-family: 'Impact', 'Franklin Gothic Bold', 'Arial Black', sans-serif;
            color: rgba(0, 255, 136, 0.025);
            pointer-events: none;
            z-index: 1;
            letter-spacing: 0.2rem;
            text-shadow: 0 0 40px rgba(0, 255, 136, 0.08);
            filter: blur(1px);
            white-space: nowrap;
            line-height: 1;
        }


        footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                /* テクノロジー風のグリッド */
                linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.01) 50%, transparent 100%),
                linear-gradient(0deg, transparent 0%, rgba(0, 170, 255, 0.008) 50%, transparent 100%),
                /* ドットパターン */
                radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.02) 1px, transparent 2px),
                radial-gradient(circle at 80% 70%, rgba(0, 170, 255, 0.015) 1px, transparent 2px),
                radial-gradient(circle at 40% 80%, rgba(0, 255, 136, 0.01) 1px, transparent 2px),
                /* 六角形パターン */
                conic-gradient(from 0deg at 25% 25%, transparent 60deg, rgba(0, 255, 136, 0.005) 120deg, transparent 180deg),
                conic-gradient(from 60deg at 75% 75%, transparent 60deg, rgba(0, 170, 255, 0.003) 120deg, transparent 180deg);
            background-size: 
                200px 100px, 100px 200px,
                50px 50px, 60px 60px, 40px 40px,
                100px 100px, 120px 120px;
            background-position: 
                0% 0%, 0% 0%,
                0% 0%, 50% 50%, 25% 75%,
                0% 0%, 50% 50%;
            pointer-events: none;
            z-index: 0;
        }



        footer::after {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, #00FF88 50%, transparent 100%);
            opacity: 0.6;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1.5fr 1.8fr;
            gap: 2rem;
            margin-bottom: 1.5rem;
            max-width: 750px;
            justify-content: start;
            position: relative;
            z-index: 3;
        }

        .footer-section h3 {
            color: #fff;
            font-size: 1rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .footer-section p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 0.8rem;
            font-weight: 200;
            font-size: 0.9rem;
        }

        .footer-nav {
            list-style: none;
            padding: 0;
        }

        .footer-nav li {
            margin-bottom: 0.8rem;
        }

        .footer-nav a {
            color: #ccc;
            text-decoration: none;
            font-weight: 200;
            font-size: 0.9rem;
            display: inline-block;
        }

        .footer-nav a:hover {
            color: #fff;
            transform: translateX(5px);
            position: relative;
            z-index: 10;
        }

        .footer-nav a.current-page {
            color: #00FF88;
            font-weight: 300;
        }

        .footer-nav a.current-page:hover {
            color: #00FF88;
            transform: translateX(3px);
        }

        .service-item {
            color: #999;
            font-weight: 200;
            font-size: 0.9rem;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 1rem;
            text-align: center;
            color: #999;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            margin: 0;
        }

        /* レスポンシブデザイン */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .services-header h1 {
                font-size: 2.5rem;
            }

            .services h2 {
                font-size: 2rem;
            }

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

            .detail-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 15px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .services-header h1 {
                font-size: 2rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .detail-card {
                padding: 1.5rem;
            }
        }

        /* ローディングアニメーション */
        .loading {
            opacity: 0;
            transform: translateY(30px);
        }

        .loaded {
            opacity: 1;
            transform: translateY(0);
        }