* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e40af;
    --primary-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --dark-navy: #0f172a;
    --medium-navy: #1e293b;
    --light-navy: #334155;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
}

/* Hero Section */
.hero {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
    
    background: linear-gradient(135deg, #1e40af 0%, #191600 50%, #001a70 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 4px 25px #bcbcbc;
    border-radius: 15px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.0rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 20px #ffad3f;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.5;
    color: white;
}

/* Hero 버튼 컨테이너 */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* 기본 버튼 스타일 */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

/* 주요 버튼 (지도형 홈페이지 만들기) */
.hero-btn-primary {
    background: linear-gradient(135deg, #552e00 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 153, 140, 0.4);
    border: none;
    height: 50px;
    width: 250px;
    margin-left: 10px;
}

.hero-btn-primary::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;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.hero-btn-primary:active {
    transform: translateY(-1px);
}


/* 주요 버튼 (지도형 홈페이지 만들기) */
.hero-btn-primary2 {
    background: linear-gradient(135deg, #165400 0%, #10b981 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 153, 140, 0.4);
    border: none;
    height: 50px;
    width: 250px;
    margin-left: 10px;
}

.hero-btn-primary2::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;
}

.hero-btn-primary2:hover::before {
    left: 100%;
}

.hero-btn-primary2:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 255, 106, 0.5);
}

.hero-btn-primary2:active {
    transform: translateY(-1px);
}


/* 버튼 아이콘 추가 (선택사항) */
.hero-btn::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover::after {
    transform: translateX(5px);
}

/* Service Cards Grid */
.yesmap-main {
    padding: 2.5rem 2rem;
    background: var(--medium-navy);
    margin-top: -8px;
    align-items: center;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #30a8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #fff8b8;
}

.services-grid {
    display: grid;

    gap: 1.5rem;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1400px;
    margin: 0 auto;


}

.service-card {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--medium-navy) 100%);
    border-radius: 16px;
    padding: 1rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    /* 세로 정렬 */
    justify-content: space-between;
    /* 위-아래 여백 균등 */
    height: 100%;
    /* 높이 균등하게 맞추기 */
}

/* 카드 박스 */
.service-card2 {
    background: linear-gradient(135deg, rgba(79, 79, 219, 0.57) 0%, rgba(12, 0, 74, 0.72) 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.service-icon {
    font-size: 3rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
}

.service-card .btn {
    display: inline-block;
    padding: 0.28rem 3rem;
    background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    margin-top: auto;
}

.service-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

/* ===========================
   🌐 yesmap 회사소개 섹션 스타일
   파일명: yesmap-info.css
   =========================== */

.company-info {
    background: #0b1120;
    color: #d1d5db;
    padding: 4rem 2rem;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

.company-info .container {
    max-width: 1200px;
    margin: 0 auto;
}

.company-info .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: center;
}

.company-info h2 {
    font-size: 2.2rem;
    color: #b493ff;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.company-info p {
    font-size: 1.4em;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 27px;
}

.company-info p strong {
    color: #fff;
}

.info-visual {
    background: linear-gradient(135deg, #4f5764, #111827);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 80px 5px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.info-visual h3 {
    font-size: 6rem;
    margin-bottom: 20px;
    color: #60a5fa;
}

.vision-quote {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    color: transparent;
    background: linear-gradient(90deg, #60a5fa, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
}

.vision-quote br {
    display: block;
    margin-bottom: 6px;
}

/* ==========================================
   About Page Specific Styles
   ========================================== */

/* Page Header */
.page-header {
    padding: 1.3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
    background: linear-gradient(135deg, #01c8c1 0%, #00424d 80%);
    box-shadow: 0 4px 25px #bcbcbc;
    border-radius: 15px;

}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header-use::before {
    background: linear-gradient(135deg, #ffb67f 0%, #6f2f06 80%);
}

.page-header h1 {
    font-size: 3.0rem;
    margin-bottom: 0.97rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header h4 {
    font-size: 3.0rem;
    margin-bottom: 0.97rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.5;
    color: #07ffa1;
}

.about-text {
    color: #e2e8f0;
    text-align: center;
    /* 텍스트 중앙정렬 */
    margin: 0 auto;
    /* ✅ 블록 자체도 가운데 정렬 */
    max-width: 1200px;
    /* 중앙 기준으로 고정 폭 */
    padding: 0 20px;
    /* 여백 확보 */
    flex-direction: column;
    align-items: center;
    /* ✅ 내부 블록 중앙 */
}

.about-text h2 {
    font-size: 2.5rem;
    margin-top: -10px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.about-text p {
    color: #94a3b8;
    font-size: 1.0rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.about-text strong {
    color: #10b981;
    font-weight: 600;
}

/* Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

/* Content Sections */
.content-section {
    background: var(--medium-navy);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-left: 4px solid #10b981;
    padding: 1.7rem;
    margin: 2rem auto;
    border-radius: 10px;
    margin-bottom: 5px;
    margin-top: -30px;
    max-width: 1200px;
    align-content: center;
    height: auto;
}

.highlight-box2 {
    height: auto;
}

.highlight-box3 {
    height: auto;
}

.highlight-box h3 {
    margin-top: 15px;
    color: #10b981;
    font-size: 2.1rem;
}

.highlight-box p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.value-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #94a3b8;
    font-size: 1rem;
}

/* Tech Specs */
.tech-specs {
    background: var(--light-navy);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    margin-bottom: 50px;
    max-width: 1200px;
}

.tech-specs h4 {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.tech-specs table {
    width: 100%;
    border-collapse: collapse;
}

.tech-specs tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-specs tr:last-child {
    border-bottom: none;
}

.tech-specs td {
    padding: 1rem;
    color: #94a3b8;
}

.tech-specs td:first-child {
    color: white;
    font-weight: 600;
    width: 35%;
}

/* Tech Comparison */
.tech-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem auto;
    text-align: left;
}

.comparison-card {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--medium-navy) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.old {
    border-left: 4px solid #ef4444;
}

.comparison-card.new {
    border-left: 4px solid #10b981;
}

.comparison-card h3 {
    color: white;
    margin-bottom: 1rem;
    margin-left: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.7rem;
    left: 10px;
}

.comparison-card ul {
    list-style: none;
    padding-left: 20px;
}

.comparison-card li {
    color: #94a3b8;
    padding: 0.5rem 0;
    padding-left: 2.7rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-card.old li::before {
    content: '❌';
    position: absolute;
    left: 10px;
}

.comparison-card.new li::before {
    content: '✅';
    position: absolute;
    left: 10px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 0.2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card h3 {
    color: white;
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.feature-card li {
    color: #ddbb9a;
    padding: 0.2rem 0;
    font-size: 0.95rem;
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem auto;
    gap: 1rem;
    flex-wrap: wrap;

}

.process-step {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
    flex: 1;
    min-width: 150px;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.6);
}

.process-step .number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.process-step .title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step .desc {
    color: #94a3b8;
    font-size: 0.9rem;
}

.process-flow .arrow {
    color: #10b981;
    font-size: 2rem;
    flex-shrink: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Use Case List */
.use-case-list {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 2;
    margin-top: 1rem;
    padding-left: 2rem;
    list-style: none;
}

.use-case-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.use-case-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1.2rem;
}

.use-case-list strong {
    color: white;
}


/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: #10b981;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.code-example {
    background: var(--dark-navy);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.code-example code {
    color: #10b981;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 활용사례==================================== */

.feature-list {
    margin-top: -2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    height: auto;
    gap: 1rem;
}

.feature-item {
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #f59e0b;
}

.feature-item h3 {
    color: #f59e0b;
    font-size: 1.4rem;
    margin-bottom: 0.1rem;
}

.feature-item p {
    color: #e5f5e5;
    font-size: 1.0rem;
    margin-bottom: 5px;
}


.integration-section {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 15px;
    padding: 1.3rem;
    margin: 0.5rem 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.integration-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.integration-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;

}

.integration-card {
    background: var(--light-navy);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-card h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.integration-card ul {
    list-style: none;
    padding-left: 0;
}

.integration-card li {
    color: #94a3b8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.integration-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f59e0b;
}

/*============yesmap concept======================*/
/* ===============================
   YESMAP SERVICE CONCEPT SECTION
   =============================== */
.service-concept {
    background: var(--medium-navy);
    padding: 4rem 2rem;
    text-align: center;
}

.service-concept strong {
    color: aqua;
    font-weight: 400;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ✅ 카드 구조를 flex 세로배치로 변경 */
.concept-card {
    flex: 1 1 calc(25% - 1.5rem);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.25), rgba(15, 23, 42, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1rem 0.5rem;
    text-align: center;
    display: flex;
    /* ← 세로 플렉스 */
    flex-direction: column;
    /* ← 세로 방향 정렬 */
    justify-content: space-between;
    /* ← 상단 콘텐츠와 하단 버튼 사이 간격 자동 조절 */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.concept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.25);
}

.concept-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.concept-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.concept-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.concept-card ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.concept-card li {
    text-align: left;
    color: #9fcfff;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    position: relative;
}

.concept-card li::before {
    content: "✔";
    color: #38bdf8;
    margin-right: 6px;
}

.concept-card .option {
    text-align: left;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 1.0rem;
    margin-left: 0.3rem;
}

/* ✅ 버튼을 카드 하단으로 배치 */
.concept-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: auto;
    /* ← 자동으로 남은 공간을 채워 하단으로 이동 */
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;

}

/* ✅ 버튼 스타일 동일 유지 */
.concept-buttons a {
    display: inline-block;
    padding: 0.3rem 1.3rem;
    width: 100%;
        text-align: center;
    font-size: 1.0rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}


.btn-detail {
    background: linear-gradient(135deg, #3aa932, #005539);
    color: #fff;
    box-shadow: 0 3px 8px rgba(23, 108, 20, 0.35);
}

.btn-detail:hover {
    background: linear-gradient(135deg, #005539, #3aa932);
    transform: translateY(-2px);
}

.btn-inquiry {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #e0e7ff;
}

.btn-inquiry:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: #fff;
}

/* ✅ 요금 카드 컨테이너 */
.price-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0.4rem;
    flex-wrap: wrap;

}

/* ✅ 개별 가격 박스 */
.price-box {
    flex: 1 1 calc(33.333% - 0.8rem);
    background: rgba(213, 84, 84, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;

    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-box:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.25);
}

/* ✅ 제목, 설명, 가격 */
.price-box h4 {
    color: #bcd5ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price-box p {
    color: #cbd5e1;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;

}

.price-box .price {
    font-weight: 500;
    color: #e1ff05;
    font-size: 0.85rem;
    margin-top: auto;
    /* ← 자동으로 남은 공간을 채워 하단으로 이동 */
}



/* 색상별 테마 */
.concept-card.blue {
    border-top: 4px solid #3b82f6;
}

.concept-card.yellow {
    border-top: 4px solid #facc15;
}

.concept-card.green {
    border-top: 4px solid #10b981;
}

.concept-card.purple {
    border-top: 4px solid #a855f7;
}

/* ✅ 모바일 반응형 */
@media (max-width: 768px) {
    .concept-grid {
        gap: 0.95rem;
    }

    .concept-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .concept-buttons a {
        width: 100%;
        text-align: center;
    }

    .concept-card {
        text-align: left;
        padding: 1.0rem;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }


    .company-info .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 3rem;
        text-align: center;
    }

    .info-visual {
        padding: 40px 30px;
    }

    .vision-quote {
        font-size: 1.15rem;
    }

    .company-info h2 {
        font-size: 2.0rem;
    }

    .company-info p {
        font-size: 1.1rem;
    }

    .info-text p {
        font-size: 0.9rem;
    }



    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 1.2rem;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    /* 기본 버튼 스타일 */
    .hero {
        margin-top: 10px;
        padding: 1.3rem 2rem;
        height: 380px;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        font-weight: 400;

    }
    
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    /* 주요 버튼 (지도형 홈페이지 만들기) */
    .hero-btn-primary {
        height: 30px;
        width: 200px;
    }

    /* 주요 버튼 (지도형 홈페이지 만들기) */
    .hero-btn-primary2 {
        height: 30px;
        width: 200px;
        margin-bottom: -100px;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }



    .page-header {
        padding: 3rem 1.4rem;

    }

    .page-header h1 {
        font-size: 2rem;

    }

    .page-header h4 {
        font-size: 1.7rem;
        margin-bottom: 0.4rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }



    .content-section {
        padding: 2rem 1.5rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    .tech-comparison {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-flow .arrow {
        transform: rotate(90deg);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-specs td:first-child {
        width: 40%;
        font-size: 0.9rem;
    }

    .tech-specs td {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .highlight-box h3 {
        margin-top: 15px;
        color: #10b981;
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.97rem;
        color: white;
        position: relative;
        z-index: 1;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .about-text {
        margin-left: -60px;
        /* 여백 확보 */
        margin-right: -60px;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .cta-box p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }


    .price-box {
        flex: 1 1;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 10px;
        margin-bottom: 15px;
        padding: 1.3rem 0.4rem;
        height: 330px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-concept {
        background: var(--medium-navy);
        padding: 1.1rem 0.7rem;
        text-align: center;
    }

    .service-concept strong {
        color: aqua;
        font-weight: 400;
    }

    .concept-grid {
        grid-template-columns: 1fr;
    }

    .concept-card {
        text-align: center;
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .yesmap-main {
        padding: 0.5rem;
    }

    
    .services-grid {
        gap: 0.7rem;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        padding: 12px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .service-card p {
        line-height: 1.5;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
        font-size: 0.85rem;
    }

    .service-card .btn {
        padding: 0.2rem 1.2rem;

        font-size: 0.8rem;
        font-weight: 600;

        margin-bottom: 0.5rem;
    }

    .service-card {
        font-size: 1.1rem;
        padding: 0.5rem;

    }
    
.concept-buttons a {
    padding: 0.1rem 1.3rem;
    font-size: 0.9rem;

}
    
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .company-info .info-grid {
        grid-template-columns: 1fr;
        gap: -10rem;
    }
    .hero-btn-primary {
        margin-top: -40px;
        margin-bottom: -5px;
    }
    

}