feat: enrich homepage with online trust bar, about narrative, and customer segments
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m45s

Adds an online-consulting trust strip below the hero, replaces the plain
credential row with a personal bio + expertise section, expands the
service cards from 3 broad categories to 5 specific offerings plus a
consult CTA card, and adds a customer-segment section so visitors can
self-identify their situation. Layout follows existing Bootstrap
responsive grid conventions used elsewhere on the page.
This commit is contained in:
2026-07-01 15:38:57 +09:00
parent ada05e254d
commit 127490906b
2 changed files with 375 additions and 152 deletions
+194 -69
View File
@@ -269,34 +269,6 @@ a:hover {
border-radius: 2px;
}
/* ===== 휴스 스트립 (신뢰도) ===== */
.trust-strip {
background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-accent) 100%);
padding: var(--spacing-3xl) 0;
border-top: 1px solid var(--color-border);
border-bottom: 1px solid var(--color-border);
}
.trust-item {
text-align: center;
}
.trust-icon {
font-size: 3.5rem;
margin-bottom: var(--spacing-md);
display: block;
}
.trust-item h3 {
color: var(--color-text);
margin-bottom: var(--spacing-sm);
font-size: 1.35rem;
}
.trust-item p {
color: var(--color-text-light);
font-size: 0.95rem;
}
/* ===== 배지 ===== */
.badge {
@@ -419,10 +391,6 @@ body.with-mobile-cta {
font-size: 0.95rem;
}
.trust-icon {
font-size: 2.5rem;
}
.container {
padding: 0 var(--spacing-md);
}
@@ -799,43 +767,6 @@ img {
100% { transform: translateX(0px) rotate(0deg); }
}
/* 신뢰도 스트립 카드 리뉴얼 */
.trust-strip {
background-color: var(--color-bg-alt);
padding: 3rem 0;
margin-top: -1.5rem;
position: relative;
z-index: 10;
}
.trust-item {
background: white;
border-radius: var(--radius-lg);
padding: 2rem 1.5rem;
box-shadow: 0 10px 30px rgba(61, 40, 23, 0.05);
border: 1px solid rgba(200, 157, 110, 0.15);
transition: all var(--transition-normal);
text-align: center;
}
.trust-item:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(61, 40, 23, 0.1);
border-color: var(--color-primary);
}
.trust-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
display: inline-block;
filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
transition: transform var(--transition-fast);
}
.trust-item:hover .trust-icon {
transform: scale(1.15) rotate(5deg);
}
/* 서비스 카드 고도화 */
.service-card {
border: 1px solid rgba(217, 211, 196, 0.6) !important;
@@ -905,3 +836,197 @@ img {
box-shadow: 0 0 0 6px rgba(46, 92, 78, 0.3);
transform: scale(1.1);
}
/* ===== 온라인 신뢰 바 ===== */
.online-trust-bar {
background: var(--color-secondary-dark);
padding: 1.1rem 0;
}
.online-trust-icon {
font-size: 1.1rem;
margin-right: 0.5rem;
}
.online-trust-text {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.88);
font-weight: 500;
}
/* ===== About 서사 섹션 ===== */
.about-bio-card {
background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
border-radius: var(--radius-xl);
padding: 2.75rem 2.25rem;
color: white;
}
.about-eyebrow {
font-size: 0.72rem;
letter-spacing: 0.18em;
color: var(--color-primary);
font-weight: 700;
text-transform: uppercase;
margin-bottom: 0.75rem;
}
.about-bio-title {
font-size: 1.7rem;
font-weight: 800;
line-height: 1.4;
margin-bottom: 1.25rem;
}
.about-bio-text {
color: rgba(255, 255, 255, 0.78);
font-size: 0.92rem;
line-height: 1.9;
margin-bottom: 1rem;
}
.about-bio-stats {
display: flex;
gap: 2rem;
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.about-stat-label {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.5);
margin-bottom: 0.35rem;
}
.about-stat-value {
font-size: 1.15rem;
font-weight: 800;
color: var(--color-primary);
}
.about-expertise-title {
font-size: clamp(1.5rem, 3.5vw, 2rem);
font-weight: 800;
color: var(--color-text);
line-height: 1.4;
margin-bottom: 0.5rem;
}
.expertise-item {
padding: 1.25rem 1.4rem;
border: 1.5px solid var(--color-border);
border-radius: var(--radius-lg);
transition: all var(--transition-fast);
background: white;
}
.expertise-item:hover {
border-color: var(--color-primary);
background: var(--color-bg);
}
.expertise-icon {
width: 48px;
height: 48px;
flex-shrink: 0;
background: var(--color-accent);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
}
.expertise-title {
font-weight: 700;
font-size: 1rem;
color: var(--color-text);
margin-bottom: 0.35rem;
}
.expertise-desc {
font-size: 0.85rem;
color: var(--color-text-light);
line-height: 1.8;
}
/* ===== 서비스 카드 태그 & CTA 카드 ===== */
.service-card-tag {
font-size: 0.68rem;
letter-spacing: 0.08em;
color: var(--color-primary);
font-weight: 700;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.service-card-target {
margin-top: 1rem;
padding-top: 0.85rem;
border-top: 1px solid rgba(217, 211, 196, 0.5);
font-size: 0.75rem;
color: var(--color-text-light);
}
.service-card--cta {
background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%) !important;
border: none !important;
}
/* ===== 고객유형 섹션 ===== */
.customer-type-section {
background: var(--color-secondary-dark);
}
.customer-type-card {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: var(--radius-xl);
padding: 2rem;
transition: background var(--transition-normal);
}
.customer-type-card:hover {
background: rgba(255, 255, 255, 0.1);
}
.customer-type-card--primary {
background: rgba(200, 157, 110, 0.14);
border-color: rgba(200, 157, 110, 0.4);
}
.customer-type-card--primary:hover {
background: rgba(200, 157, 110, 0.2);
}
.customer-type-tag {
font-size: 0.68rem;
letter-spacing: 0.1em;
color: var(--color-primary);
font-weight: 700;
text-transform: uppercase;
margin-bottom: 0.6rem;
}
.customer-type-title {
font-size: 1.15rem;
font-weight: 800;
color: white;
margin-bottom: 0.85rem;
}
.customer-type-desc {
color: rgba(255, 255, 255, 0.68);
font-size: 0.85rem;
line-height: 1.85;
margin-bottom: 0;
}
.customer-type-pill {
background: rgba(200, 157, 110, 0.2);
color: #E8C88A;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.75rem;
}