<!DOCTYPE html>

<html lang="ko">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>KoCAM - 한국형 CAM 교육 소프트웨어</title>

    <meta name="description" content="브라우저에서 바로 시작하는 한국어 CAM 교육. 직업계고·마이스터고 전용 솔루션.">

    <meta property="og:title" content="KoCAM - 한국형 CAM 교육 소프트웨어">

    <meta property="og:description" content="설치 없이 시작하는 브라우저 CAM. 16차시 교안 완비.">

    <meta property="og:url" content="https://kocam.cc">

    <link href="https://fonts.googleapis.com/css2?family=Pretendard:wght@400;600;700;900&display=swap" rel="stylesheet">

    <style>

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {

            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;

            line-height: 1.6;

            color: #1a202c;

        }

        header {

            background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);

            color: white;

            padding: 100px 20px 80px;

            text-align: center;

        }

        .logo {

            font-size: 2.5rem;

            font-weight: 900;

            letter-spacing: -1px;

            margin-bottom: 10px;

        }

        .logo span { color: #ff9f43; }

        .tagline {

            font-size: 1.3rem;

            opacity: 0.9;

            margin-bottom: 40px;

        }

        h1 {

            font-size: 2.8rem;

            font-weight: 900;

            line-height: 1.3;

            margin-bottom: 20px;

            letter-spacing: -1px;

        }

        .subtitle {

            font-size: 1.2rem;

            opacity: 0.85;

            max-width: 700px;

            margin: 0 auto 50px;

        }

        .cta-buttons {

            display: flex;

            gap: 15px;

            justify-content: center;

            flex-wrap: wrap;

        }

        .btn {

            padding: 16px 36px;

            border-radius: 50px;

            text-decoration: none;

            font-weight: 700;

            font-size: 1.05rem;

            transition: all 0.3s;

            display: inline-block;

        }

        .btn-primary {

            background: #ff9f43;

            color: #1a365d;

        }

        .btn-primary:hover {

            background: #ffb562;

            transform: translateY(-2px);

        }

        .btn-secondary {

            background: transparent;

            color: white;

            border: 2px solid rgba(255,255,255,0.5);

        }

        .btn-secondary:hover {

            background: rgba(255,255,255,0.1);

        }

        .features {

            padding: 100px 20px;

            max-width: 1200px;

            margin: 0 auto;

        }

        .section-title {

            text-align: center;

            font-size: 2.2rem;

            font-weight: 900;

            margin-bottom: 15px;

            color: #1a365d;

        }

        .section-sub {

            text-align: center;

            color: #718096;

            font-size: 1.1rem;

            margin-bottom: 60px;

        }

        .feature-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

            gap: 30px;

        }

        .feature-card {

            padding: 35px 30px;

            background: #f7fafc;

            border-radius: 16px;

            transition: transform 0.3s;

        }

        .feature-card:hover { transform: translateY(-5px); }

        .feature-icon { font-size: 2.5rem; margin-bottom: 20px; }

        .feature-title {

            font-size: 1.3rem;

            font-weight: 700;

            margin-bottom: 12px;

            color: #1a365d;

        }

        .feature-desc { color: #4a5568; }

        .target {

            background: #f7fafc;

            padding: 100px 20px;

        }

        .target-container {

            max-width: 1000px;

            margin: 0 auto;

        }

        .target-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

            gap: 25px;

            margin-top: 40px;

        }

        .target-item {

            padding: 30px;

            background: white;

            border-radius: 12px;

            border-left: 4px solid #ff9f43;

        }

        .target-item h3 {

            margin-bottom: 10px;

            color: #1a365d;

        }

        .cta-section {

            background: #1a365d;

            color: white;

            padding: 80px 20px;

            text-align: center;

        }

        .cta-section h2 {

            font-size: 2rem;

            font-weight: 900;

            margin-bottom: 20px;

        }

        .cta-section > p {

            font-size: 1.1rem;

            opacity: 0.9;

            margin-bottom: 30px;

        }

        .contact-form {

            max-width: 500px;

            margin: 0 auto;

            background: white;

            padding: 40px;

            border-radius: 16px;

            color: #1a365d;

            text-align: left;

        }

        .form-group { margin-bottom: 20px; }

        .form-group label {

            display: block;

            font-weight: 600;

            margin-bottom: 8px;

        }

        .form-group input, .form-group textarea {

            width: 100%;

            padding: 12px 16px;

            border: 2px solid #e2e8f0;

            border-radius: 8px;

            font-size: 1rem;

            font-family: inherit;

        }

        .form-group input:focus, .form-group textarea:focus {

            outline: none;

            border-color: #2c5282;

        }

        .form-btn {

            width: 100%;

            padding: 16px;

            background: #ff9f43;

            color: #1a365d;

            border: none;

            border-radius: 8px;

            font-size: 1.1rem;

            font-weight: 700;

            cursor: pointer;

            transition: background 0.2s;

        }

        .form-btn:hover { background: #ffb562; }

        footer {

            background: #0d1b2a;

            color: #a0aec0;

            padding: 40px 20px;

            text-align: center;

            font-size: 0.9rem;

        }

        footer a { color: #cbd5e0; text-decoration: none; }

        @media (max-width: 768px) {

            h1 { font-size: 2rem; }

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

            header { padding: 60px 20px 50px; }

        }

    </style>

</head>

<body>

    <header>

        <div class="logo">Ko<span>CAM</span></div>

        <div class="tagline">한국형 CAM 교육 소프트웨어</div>

        <h1>설치 없이 시작하는<br>브라우저 CAM 교육</h1>

        <p class="subtitle">

            복잡한 외산 소프트웨어 대신, 한국 교육 현장에 맞춘 직관적인 CAM을 만나보세요.<br>

            직업계고 · 마이스터고 · 메이커스페이스 전용 솔루션

        </p>

        <div class="cta-buttons">

            <a href="#demo" class="btn btn-primary">📋 무료 데모 신청</a>

            <a href="#features" class="btn btn-secondary">🎯 기능 둘러보기</a>

        </div>

    </header>

    <section class="features" id="features">

        <h2 class="section-title">왜 KoCAM인가요?</h2>

        <p class="section-sub">현장 교사들의 목소리를 담은 한국형 CAM 솔루션</p>

        <div class="feature-grid">

            <div class="feature-card">

                <div class="feature-icon">🌐</div>

                <div class="feature-title">설치 불필요</div>

                <div class="feature-desc">브라우저에서 바로 실행. 학교 PC 관리 부담 제로. 크롬만 있으면 OK.</div>

            </div>

            <div class="feature-card">

                <div class="feature-icon">🇰🇷</div>

                <div class="feature-title">완전 한국어</div>

                <div class="feature-desc">메뉴부터 튜토리얼까지 100% 한국어. 학생들이 이해하기 쉬운 용어.</div>

            </div>

            <div class="feature-card">

                <div class="feature-icon">📚</div>

                <div class="feature-title">16차시 교안 제공</div>

                <div class="feature-desc">Word 문서 + PPT 슬라이드 완비. 교사가 바로 수업에 투입 가능.</div>

            </div>

            <div class="feature-card">

                <div class="feature-icon">⚡</div>

                <div class="feature-title">GRBL/CNC 연동</div>

                <div class="feature-desc">Web Serial API로 CH340 드라이버 없이 CNC/레이저 기기 직접 제어.</div>

            </div>

            <div class="feature-card">

                <div class="feature-icon">🎨</div>

                <div class="feature-title">3D 조각 지원</div>

                <div class="feature-desc">사진 → 2.5D 부조 변환, STL 모델 자동 툴패스 생성.</div>

            </div>

            <div class="feature-card">

                <div class="feature-icon">💰</div>

                <div class="feature-title">합리적 가격</div>

                <div class="feature-desc">교실당 연 39만원. Mastercam의 1/10 가격으로 더 쉬운 수업.</div>

            </div>

        </div>

    </section>

    <section class="target">

        <div class="target-container">

            <h2 class="section-title">이런 기관에 적합합니다</h2>

            <p class="section-sub">전국 직업계고 · 마이스터고 · 메이커스페이스</p>

            <div class="target-grid">

                <div class="target-item">

                    <h3>🏫 직업계고</h3>

                    <p>기계과 · 금형과 · 자동화과 CAM 실습 수업에 최적화</p>

                </div>

                <div class="target-item">

                    <h3>🎓 마이스터고</h3>

                    <p>현장 중심 스마트제조 교육 커리큘럼 완벽 지원</p>

                </div>

                <div class="target-item">

                    <h3>🛠 메이커스페이스</h3>

                    <p>청소년 창의 제작 교육 프로그램 운영</p>

                </div>

                <div class="target-item">

                    <h3>📖 평생교육원</h3>

                    <p>성인 재교육 · 직업훈련 프로그램에 활용</p>

                </div>

            </div>

        </div>

    </section>

    <section class="cta-section" id="demo">

        <h2>무료 데모를 신청하세요</h2>

        <p>교사/담당자 대상 1:1 온라인 시연을 진행해드립니다</p>

        <form class="contact-form" id="demoForm">

            <div class="form-group">

                <label>학교/기관명 *</label>

                <input type="text" name="school" required placeholder="예: 서울직업학교">

            </div>

            <div class="form-group">

                <label>담당자 성함 *</label>

                <input type="text" name="name" required placeholder="예: 홍길동 교사">

            </div>

            <div class="form-group">

                <label>이메일 *</label>

                <input type="email" name="email" required placeholder="example@school.hs.kr">

            </div>

            <div class="form-group">

                <label>연락처</label>

                <input type="tel" name="phone" placeholder="010-0000-0000">

            </div>

            <div class="form-group">

                <label>문의 내용</label>

                <textarea name="message" rows="4" placeholder="관심 있는 기능이나 도입 계획을 알려주세요"></textarea>

            </div>

            <button type="submit" class="form-btn">데모 신청하기</button>

        </form>

    </section>

    <footer>

        <p>© 2026 포유테크 KoCAM. All rights reserved.</p>

        <p style="margin-top: 10px;">

            인천광역시 계양구 |

            문의: <a href="mailto:contact@kocam.cc">contact@kocam.cc</a>

        </p>

        <p style="margin-top: 15px; font-size: 0.85rem;">

            포유테크 패밀리:

            <a href="https://3d4u.cc">3D4U</a>

        </p>

    </footer>

    <script>

        document.getElementById('demoForm').addEventListener('submit', function(e) {

            e.preventDefault();

            alert('데모 신청 감사합니다!\n영업일 기준 24시간 이내 연락드리겠습니다.');

        });

    </script>

</body>

</html>