/* =========================
   Landing Page - Toss Style (Full Dark)
========================= */

/* 랜딩 전용 wrapper */
.landing-wrapper {
    max-width: none;
    margin: 0;
    padding: 0;
    background: #191f28;
    box-shadow: none;
    overflow-y: auto;
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
    height: 100vh;
    height: 100dvh;
    color: #f9fafb;
    overscroll-behavior-y: contain;
}

/* SEO용 숨김 h1 */
.seo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 스냅 섹션 공통 */
.snap-section {
    min-height: 100vh;
    min-height: 100dvh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

/* 스크롤 등장 애니메이션 */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translate(0);
}

/* 쇼케이스 좌우 번갈아 등장 */
.reveal-from-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-from-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-from-left.visible,
.reveal-from-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* 섹션 라벨 */
.section-label,
.hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #e0fd53;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-label {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 6px 0;
    color: #e0fd53;
}

.hero-label-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    background: linear-gradient(90deg, #e0fd53, #53fdc8, #53c8fd, #e0fd53);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: labelShimmer 3s linear infinite;
}

@keyframes labelShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.hero-label.visible .hero-label-char {
    animation: charDrop 0.4s ease forwards, labelShimmer 3s linear 1.5s infinite;
}

@keyframes charDrop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 글자별 딜레이 */
.hero-label.visible .hero-label-char:nth-child(1)  { animation-delay: 0.3s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(2)  { animation-delay: 0.34s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(3)  { animation-delay: 0.38s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(4)  { animation-delay: 0.42s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(5)  { animation-delay: 0.46s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(6)  { animation-delay: 0.50s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(7)  { animation-delay: 0.54s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(8)  { animation-delay: 0.58s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(9)  { animation-delay: 0.64s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(10) { animation-delay: 0.68s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(11) { animation-delay: 0.74s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(12) { animation-delay: 0.78s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(13) { animation-delay: 0.82s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(14) { animation-delay: 0.86s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(15) { animation-delay: 0.90s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(16) { animation-delay: 0.94s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(17) { animation-delay: 0.98s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(18) { animation-delay: 1.02s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(19) { animation-delay: 1.06s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(20) { animation-delay: 1.10s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(21) { animation-delay: 1.14s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(22) { animation-delay: 1.18s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(23) { animation-delay: 1.22s, 1.5s; }
.hero-label.visible .hero-label-char:nth-child(24) { animation-delay: 1.26s, 1.5s; }
.hero-label-char:nth-child(23) { animation-delay: 1.22s; }
.hero-label-char:nth-child(24) { animation-delay: 1.26s; }

/* 섹션 타이틀 */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #f9fafb;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 48px;
}

/* =========================
   히어로 섹션
========================= */
/* 배경 흘러가는 텍스트 */
.ticker-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    opacity: 0.07;
}

.ticker-row {
    display: inline-flex;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    width: max-content;
}

.ticker-row span {
    display: inline-block;
    flex-shrink: 0;
}

.ticker-row-1 { animation: ticker-left 60s linear infinite; }
.ticker-row-2 { animation: ticker-right 55s linear infinite; }
.ticker-row-3 { animation: ticker-left 65s linear infinite; }
.ticker-row-4 { animation: ticker-right 58s linear infinite; }

@keyframes ticker-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes ticker-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.hero-section {
    background: #121417;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(224, 253, 83, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 253, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #f9fafb;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-accent {
    color: #e0fd53;
    text-shadow: 0 0 20px rgba(224, 253, 83, 0.4);
    animation: accentGlow 2.5s ease-in-out infinite;
}

@keyframes accentGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(224, 253, 83, 0.4); }
    50% { text-shadow: 0 0 36px rgba(224, 253, 83, 0.7), 0 0 60px rgba(224, 253, 83, 0.2); }
}

.hero-desc {
    font-size: 18px;
    color: #8b95a1;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.hero-btn.primary {
    background: #e0fd53;
    color: #1a1a1a;
}

.hero-btn.primary:hover {
    background: #c8e019;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 253, 83, 0.35);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #b0b8c1;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #f9fafb;
}

/* 스크롤 인디케이터 */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #6b7684;
    font-size: 12px;
    animation: bounce 2s infinite;
    z-index: 1;
}

.scroll-arrow {
    width: 2px;
    height: 16px;
    background: #6b7684;
    border-radius: 1px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #6b7684;
    border-bottom: 2px solid #6b7684;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* =========================
   기능 쇼케이스 섹션
========================= */

/* 배경 이미지 + 오버레이 */
.showcase-section {
    background-color: #191f28;
}

.showcase-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

/* PERCENTILE */
.showcase-section:nth-child(2)::before {
    background-image: url('/img/bg-percentile.jpg');
    opacity: 0.1;
}

/* CROSSFIT ARCHIVE */
.showcase-section:nth-child(3)::before {
    background-image: url('/img/bg-crossfit.jpeg');
    opacity: 0.1;
}

/* WOD */
.showcase-section:nth-child(4)::before {
    background-image: url('/img/bg-wod.jpg');
    opacity: 0.1;
}

/* CALCULATOR */
.showcase-section:nth-child(5)::before {
    background-image: url('/img/bg-calculator.webp');
    opacity: 0.1;
}

/* WEIGHTLIFTING */
.showcase-section:nth-child(6)::before {
    background-image: url('/img/bg-weightlifting.jpg');
    opacity: 0.1;
}

/* 섹션별 그라디언트 글로우 */
.showcase-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* PERCENTILE */
.showcase-section:nth-child(2)::after {
    top: -15%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(224, 253, 83, 0.2) 0%, transparent 65%);
}

/* CROSSFIT */
.showcase-section:nth-child(3)::after {
    top: 5%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(253, 183, 83, 0.15) 0%, transparent 65%);
}

/* WOD */
.showcase-section:nth-child(4)::after {
    bottom: -15%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(183, 83, 253, 0.15) 0%, transparent 65%);
}

/* CALCULATOR */
.showcase-section:nth-child(5)::after {
    bottom: -15%;
    left: -20%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(83, 200, 253, 0.15) 0%, transparent 65%);
}

/* WEIGHTLIFTING */
.showcase-section:nth-child(6)::after {
    top: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(253, 83, 83, 0.15) 0%, transparent 65%);
}

.showcase-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-label {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 4px 12px;
    color: #e0fd53;
    background: none;
    border-radius: 0;
}

/* PERCENTILE — 그라디언트 텍스트 + 글로우 */
.showcase-section:nth-child(2) .showcase-label {
    background: linear-gradient(135deg, #e0fd53, #53fdc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 800;
}

/* CROSSFIT — 그라디언트 텍스트 */
.showcase-section:nth-child(3) .showcase-label {
    background: linear-gradient(135deg, #fdb753, #fd8f53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 800;
}

/* WOD — 아웃라인 pill */
.showcase-section:nth-child(4) .showcase-label {
    color: #b753fd;
    border: 1px solid rgba(183, 83, 253, 0.4);
    border-radius: 20px;
    padding: 5px 16px;
}

/* CALCULATOR — 슬래시 + 그라디언트 텍스트 */
.showcase-section:nth-child(5) .showcase-label {
    background: linear-gradient(135deg, #53c8fd, #5383fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 800;
    gap: 10px;
}

.showcase-section:nth-child(5) .showcase-label::before,
.showcase-section:nth-child(5) .showcase-label::after {
    content: '/';
    color: rgba(83, 200, 253, 0.4);
    font-size: 14px;
}

/* WEIGHTLIFTING — 좌우 라인 + 그라디언트 텍스트 */
.showcase-section:nth-child(6) .showcase-label {
    gap: 16px;
    background: linear-gradient(135deg, #fd5353, #fd8353);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 800;
}

.showcase-section:nth-child(6) .showcase-label::before,
.showcase-section:nth-child(6) .showcase-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fd5353);
}

.showcase-section:nth-child(6) .showcase-label::after {
    background: linear-gradient(90deg, #fd5353, transparent);
}

.showcase-heading {
    font-size: 32px;
    font-weight: 700;
    color: #f9fafb;
    margin: 0 0 40px;
    letter-spacing: -0.5px;
}

/* 데이터 카드 그리드 */
.showcase-data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom: 36px;
}

.showcase-data-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 링크형 hl-card */
.hl-card-link {
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
}

.hl-card-link:hover {
    border-color: rgba(224, 253, 83, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* 시작하기 버튼 */
.start-btn {
    margin-top: 32px;
    margin-bottom: 48px;
    padding: 18px 64px;
    font-size: 18px;
    cursor: pointer;
    border: none;
}

/* 프로그레스 도트 */
.showcase-progress {
    display: flex;
    gap: 8px;
}

.showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.3s;
}

.showcase-dot.active {
    background: #e0fd53;
    width: 24px;
    border-radius: 4px;
}


/* =========================
   Apple-style 통계 & 카피 레이아웃
========================= */

/* ARCHIVE 섹션 - 큰 숫자 통계 (텍스트 스타일) */
.apple-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 36px;
}

.apple-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 28px 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.apple-stat:hover .apple-number {
    color: #c8e019;
}

.apple-stat:hover .apple-desc {
    color: #b0b8c1;
}

.apple-number {
    font-size: 64px;
    font-weight: 800;
    color: #e0fd53;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.apple-plus {
    font-size: 48px;
    font-weight: 700;
}

.apple-desc {
    font-size: 15px;
    color: #6b7684;
    line-height: 1.6;
    text-align: center;
    transition: color 0.3s;
}

/* WOD 섹션 - 카피라이팅 */
.apple-line {
    font-size: 28px;
    font-weight: 600;
    color: #f9fafb;
    line-height: 1.8;
    text-align: center;
    margin: 0 0 8px;
}

.apple-line:last-of-type {
    margin-bottom: 40px;
}

.text-accent {
    color: #e0fd53;
}

/* =========================
   hl-card 공통 스타일
========================= */

.hl-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
}

.hl-header {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #f9fafb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hl-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    font-size: 14px;
    color: #8b95a1;
}

.hl-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hl-value {
    font-weight: 700;
    color: #e0fd53;
}


/* =========================
   Percentile 목업
========================= */
.pct-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 420px;
}

.pct-mock-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7684;
    margin-bottom: 4px;
}

.pct-mock-number {
    font-size: 72px;
    font-weight: 900;
    color: #e0fd53;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 4px;
}

.pct-mock-rank {
    font-size: 15px;
    font-weight: 600;
    color: #8b95a1;
    margin-bottom: 20px;
}

.pct-mock-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    position: relative;
    overflow: visible;
}

.pct-mock-fill {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #e0fd53, #53fdc8, #53c8fd, #6b7684);
}

.pct-mock-marker {
    position: absolute;
    top: -3px;
    left: 8%;
    width: 4px;
    height: 16px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(224, 253, 83, 0.6);
    animation: pct-pulse 2s ease-in-out infinite;
}

@keyframes pct-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(224, 253, 83, 0.6); }
    50% { box-shadow: 0 0 16px rgba(224, 253, 83, 0.9); }
}

/* =========================
   푸터 섹션
========================= */
.footer-section {
    min-height: auto;
    background: #121417;
    padding: 0 24px 48px;
    position: relative;
}

.footer-accent-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e0fd53, transparent);
    margin-bottom: 64px;
}

.footer-inner {
    max-width: 960px;
    width: 100%;
}

.footer-brand {
    text-align: center;
    margin-bottom: 48px;
}

.footer-title {
    font-size: 32px;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.footer-desc {
    font-size: 15px;
    color: #6b7684;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    color: #8b95a1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: #6b7684;
    text-decoration: none;
    cursor: default;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-tip {
    font-size: 12px;
    color: #4e5968;
    line-height: 1.6;
    flex: 1;
}

.footer-social {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.footer-social a {
    color: #4e5968;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: #e0fd53;
}

.footer-copy {
    font-size: 12px;
    color: #4e5968;
    flex-shrink: 0;
}

/* =========================
   반응형
========================= */
@media (max-width: 768px) {
    .landing-wrapper {
        -webkit-overflow-scrolling: touch;
    }

    .snap-section {
        padding: 60px 20px;
    }

    .hero-section::before {
        width: 350px;
        height: 350px;
        top: -20%;
        right: -30%;
    }

    .hero-section::after {
        width: 300px;
        height: 300px;
        bottom: -15%;
        left: -25%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .showcase-section::after {
        width: 300px !important;
        height: 300px !important;
    }

    .showcase-heading {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .showcase-data,
    .showcase-data-3 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .showcase-links {
        flex-direction: column;
        width: 100%;
    }

    .showcase-cta {
        text-align: center;
    }

    .pct-mock {
        padding: 24px 20px;
    }

    .pct-mock-number {
        font-size: 56px;
    }

    .apple-number {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .apple-stat {
        padding: 20px 16px;
    }

    .apple-line {
        font-size: 20px;
    }

    .footer-accent-line {
        margin-bottom: 48px;
    }

    .footer-brand {
        margin-bottom: 36px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-desc br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .showcase-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-tip {
        order: 1;
    }

    .footer-social {
        order: 2;
    }

    .footer-copy {
        order: 3;
    }
}
