/**
 * Shoelist Homepage Premium Design
 * Magazine-style, full-width, competition-quality layout
 * Navy academic tones, Apple-inspired typography, soft isometric look
 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --hp-navy-950: #060d1f;
    --hp-navy-900: #0d1b3e;
    --hp-navy-800: #132952;
    --hp-navy-700: #1a365d;
    --hp-navy-600: #234e87;
    --hp-navy-500: #2b6cb0;
    --hp-navy-400: #4299e1;
    --hp-navy-300: #63b3ed;
    --hp-navy-200: #bee3f8;
    --hp-navy-100: #ebf8ff;

    --hp-gold-600: #b7791f;
    --hp-gold-500: #d69e2e;
    --hp-gold-400: #ecc94b;
    --hp-gold-300: #f6e05e;

    --hp-text: #2d3748;
    --hp-text-muted: #718096;
    --hp-text-light: #a0aec0;

    --hp-bg: #fafbfe;
    --hp-bg-alt: #f0f4fa;
    --hp-bg-warm: #fef9f0;
    --hp-white: #ffffff;

    --hp-shadow-xs: 0 1px 3px rgba(13, 27, 62, 0.04);
    --hp-shadow-sm: 0 2px 8px rgba(13, 27, 62, 0.06);
    --hp-shadow-md: 0 4px 20px rgba(13, 27, 62, 0.08);
    --hp-shadow-lg: 0 12px 40px rgba(13, 27, 62, 0.1);
    --hp-shadow-xl: 0 20px 60px rgba(13, 27, 62, 0.12);
    --hp-shadow-glow: 0 0 40px rgba(43, 108, 176, 0.15);

    --hp-radius-xs: 6px;
    --hp-radius-sm: 10px;
    --hp-radius-md: 16px;
    --hp-radius-lg: 24px;
    --hp-radius-xl: 32px;
    --hp-radius-pill: 50px;

    --hp-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --hp-ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --hp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --hp-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --hp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Roboto, sans-serif;
    --hp-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;

    --hp-container: 1320px;
    --hp-container-narrow: 960px;
    --hp-gutter: clamp(16px, 4vw, 40px);
}

/* ============================================================
   HOMEPAGE BASE
   ============================================================ */
body.page-home {
    font-family: var(--hp-font);
    color: var(--hp-text);
    background-color: var(--hp-navy-900);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 65px;
}

body.page-home .site-main {
    overflow-x: hidden;
}

body.page-home .site-main h1,
body.page-home .site-main h2,
body.page-home .site-main h3,
body.page-home .site-main h4,
body.page-home .site-main h5,
body.page-home .site-main h6 {
    font-family: var(--hp-font-display);
    color: var(--hp-text);
    letter-spacing: -0.025em;
    line-height: 1.15;
}

body.page-home p {
    line-height: 1.7;
    color: var(--hp-text-muted);
}

/* Force white text inside dark sections (needs body.page-home for specificity) */
body.page-home .hp-hero h1, body.page-home .hp-hero h2, body.page-home .hp-hero h3,
body.page-home .hp-hero h4, body.page-home .hp-hero h5, body.page-home .hp-hero h6,
body.page-home .hp-cta h1, body.page-home .hp-cta h2, body.page-home .hp-cta h3,
body.page-home .hp-cta h4, body.page-home .hp-cta h5, body.page-home .hp-cta h6,
body.page-home .hp-stats h1, body.page-home .hp-stats h2, body.page-home .hp-stats h3,
body.page-home .hp-stats h4, body.page-home .hp-stats h5, body.page-home .hp-stats h6 {
    color: #ffffff;
}

body.page-home .hp-hero p, body.page-home .hp-cta p, body.page-home .hp-stats p {
    color: rgba(255, 255, 255, 0.7);
}

.hp-container {
    max-width: var(--hp-container);
    margin: 0 auto;
    padding: 0 var(--hp-gutter);
}

.hp-container--narrow {
    max-width: var(--hp-container-narrow);
}

/* ============================================================
   SECTION LABEL / EYEBROW
   ============================================================ */
.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hp-navy-500);
    margin-bottom: 16px;
}

.hp-eyebrow__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hp-navy-500), var(--hp-gold-500));
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.hp-section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.hp-section-heading h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--hp-text);
}

.hp-section-heading p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    color: var(--hp-text-muted);
    margin: 0;
}

/* Header styling is now global in layout.css */

/* ============================================================
   HERO SECTION
   ============================================================ */
.hp-hero {
    position: relative;
    background: linear-gradient(160deg, var(--hp-navy-900) 0%, var(--hp-navy-700) 45%, var(--hp-navy-600) 100%);
    padding: clamp(80px, 12vw, 160px) 0 clamp(140px, 16vw, 260px);
    overflow: visible;
    color: #ffffff;
}

.hp-hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.hp-hero__bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: #ffffff;
}

.hp-hero__bg-shapes .shape--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.hp-hero__bg-shapes .shape--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -80px;
}

.hp-hero__bg-shapes .shape--3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 20%;
    opacity: 0.04;
}

.hp-hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hp-hero .hp-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hp-hero__content {
    max-width: 580px;
}

.hp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--hp-radius-pill);
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

.hp-hero__badge i {
    font-size: 0.75rem;
    color: var(--hp-gold-400);
}

.hp-hero__title {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    color: #ffffff;
}

.hp-hero__title span {
    background: linear-gradient(135deg, var(--hp-gold-400), var(--hp-gold-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-hero__subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 400;
}

.hp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--hp-font);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    padding: 14px 28px;
    border-radius: var(--hp-radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--hp-transition), box-shadow var(--hp-transition), background var(--hp-transition);
    white-space: nowrap;
}

.hp-btn:hover {
    text-decoration: none;
}

.hp-btn--primary {
    background: #ffffff;
    color: var(--hp-navy-800);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: var(--hp-navy-800);
}

.hp-btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.hp-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.hp-btn--navy {
    background: linear-gradient(135deg, var(--hp-navy-700), var(--hp-navy-600));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.25);
}

.hp-btn--navy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 54, 93, 0.35);
    color: #ffffff;
}

.hp-btn--gold {
    background: linear-gradient(135deg, var(--hp-gold-500), var(--hp-gold-400));
    color: var(--hp-navy-900);
    box-shadow: 0 4px 16px rgba(214, 158, 46, 0.3);
}

.hp-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(214, 158, 46, 0.4);
    color: var(--hp-navy-900);
}

.hp-btn--outline {
    background: transparent;
    color: var(--hp-navy-700);
    border: 2px solid var(--hp-navy-200);
}

.hp-btn--outline:hover {
    background: var(--hp-navy-700);
    color: #ffffff;
    border-color: var(--hp-navy-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.2);
}

.hp-btn--sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.hp-btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.hp-hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.hp-hero__trust-avatars {
    display: flex;
}

.hp-hero__trust-avatars span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hp-navy-500), var(--hp-navy-400));
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-left: -8px;
}

.hp-hero__trust-avatars span:first-child {
    margin-left: 0;
}

.hp-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-hero__illustration {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hp-hero__illustration img {
    width: 100%;
    height: auto;
    border-radius: var(--hp-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s var(--hp-ease);
}

.hp-hero__float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--hp-radius-md);
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    color: var(--hp-text);
}

.hp-hero__float-card--1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hp-hero__float-card--2 {
    bottom: 15%;
    left: -20px;
    animation-delay: -3s;
}

.hp-hero__float-card .float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.hp-hero__float-card .float-icon--navy {
    background: linear-gradient(135deg, var(--hp-navy-100), var(--hp-navy-200));
    color: var(--hp-navy-700);
}

.hp-hero__float-card .float-icon--gold {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: var(--hp-gold-600);
}

.hp-hero__float-card .float-text {
    font-size: 0.8125rem;
    line-height: 1.35;
}

.hp-hero__float-card .float-text strong {
    display: block;
    font-weight: 700;
    color: var(--hp-text);
    font-size: 0.875rem;
}

.hp-hero__float-card .float-text span {
    color: var(--hp-text-muted);
    font-weight: 400;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================================
   SVG WAVE SEPARATORS (positioned inside parent sections)
   ============================================================ */
.hp-wave {
    line-height: 0;
    font-size: 0;
}

.hp-wave--bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 5;
    pointer-events: none;
}

.hp-wave--top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 5;
    pointer-events: none;
}

.hp-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================================
   SHOE SHOWCASE SECTION
   ============================================================ */
.hp-shoes {
    padding: clamp(60px, 8vw, 100px) 0 clamp(100px, 10vw, 160px);
    background: var(--hp-white);
    position: relative;
}

.hp-shoes__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hp-tab {
    font-family: var(--hp-font);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--hp-radius-pill);
    border: 2px solid var(--hp-navy-200);
    background: transparent;
    color: var(--hp-text-muted);
    cursor: pointer;
    transition: all var(--hp-transition);
    white-space: nowrap;
}

.hp-tab:hover {
    border-color: var(--hp-navy-400);
    color: var(--hp-navy-700);
}

.hp-tab.active {
    background: linear-gradient(135deg, var(--hp-navy-700), var(--hp-navy-600));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.2);
}

.hp-shoes__panel {
    display: none;
}

.hp-shoes__panel.active {
    display: block;
    animation: fadeUp 0.4s var(--hp-ease);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hp-shoes__carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px 24px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.hp-shoes__carousel::-webkit-scrollbar {
    display: none;
}

.hp-shoes__carousel.grabbing {
    cursor: grabbing;
}

.hp-shoe-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--hp-white);
    border-radius: var(--hp-radius-md);
    overflow: hidden;
    border: 1px solid rgba(13, 27, 62, 0.06);
    box-shadow: var(--hp-shadow-sm);
    transition: transform var(--hp-transition), box-shadow var(--hp-transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.hp-shoe-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-lg);
    text-decoration: none;
    color: inherit;
}

.hp-shoe-card__image {
    height: 200px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hp-shoe-card__image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--hp-ease);
}

.hp-shoe-card:hover .hp-shoe-card__image img {
    transform: scale(1.08);
}

.hp-shoe-card__image .shoe-placeholder {
    font-size: 2.5rem;
    color: var(--hp-text-light);
    opacity: 0.4;
}

.hp-shoe-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hp-shoe-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}

.hp-shoe-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.hp-shoe-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--hp-radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hp-shoe-card__tag--brand {
    background: var(--hp-navy-100);
    color: var(--hp-navy-700);
}

.hp-shoe-card__tag--gender {
    background: #faf5ff;
    color: #6b46c1;
}

.hp-shoe-card__tag--gender.boys {
    background: #ebf8ff;
    color: #2b6cb0;
}

.hp-shoe-card__tag--gender.sports {
    background: #f0fff4;
    color: #276749;
}

.hp-shoe-card__tag--size {
    background: var(--hp-bg-alt);
    color: var(--hp-text-muted);
}

.hp-shoes__actions {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.hp-features {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--hp-bg-alt);
    position: relative;
}

.hp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hp-feature-card {
    position: relative;
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(13, 27, 62, 0.04);
    box-shadow: var(--hp-shadow-sm);
    transition: transform var(--hp-transition), box-shadow var(--hp-transition);
    overflow: hidden;
}

.hp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hp-navy-600), var(--hp-navy-400));
    opacity: 0;
    transition: opacity var(--hp-transition);
}

.hp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hp-shadow-lg);
}

.hp-feature-card:hover::before {
    opacity: 1;
}

.hp-feature-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    transition: transform var(--hp-transition);
}

.hp-feature-card:hover .hp-feature-card__icon {
    transform: scale(1.1) rotate(-3deg);
}

.hp-feature-card__icon--navy {
    background: linear-gradient(135deg, var(--hp-navy-100), var(--hp-navy-200));
    color: var(--hp-navy-700);
}

.hp-feature-card__icon--gold {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: var(--hp-gold-600);
}

.hp-feature-card__icon--teal {
    background: linear-gradient(135deg, #e6fffa, #b2f5ea);
    color: #234e52;
}

.hp-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--hp-text);
}

.hp-feature-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--hp-text-muted);
    margin: 0;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.hp-stats {
    padding: clamp(100px, 10vw, 160px) 0 clamp(100px, 10vw, 160px);
    background: linear-gradient(160deg, var(--hp-navy-900) 0%, var(--hp-navy-700) 100%);
    position: relative;
    overflow: visible;
}

.hp-stats__bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.hp-stats__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.hp-stat {
    text-align: center;
    color: #ffffff;
}

.hp-stat__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    font-size: 1.25rem;
    color: var(--hp-gold-400);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-stat__number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
    color: #ffffff;
}

.hp-stat__label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.01em;
}

/* ============================================================
   SCHOOLS SECTION
   ============================================================ */
.hp-schools {
    padding: clamp(60px, 8vw, 100px) 0 clamp(100px, 10vw, 160px);
    background: var(--hp-white);
    position: relative;
}

.hp-schools__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.hp-school-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius-md);
    border: 1px solid rgba(13, 27, 62, 0.06);
    box-shadow: var(--hp-shadow-sm);
    overflow: hidden;
    transition: transform var(--hp-transition), box-shadow var(--hp-transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.hp-school-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-lg);
    text-decoration: none;
    color: inherit;
}

.hp-school-card__accent {
    height: 4px;
    background: linear-gradient(90deg, var(--hp-navy-600), var(--hp-navy-400));
}

.hp-school-card__body {
    padding: 28px 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hp-school-card__logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: contain;
    background: var(--hp-bg-alt);
    padding: 8px;
    margin-bottom: 16px;
    box-shadow: var(--hp-shadow-xs);
}

.hp-school-card__placeholder {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hp-navy-100), var(--hp-navy-200));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: var(--hp-navy-600);
}

.hp-school-card__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.hp-school-card__location {
    font-size: 0.8125rem;
    color: var(--hp-text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hp-school-card__location i {
    font-size: 0.6875rem;
    color: var(--hp-navy-400);
}

.hp-school-card__link {
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hp-navy-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--hp-transition), color var(--hp-transition);
    text-decoration: none;
}

.hp-school-card:hover .hp-school-card__link {
    gap: 10px;
    color: var(--hp-navy-500);
}

.hp-school-card__link i {
    font-size: 0.75rem;
    transition: transform var(--hp-transition);
}

.hp-school-card:hover .hp-school-card__link i {
    transform: translateX(2px);
}

/* ============================================================
   SHOPS SECTION
   ============================================================ */
.hp-shops {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--hp-bg-alt);
    position: relative;
}

.hp-shops__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.hp-shop-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius-md);
    border: 1px solid rgba(13, 27, 62, 0.06);
    box-shadow: var(--hp-shadow-sm);
    overflow: hidden;
    transition: transform var(--hp-transition), box-shadow var(--hp-transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.hp-shop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-lg);
    text-decoration: none;
    color: inherit;
}

.hp-shop-card__accent {
    height: 4px;
    background: linear-gradient(90deg, var(--hp-gold-500), var(--hp-gold-400));
}

.hp-shop-card__body {
    padding: 28px 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hp-shop-card__logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: contain;
    background: var(--hp-bg-alt);
    padding: 8px;
    margin-bottom: 16px;
    box-shadow: var(--hp-shadow-xs);
}

.hp-shop-card__placeholder {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: var(--hp-gold-600);
}

.hp-shop-card__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.hp-shop-card__address {
    font-size: 0.8125rem;
    color: var(--hp-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.hp-shop-card__link {
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hp-gold-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--hp-transition), color var(--hp-transition);
    text-decoration: none;
}

.hp-shop-card:hover .hp-shop-card__link {
    gap: 10px;
    color: var(--hp-gold-500);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.hp-cta {
    padding: clamp(100px, 10vw, 160px) 0 clamp(80px, 10vw, 120px);
    background: linear-gradient(160deg, var(--hp-navy-900) 0%, var(--hp-navy-700) 100%);
    position: relative;
    overflow: visible;
    text-align: center;
}

.hp-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hp-cta__bg .cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: #ffffff;
}

.hp-cta__bg .cta-shape--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
}

.hp-cta__bg .cta-shape--2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -60px;
}

.hp-cta__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.hp-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hp-cta__text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hp-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* Footer styles are now global in components.css */

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.hp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--hp-ease), transform 0.7s var(--hp-ease);
}

.hp-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hp-reveal--delay-1 { transition-delay: 0.1s; }
.hp-reveal--delay-2 { transition-delay: 0.2s; }
.hp-reveal--delay-3 { transition-delay: 0.3s; }
.hp-reveal--delay-4 { transition-delay: 0.4s; }

.hp-reveal--scale {
    opacity: 0;
    transform: scale(0.95) translateY(16px);
}

.hp-reveal--scale.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Large screens (up to 2560px+) */
@media (min-width: 1600px) {
    :root {
        --hp-container: 1440px;
    }

    .hp-hero__title {
        font-size: 4rem;
    }

    .hp-shoe-card {
        flex: 0 0 320px;
    }
}

@media (min-width: 2000px) {
    :root {
        --hp-container: 1600px;
    }

    .hp-hero__title {
        font-size: 4.5rem;
    }

    .hp-features__grid {
        gap: 48px;
    }
}

/* Tablet landscape */
@media (max-width: 1200px) {
    .hp-schools__grid,
    .hp-shops__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Tablet portrait */
@media (max-width: 992px) {
    .hp-hero .hp-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hp-hero__content {
        max-width: 100%;
    }

    .hp-hero__subtitle {
        max-width: 100%;
    }

    .hp-hero__actions {
        justify-content: center;
    }

    .hp-hero__trust {
        justify-content: center;
    }

    .hp-hero__visual {
        max-width: 440px;
        margin: 0 auto;
    }

    .hp-hero__float-card--1 {
        right: 0;
    }

    .hp-hero__float-card--2 {
        left: 0;
    }

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

    .hp-schools__grid,
    .hp-shops__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
    .hp-features__grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .hp-schools__grid,
    .hp-shops__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hp-shoe-card {
        flex: 0 0 240px;
    }

    .hp-hero__float-card {
        display: none;
    }

    .hp-section-heading {
        margin-bottom: 40px;
    }
}

/* Mobile portrait */
@media (max-width: 576px) {
    .hp-hero {
        padding: clamp(60px, 10vw, 100px) 0 clamp(100px, 14vw, 180px);
    }

    .hp-hero__title {
        font-size: clamp(1.875rem, 7vw, 2.5rem);
    }

    .hp-hero__badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .hp-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hp-btn {
        justify-content: center;
    }

    .hp-shoes__tabs {
        gap: 6px;
    }

    .hp-tab {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }

    .hp-shoe-card {
        flex: 0 0 220px;
    }

    .hp-schools__grid,
    .hp-shops__grid {
        grid-template-columns: 1fr;
    }

    .hp-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hp-stat__number {
        font-size: 2rem;
    }

    .hp-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hp-feature-card {
        padding: 32px 24px;
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .hp-stats__grid {
        grid-template-columns: 1fr;
    }
}
