/* ==========================================================================
   GEO 페이지 v2 — geo-page.css
   URL: /services/geo/
   디자인 토큰: style.css :root 정의값 사용 (하드코딩 최소화)
   패딩: global section { padding: var(--section-padding-y) } 상속
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. 공통 유틸리티 — main.css 표준 스펙 동일
   -------------------------------------------------------------------------- */

.geo-page .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* main.css clamp(1.5rem, 3vw, 2rem) 동일 스펙 */
.geo-page .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin-bottom: 0.75rem;
}

.geo-page .section-title em {
    color: var(--interactive-primary);
    font-style: normal;
}

/* signals · faq · work-areas em 강조색 파란색 */
.geo-signals    .section-title em,
.geo-faq        .section-title em,
.geo-work-areas .section-title em {
    color: #2563EB;
}

.geo-page .section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   1. 섹션 1 — 히어로 (hero hero--dark 표준 패턴 사용)
   -------------------------------------------------------------------------- */

.geo-hero {
    overflow: hidden;
}

.geo-hero__bg-accent {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 51, 0.18) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.geo-hero .container {
    position: relative;
    z-index: 2;
}

.geo-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.geo-hero__label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--interactive-primary);
    color: #FFFFFF;
    border-radius: 6px;
    font-weight: 700;
    font-style: italic;
    font-size: 15px;
}

/* --------------------------------------------------------------------------
   2. 섹션 2 — 검색 환경의 변화 (LANDSCAPE)
   -------------------------------------------------------------------------- */

.geo-landscape {
    background: var(--surface-raised);
}

.geo-landscape .service-card {
    background: var(--surface-base);
    border: none;
    padding-bottom: 40px;
}

.evolution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.evolution-card {
    background: var(--surface-raised);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* SEO — 파란색 */
.evolution-card--seo {
    border-color: #2563EB;
}

/* AEO — 주황색 */
.evolution-card--aeo {
    border-color: #FF5733;
}

/* GEO — #FF1F5C */
.evolution-card--now {
    background: var(--surface-dark);
    border-color: #FF1F5C;
    color: var(--text-on-dark);
}

.evolution-card__step {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.evolution-card--seo .evolution-card__step  { color: #2563EB; }
.evolution-card--aeo .evolution-card__step  { color: #FF5733; }
.evolution-card--now .evolution-card__step  { color: #FF1F5C; }

/* SEO / AEO / GEO 대형 표시 텍스트 */
.evolution-card__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.evolution-card--now .evolution-card__title {
    color: var(--text-on-dark);
}

.evolution-card__category {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.evolution-card--seo .evolution-card__category { color: #2563EB; }
.evolution-card--aeo .evolution-card__category { color: #FF5733; }
.evolution-card--now .evolution-card__category { color: #FF1F5C; }

.evolution-card__list {
    list-style: none;
    padding: 20px 0 0;
    border-top: 1px solid var(--border-subtle);
    margin: 0;
}

.evolution-card--seo .evolution-card__list  { border-top-color: rgba(37, 99, 235, 0.2); }
.evolution-card--aeo .evolution-card__list  { border-top-color: rgba(255, 87, 51, 0.2); }
.evolution-card--now .evolution-card__list  { border-top-color: rgba(255, 255, 255, 0.1); }

.evolution-card__list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 6px 0;
}

.evolution-card--now .evolution-card__list li {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .evolution-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* --------------------------------------------------------------------------
   3. 섹션 3 — GEO 컨설팅이 필요한 신호
   -------------------------------------------------------------------------- */

.geo-signals {
    background: var(--surface-base);
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.signal-card {
    background: var(--surface-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.signal-card:hover {
    border-color: #2563EB;
    transform: translateY(-2px);
}

.signal-card__question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .signals-grid { grid-template-columns: 1fr; gap: 14px; }
    .signal-card { padding: 28px 24px; }
}

/* --------------------------------------------------------------------------
   4. 섹션 4 — SEO vs GEO 비교
   -------------------------------------------------------------------------- */

.geo-vs-seo {
    background: var(--surface-dark);
}

.geo-vs-seo .section-title {
    color: var(--text-on-dark);
}

.geo-vs-seo .section-title em {
    color: var(--text-on-dark);
}

.geo-vs-seo .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* 카드 공통 — 흰색 배경 + 상단 색상 바만 (좌우·하단 테두리 없음) */
.vs-card {
    background: var(--surface-raised);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    border: none;
}

.vs-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* SEO 카드 — 파란색 */
.vs-card--seo::before { background: #2563EB; }

/* GEO 카드 — 다홍색 */
.vs-card--geo::before { background: #FF1F5C; }

/* 카드 제목+부제 한 줄 배치 */
.vs-card__heading {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.vs-card__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.vs-card--seo .vs-card__title { color: #2563EB; }
.vs-card--geo .vs-card__title { color: #FF1F5C; }

.vs-card__sub {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.vs-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* CSS 그리드로 라벨 + 내용 정렬 */
.vs-card__list li {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 6px;
    align-items: baseline;
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    line-height: 1.5;
}

.vs-card__list li:last-child {
    border-bottom: none;
}

.vs-card__list strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .vs-grid { grid-template-columns: 1fr; }
    .vs-card { padding: 28px 24px; }
}

/* ─── 섹션 4 — Search Landscape 2박스 시각화 ─── */

.vs-landscape {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 56px;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.vs-landscape__window {
    background: #F6F9FC;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-width: 0;
    width: 100%;
}

.vs-landscape__window--seo {
    border: 2px solid #2563EB;
    box-shadow: 0 0 24px rgba(37, 99, 235, 0.2);
}

.vs-landscape__window--ai {
    border: 2px solid #FF1F5C;
    box-shadow: 0 0 24px rgba(255, 31, 92, 0.2);
}

.vs-landscape__browser-bar {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border-bottom: 1px solid #D8E2EE;
}

.vs-landscape__dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.vs-landscape__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.vs-landscape__dot--red    { background: #ff5f57; }
.vs-landscape__dot--yellow { background: #febc2e; }
.vs-landscape__dot--green  { background: #28c840; }

.vs-landscape__bar-label {
    font-size: 15px;
    font-weight: 600;
    color: #8A96A8;
    letter-spacing: 0.04em;
}

.vs-landscape__content {
    padding: 16px;
    overflow: hidden;
    word-break: break-word;
}

.vs-landscape__search {
    margin-bottom: 16px;
}

.vs-landscape__input-mock {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    height: 36px;
    background: #FFFFFF;
    border: 1px solid #D0D7E5;
    border-radius: 8px;
    color: #1A2236;
    padding: 0 12px;
    font-size: 17px;
    font-family: inherit;
    cursor: text;
    overflow: hidden;
    white-space: nowrap;
    user-select: text;
}

.vs-landscape__cursor {
    display: inline-block;
    width: 1px;
    height: 1.1em;
    background: #1A2236;
    vertical-align: middle;
    margin-left: 1px;
    animation: vs-cursor-blink 1s step-end infinite;
}

@keyframes vs-cursor-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.vs-landscape__result {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid transparent;
}

.vs-landscape__result--featured {
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(37, 99, 235, 0.06);
}

.vs-landscape__domain {
    color: #8A96A8;
    font-size: 15px;
    margin-bottom: 4px;
}

.vs-landscape__title {
    font-size: 18px;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 4px;
    line-height: 1.4;
}

.vs-landscape__desc {
    color: #4A5568;
    font-size: 16px;
    line-height: 1.55;
}

.vs-landscape__badge {
    display: inline-block;
    background: #2563EB;
    color: #FFFFFF;
    padding: 2px 9px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-top: 7px;
}

.vs-landscape__ai-label {
    position: absolute;
    top: 10px;
    right: 14px;
    color: #FF1F5C;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 2;
}

.vs-landscape__answer-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.vs-landscape__ai-icon {
    width: 22px;
    height: 22px;
    background: #FF1F5C;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.vs-landscape__ai-title {
    font-size: 17px;
    font-weight: 600;
    color: #1A2236;
}

.vs-landscape__answer-text {
    color: #4A5568;
    line-height: 1.75;
    font-size: 17px;
}

.vs-landscape__answer-text span {
    background: rgba(255, 31, 92, 0.12);
    padding: 1px 6px;
    border-radius: 4px;
    color: #FF1F5C;
    font-weight: 700;
}

.vs-landscape__tags {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.vs-landscape__tag {
    border: 1px solid #D0D7E5;
    color: #4A5568;
    border-radius: 14px;
    padding: 5px 11px;
    font-size: 14px;
}

.vs-landscape__tag--active {
    border-color: rgba(255, 31, 92, 0.5);
    color: #FF1F5C;
    font-weight: 600;
}

/* 태블릿: 창 1열 세로 배치 */
@media (max-width: 1024px) {
    .vs-landscape {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 640px;
    }
}

/* 모바일 768px */
@media (max-width: 768px) {
    .vs-landscape { margin-bottom: 40px; max-width: 100%; }
    .vs-landscape__window { border-radius: 10px; }
    .vs-landscape__browser-bar { height: 36px; padding: 0 12px; gap: 8px; }
    .vs-landscape__dot { width: 8px; height: 8px; }
    .vs-landscape__bar-label { font-size: 12px; }
    .vs-landscape__content { padding: 12px; }
    .vs-landscape__search { margin-bottom: 12px; }
    .vs-landscape__input-mock { height: 32px; font-size: 14px; padding: 0 10px; }
    .vs-landscape__result { padding: 10px; margin-bottom: 6px; }
    .vs-landscape__domain { font-size: 12px; }
    .vs-landscape__title { font-size: 15px; }
    .vs-landscape__desc { font-size: 13px; }
    .vs-landscape__badge { font-size: 11px; padding: 2px 7px; }
    .vs-landscape__ai-label { font-size: 12px; top: 8px; right: 10px; }
    .vs-landscape__ai-icon { width: 20px; height: 20px; font-size: 12px; }
    .vs-landscape__ai-title { font-size: 14px; }
    .vs-landscape__answer-text { font-size: 13px; }
    .vs-landscape__tag { font-size: 12px; padding: 4px 9px; }
}

/* 소형 모바일 480px */
@media (max-width: 480px) {
    .vs-landscape__content { padding: 10px; }
    .vs-landscape__input-mock { font-size: 13px; }
    .vs-landscape__title { font-size: 14px; }
    .vs-landscape__desc { font-size: 12px; }
    .vs-landscape__answer-text { font-size: 12px; }
    .vs-landscape__answer-header { gap: 6px; }
}

/* --------------------------------------------------------------------------
   5. 섹션 5 — GEO 핵심 작업 영역 4박스
   -------------------------------------------------------------------------- */

.geo-work-areas {
    background: var(--surface-raised);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.work-card {
    background: var(--surface-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.work-card:hover {
    border-color: #2563EB;
    background: var(--surface-raised);
    transform: translateY(-2px);
}

.work-card__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.work-card__badge {
    width: 36px;
    height: 36px;
    background: #2563EB;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: 0;
}

.work-card__english {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.4;
    word-break: keep-all;
}

.work-card__korean {
    font-size: 1.125rem;
    color: #2563EB;
    font-weight: 700;
}

.work-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.work-card__list li {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    padding: 5px 0;
    padding-left: 14px;
    position: relative;
    line-height: 1.55;
}

.work-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: 700;
}

.work-card__list li {
    padding-left: 22px;
}

@media (max-width: 768px) {
    .work-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .work-card { padding: 28px 24px; }
}

/* --------------------------------------------------------------------------
   6. 섹션 6 — SEO·AEO·GEO Integrated Framework
   -------------------------------------------------------------------------- */

.geo-framework {
    background: var(--surface-base);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}

.framework-card {
    background: var(--surface-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.framework-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.framework-card--seo::before { background: #2563EB; }
.framework-card--aeo::before { background: #FF5733; }
.framework-card--geo::before { background: #FF1F5C; }

.framework-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.framework-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.framework-card__head > i {
    font-size: 26px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.framework-card--seo .framework-card__head > i { color: #2563EB; background: rgba(37, 99, 235, 0.08); }
.framework-card--aeo .framework-card__head > i { color: #FF5733; background: rgba(255, 87, 51, 0.08); }
.framework-card--geo .framework-card__head > i { color: #FF1F5C; background: rgba(255, 31, 92, 0.08); }

.framework-card__label {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 3px;
    line-height: 1.1;
}

.framework-card--seo .framework-card__label { color: #2563EB; }
.framework-card--aeo .framework-card__label { color: #FF5733; }
.framework-card--geo .framework-card__label { color: #FF1F5C; }

.framework-card__english {
    font-size: 12px;
    color: var(--text-secondary);
}

.framework-card__statement {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.framework-card__list {
    list-style: none;
    padding: 16px 0 0;
    border-top: 1px solid var(--border-subtle);
    margin: 0;
}

.framework-card__list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.framework-card__list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: 700;
}

.framework-closing {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.375rem);
    line-height: 1.55;
    color: var(--text-primary);
    max-width: 720px;
    margin: 0 auto;
    font-weight: 500;
}

.framework-closing strong {
    color: #2563EB;
    font-weight: 700;
}

@media (max-width: 768px) {
    .framework-grid { grid-template-columns: 1fr; }
    .framework-card { padding: 32px 24px; }
}

/* --------------------------------------------------------------------------
   7. 섹션 7 — 16주 6단계 GEO 컨설팅
   services/about 의 process-full-section 다크 패턴과 동일
   -------------------------------------------------------------------------- */

.geo-process {
    background: var(--surface-dark);
    color: var(--text-on-dark);
}

/* 다크 배경 위 섹션 타이틀 — .geo-page .section-title 오버라이드 */
.geo-process .section-title  { color: var(--text-on-dark); }
.geo-process .section-title em { color: var(--interactive-primary); }
.geo-process .section-subtitle { color: rgba(255, 255, 255, 0.72); }

/* 3열×2행 그리드 (서비스 6열 1행과 달리 GEO 설명 길어 3열 유지)
   row-gap: 2.5rem → 부유 배지 top:-20px 가 윗 열 카드와 겹치지 않도록 확보 */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 2.5rem;
    margin-top: 2rem;
}

/* 라이트 카드 on 다크 섹션 배경 */
.geo-process .process-step {
    background: var(--surface-base);
}

@media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr; row-gap: 2rem; }
}

/* --------------------------------------------------------------------------
   8. 섹션 8 — GEO 컨설팅사 검증 5대 기준
   -------------------------------------------------------------------------- */

.geo-verify {
    background: var(--surface-raised);
}

.geo-verify .section-title em {
    color: #2563EB;
}

.verify-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.verify-card {
    background: var(--surface-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.verify-card:hover {
    border-color: #2563EB;
    transform: translateY(-2px);
}

.verify-card__number {
    width: 36px;
    height: 36px;
    background: #2563EB;
    color: var(--text-on-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    margin: 0 auto 14px;
}

.verify-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.45;
}

.verify-card__desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 1024px) {
    .verify-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .verify-grid { grid-template-columns: 1fr; gap: 12px; }
    .verify-card { padding: 24px 20px; }
}

/* --------------------------------------------------------------------------
   9. 섹션 9 — 무료 진단 CTA
   -------------------------------------------------------------------------- */

.geo-cta {
    background: var(--surface-dark);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.geo-cta__bg-accent {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 51, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.geo-cta .container {
    position: relative;
    z-index: 2;
}

.geo-cta__inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.geo-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-on-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.geo-cta__title em {
    color: var(--interactive-primary);
    font-style: normal;
}

.geo-cta__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.geo-cta__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .geo-cta__buttons { flex-direction: column; align-items: center; }
    .geo-cta__buttons a { width: 100%; max-width: 320px; text-align: center; }
}

/* --------------------------------------------------------------------------
   10. 섹션 10 — 자주 묻는 질문
   -------------------------------------------------------------------------- */

.geo-faq {
    background: var(--surface-raised);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto 40px;
}

.faq-item {
    background: var(--surface-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open],
.faq-item:hover {
    border-color: var(--interactive-primary);
}

.faq-item__question {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.45;
    transition: color 0.2s;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item[open] .faq-item__question {
    color: var(--interactive-primary);
    border-bottom: 1px solid var(--surface-base);
}

.faq-item__number {
    font-size: 11px;
    font-weight: 800;
    color: var(--interactive-primary);
    background: rgba(255, 87, 51, 0.08);
    padding: 3px 9px;
    border-radius: 10px;
    flex-shrink: 0;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.faq-item__category {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--surface-base);
    padding: 3px 9px;
    border-radius: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.faq-item__text {
    flex: 1;
}

.faq-item__answer {
    padding: 20px 24px 24px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.faq-item__answer p {
    margin-bottom: 12px;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

.faq-link {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.faq-link a {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--interactive-primary);
    text-decoration: none;
    border: 1.5px solid rgba(255, 87, 51, 0.3);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    transition: background 0.2s, border-color 0.2s;
}

.faq-link a:hover {
    background: rgba(255, 87, 51, 0.05);
    border-color: var(--interactive-primary);
}

/* --------------------------------------------------------------------------
   11. 신규 섹션 — AI 답변 인용 5가지 공통 조건
   -------------------------------------------------------------------------- */

.geo-conditions {
    background: var(--surface-base);
}

.geo-conditions .section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #2563EB;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.geo-conditions .section-title em {
    color: #2563EB;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.condition-card {
    background: var(--surface-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
}

.condition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #2563EB;
}

.condition-card--featured {
    background: var(--surface-raised);
    border: 2px solid #2563EB;
}

.condition-card--featured:hover {
    border-color: #2563EB;
}

.condition-card__num {
    font-size: 28px;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.condition-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.condition-card__desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .conditions-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .conditions-grid { grid-template-columns: 1fr; gap: 12px; }
    .condition-card { padding: 24px 20px; }
}

/* --------------------------------------------------------------------------
   반응형 보완
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
    .geo-page .section-header { margin-bottom: 1.75rem; }
    .faq-item__question { flex-wrap: wrap; }
    .faq-item__number,
    .faq-item__category { font-size: 10px; }
}

/* --------------------------------------------------------------------------
   Landscape 섹션 — service-card 스타일 (SEO · AEO step 컬러)
   -------------------------------------------------------------------------- */

/* Landscape 카드 statement 문구 (framework-card__statement 동일 스펙) */
.landscape-card__statement {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text-primary);
    margin-bottom: 20px;
    margin-top: 4px;
}

.service-card--landscape-seo .landscape-step { color: #2563EB; }
.service-card--landscape-aeo .landscape-step { color: #FF5733; }
.service-card--geo            .landscape-step { color: #FF1F5C; }

/* SEO step — 파란색 (상단 색상선만, 좌우·하단 테두리 없음) */
.service-card--landscape-seo                               { border: none; }
.service-card--landscape-seo::before                       { background: #2563EB; }
.service-card--landscape-seo:hover                         { border: none; }
.service-card--landscape-seo .svc-check                    { color: #2563EB; }
.service-card--landscape-seo .service-card-head i          { color: #2563EB; background: rgba(37,99,235,0.08); width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.service-card--landscape-seo .svc-subheading               { color: #2563EB; }
.service-card--landscape-seo .service-card-head            { align-items: flex-start; }

/* AEO step — 주황색 (상단 색상선만, 좌우·하단 테두리 없음) */
.service-card--landscape-aeo                               { border: none; }
.service-card--landscape-aeo::before                       { background: #FF5733; }
.service-card--landscape-aeo:hover                         { border: none; }
.service-card--landscape-aeo .svc-check                    { color: #FF5733; }
.service-card--landscape-aeo .service-card-head i          { color: #FF5733; background: rgba(255,87,51,0.08); width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.service-card--landscape-aeo .svc-subheading               { color: #FF5733; }
.service-card--landscape-aeo .service-card-head            { align-items: flex-start; }

/* GEO step — 다홍색 */
.service-card--geo .service-card-head i                    { color: #FF1F5C; background: rgba(255,31,92,0.08); width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
