
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0 !important; padding: 0 !important; }
:root { --carrd-padding: 0 !important; }

:root {
--navy: #0f2342;
--teal: #0d9488;
--teal-light: #14b8a6;
--teal-pale: #f0fdfa;
--teal-border: #99f6e4;
--white: #ffffff;
--gray-50: #f8fafc;
--gray-100: #f1f5f9;
--gray-200: #e2e8f0;
--gray-400: #94a3b8;
--gray-500: #64748b;
--gray-600: #475569;
--gray-800: #1e293b;
--gold: #b8972a;
--gold-pale: #fdf8ec;
--gold-border: #e9d49a;
--font: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { margin: 0 !important; padding: 0 !important; }
body {
font-family: var(--font);
color: var(--gray-800);
background: var(--white);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
word-break: keep-all;
margin: 0 !important;
padding: 0 !important;
}

/* ── HERO ── */
.hero {
background: #ffffff;
padding: 80px 24px 72px;
text-align: center;
border-bottom: 1px solid var(--gray-200);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -80px; left: 50%;
transform: translateX(-50%);
width: 600px; height: 400px;
background: radial-gradient(ellipse, rgba(13,148,136,0.12) 0%, transparent 70%);
pointer-events: none;
}
.hero-badge {
display: inline-block;
background: var(--teal-pale);
border: 1px solid var(--teal-border);
color: var(--teal);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 6px 16px;
border-radius: 100px;
margin-bottom: 28px;
}
.hero h1 {
font-size: clamp(28px, 5vw, 48px);
font-weight: 800;
line-height: 1.2;
margin-bottom: 20px;
letter-spacing: -0.03em;
color: var(--navy);
}
.hero h1 em {
font-style: normal;
color: var(--teal);
}
.hero-sub {
font-size: clamp(14px, 2vw, 17px);
color: var(--gray-500);
font-weight: 400;
margin-bottom: 12px;
line-height: 1.75;
}
.hero-career {
display: inline-flex;
align-items: center;
font-size: 13px;
color: var(--teal);
font-weight: 600;
margin-bottom: 40px;
background: var(--white);
padding: 8px 18px;
border-radius: 6px;
border: 1px solid var(--teal-border);
box-shadow: 0 1px 4px rgba(13,148,136,0.1);
}
.hero-btns {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}
.btn-primary {
background: var(--teal);
color: var(--white);
font-family: var(--font);
font-size: 15px;
font-weight: 600;
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
display: inline-block;
transition: background 0.2s, transform 0.15s;
box-shadow: 0 2px 12px rgba(13,148,136,0.25);
}
.btn-primary:hover { background: #0f766e; transform: translateY(-1px); }
.btn-outline {
background: var(--white);
color: var(--navy);
font-family: var(--font);
font-size: 15px;
font-weight: 500;
padding: 13px 32px;
border-radius: 8px;
border: 1px solid var(--gray-200);
text-decoration: none;
display: inline-block;
transition: border-color 0.2s, box-shadow 0.2s;
box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.btn-outline:hover { border-color: var(--teal); box-shadow: 0 2px 8px rgba(13,148,136,0.12); }

/* ── STATS ── */
.stats {
background: var(--navy);
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background-color: rgba(255,255,255,0.08);
}
.stat-item {
background: var(--navy);
padding: 32px 20px;
text-align: center;
}
.stat-num {
font-size: clamp(24px, 4vw, 36px);
font-weight: 800;
color: var(--teal-light);
line-height: 1;
margin-bottom: 8px;
letter-spacing: -0.02em;
}
.stat-label {
font-size: 12px;
color: rgba(255,255,255,0.5);
font-weight: 300;
line-height: 1.6;
}

/* ── JOURNEY (서비스 흐름) ── */
.journey-wrap {
background: var(--teal-pale);
padding: 56px 24px 48px;
text-align: center;
border-top: 1px solid var(--teal-border);
border-bottom: 1px solid var(--teal-border);
}
.journey-label {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 10px;
}
.journey-title {
font-size: clamp(18px, 3vw, 24px);
font-weight: 700;
color: var(--navy);
margin-bottom: 36px;
letter-spacing: -0.02em;
}
.journey-steps {
display: flex;
align-items: flex-start;
justify-content: center;
flex-wrap: wrap;
gap: 0;
max-width: 860px;
margin: 0 auto;
}
.journey-step {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
min-width: 110px;
width: 110px;
}
.journey-step-badge {
background: var(--white);
border: 1.5px solid var(--teal);
border-radius: 100px;
padding: 4px 12px;
font-size: 10px;
font-weight: 700;
color: var(--teal);
letter-spacing: 0.08em;
text-transform: uppercase;
box-shadow: 0 1px 4px rgba(13,148,136,0.12);
height: 26px;
display: flex;
align-items: center;
justify-content: center;
}
.journey-step-name {
font-size: 13px;
font-weight: 600;
color: var(--navy);
text-align: center;
line-height: 1.4;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
}
.journey-arrow {
font-size: 18px;
color: var(--teal-border);
padding: 0 4px;
margin-top: 4px;
flex-shrink: 0;
line-height: 26px;
}

/* ── SERVICE CARDS ── */
.service-wrap {
padding: 72px 24px;
max-width: 860px;
margin: 0 auto;
background: var(--white);
}
.section-label {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 10px;
}
.section-title {
font-size: clamp(22px, 3.5vw, 30px);
font-weight: 700;
line-height: 1.3;
color: var(--navy);
margin-bottom: 40px;
letter-spacing: -0.025em;
}
.service-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}

/* 입구 카드 - 강조 */
.service-card-entry {
border: 2px solid var(--teal);
border-radius: 12px;
padding: 28px 24px;
background: var(--teal-pale);
text-decoration: none;
color: inherit;
display: block;
position: relative;
grid-column: 1 / -1;
transition: box-shadow 0.2s, transform 0.15s;
}
.service-card-entry:hover {
box-shadow: 0 8px 32px rgba(13,148,136,0.18);
transform: translateY(-2px);
}
.entry-inner {
display: flex;
align-items: flex-start;
gap: 20px;
flex-wrap: wrap;
}
.entry-badge {
display: inline-block;
background: var(--teal);
color: var(--white);
font-size: 10px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 100px;
margin-bottom: 10px;
}
.entry-text { flex: 1; min-width: 200px; }
.entry-text h3 {
font-size: 18px;
font-weight: 800;
color: var(--navy);
margin-bottom: 8px;
letter-spacing: -0.02em;
}
.entry-text p {
font-size: 14px;
color: var(--gray-600);
line-height: 1.75;
margin-bottom: 14px;
}
.entry-cta {
font-size: 13px;
font-weight: 700;
color: var(--teal);
display: inline-flex;
align-items: center;
gap: 4px;
}

.service-card {
border: 1px solid var(--gray-200);
border-radius: 12px;
padding: 28px 24px;
transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
background: var(--gray-50);
text-decoration: none;
color: inherit;
display: block;
}
.service-card:hover {
box-shadow: 0 8px 32px rgba(13,148,136,0.1);
border-color: var(--teal-border);
transform: translateY(-2px);
background: var(--white);
}
.service-card-icon {
width: 44px; height: 44px;
background: var(--teal-pale);
border: 1px solid var(--teal-border);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
margin-bottom: 16px;
}
.service-card-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.8; }

/* AI 카드 골드 강조 */
.service-card.ai-card {
border-color: var(--gold-border);
background: var(--gold-pale);
}
.service-card.ai-card:hover {
border-color: var(--gold);
box-shadow: 0 8px 32px rgba(184,151,42,0.12);
}
.service-card.ai-card .service-card-icon {
background: var(--gold-pale);
border-color: var(--gold-border);
}
.service-card.ai-card .service-card-icon svg { stroke: var(--gold); }
.service-card.ai-card .card-link { color: var(--gold); }
.new-badge {
display: inline-block;
background: var(--gold);
color: var(--white);
font-size: 9px;
font-weight: 700;
letter-spacing: 0.06em;
padding: 2px 7px;
border-radius: 100px;
margin-left: 6px;
vertical-align: middle;
text-transform: uppercase;
}

.service-card h3 {
font-size: 16px;
font-weight: 700;
color: var(--navy);
margin-bottom: 10px;
letter-spacing: -0.02em;
}
.service-card p {
font-size: 13px;
color: var(--gray-500);
line-height: 1.75;
margin-bottom: 16px;
font-weight: 400;
}
.card-link { font-size: 12px; font-weight: 600; color: var(--teal); }

/* 월정액 카드 */
.service-card.retain-card {
border: 1px dashed var(--teal-border);
background: var(--white);
}

/* ── QUOTE ── */
.quote-section {
background: var(--gray-50);
border-top: 1px solid var(--gray-200);
border-bottom: 1px solid var(--gray-200);
padding: 64px 24px;
text-align: center;
}
.quote-section blockquote {
font-size: clamp(18px, 3vw, 24px);
font-weight: 600;
color: var(--navy);
line-height: 1.7;
max-width: 560px;
margin: 0 auto 16px;
letter-spacing: -0.02em;
position: relative;
}
.quote-section blockquote::before {
content: '\201C';
font-size: 80px;
color: var(--teal);
opacity: 0.2;
position: absolute;
top: -24px; left: -12px;
line-height: 1;
}
.quote-author { font-size: 13px; color: var(--gray-400); font-weight: 400; }

/* ── TARGET ── */
.target-section { background: var(--white); padding: 72px 24px; }
.target-inner { max-width: 800px; margin: 0 auto; }
.target-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.target-list li {
background: var(--gray-50);
border: 1px solid var(--gray-200);
border-left: 3px solid var(--teal);
border-radius: 0 8px 8px 0;
padding: 14px 18px;
font-size: 14px;
color: var(--gray-500);
line-height: 1.55;
}
.target-list li strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }

/* ── CTA ── */
.cta-outer { background: var(--teal-pale); border-top: 1px solid var(--teal-border); padding: 72px 24px; }
.cta-section { max-width: 560px; margin: 0 auto; text-align: center; }
.cta-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 32px; font-weight: 400; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.btn-navy {
background: var(--navy); color: var(--white);
font-family: var(--font); font-size: 15px; font-weight: 600;
padding: 14px 32px; border-radius: 8px;
text-decoration: none; display: inline-block;
transition: background 0.2s;
box-shadow: 0 2px 8px rgba(15,35,66,0.2);
}
.btn-navy:hover { background: #0a1a33; }
.btn-teal {
background: var(--teal); color: var(--white);
font-family: var(--font); font-size: 15px; font-weight: 600;
padding: 14px 32px; border-radius: 8px;
text-decoration: none; display: inline-block;
transition: background 0.2s;
box-shadow: 0 2px 12px rgba(13,148,136,0.3);
}
.btn-teal:hover { background: #0f766e; }
.channels { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.channel-link { font-size: 13px; color: var(--gray-400); text-decoration: none; transition: color 0.2s; }
.channel-link:hover { color: var(--teal); }

/* ── FOOTER ── */
.site-footer {
background: var(--gray-50);
border-top: 1px solid var(--gray-200);
padding: 36px 24px 32px;
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-brand { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; margin-bottom: 14px; }
.footer-info {
display: flex;
flex-wrap: wrap;
gap: 6px 14px;
font-size: 12px;
color: var(--gray-500);
line-height: 1.7;
margin-bottom: 14px;
}
.footer-info .label { color: var(--gray-400); margin-right: 4px; }
.footer-info .sep { color: var(--gray-200); }
.footer-copyright { font-size: 11px; color: var(--gray-400); letter-spacing: 0.02em; }

@media (max-width: 600px) {
.stats { grid-template-columns: 1fr; }
.hero-btns, .cta-btns { flex-direction: column; align-items: center; }
.btn-primary, .btn-outline, .btn-navy, .btn-teal { width: 100%; max-width: 280px; text-align: center; }
.footer-info { gap: 4px 0; flex-direction: column; }
.footer-info .sep { display: none; }
.journey-steps { gap: 8px; }
.journey-arrow { display: none; }
.entry-inner { flex-direction: column; }
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  .hero { padding: 48px 16px 40px; }
  .hero h1 { font-size: 28px; }
  .hero-desc { font-size: 14px; }
  .hero-stats { gap: 16px; padding: 16px 20px; flex-wrap: wrap; justify-content: center; }
  .stat-num { font-size: 16px; }
  .section { padding: 40px 16px; }
  .section-title { font-size: 20px; }
  .section-desc { font-size: 13px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 16px; }
  .problem-card h4 { font-size: 14px; }
  .problem-card p { font-size: 13px; }
  .package-box { padding: 20px 16px; }
  .package-title { font-size: 15px; }
  .package-desc { font-size: 13px; }
  .package-items li { font-size: 13px; }
  .area-grid { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr 1fr; }
  .result-card { padding: 16px; }
  .result-num { font-size: 22px; }
  .result-label { font-size: 13px; }
  .process-bg { padding: 40px 16px; }
  .process-title { font-size: 20px; }
  .process-item { padding: 16px; gap: 12px; }
  .process-content h4 { font-size: 14px; }
  .process-content p { font-size: 12px; }
  .flow-section { padding: 40px 16px; }
  .flow-title { font-size: 20px; }
  .flow-item { padding: 16px; gap: 12px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 20px 16px; }
  .include-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 40px 16px; }
  .cta-title { font-size: 20px; }
  .cta-desc { font-size: 13px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-teal, .btn-navy { width: 100%; max-width: 280px; text-align: center; }
  .topbar { padding: 0 16px; }
  .entry-inner { flex-direction: column; }
  .course-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr 1fr; }
}
