refactor: redesign homepage for clarity and SEO focus
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m48s
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m48s
Replace bloated multi-section layout with streamlined structure: - Remove online-trust, About, customer-type sections from homepage - Restore 3-service-group simplicity (business-tax, real-estate-tax, family-asset) - Elevate blog section for SEO priority (post homepage hero) - Move full About content to dedicated /about page (linked from hero banner) - Replace customer-type segmentation with blog category tagging Improves mobile readability, reduces scrolling fatigue, and aligns homepage to core business goals (blog SEO + service clarity). About page now hosts the full story with expertise details.
This commit is contained in:
@@ -836,197 +836,3 @@ 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user