/* =========================================================
   hawkeye.css - ホークアイ特集ページ専用スタイル
   金星自動車 札幌版
=========================================================== */

/* Google Fonts - Oswald */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

/* =========================================================
   Variables & Base
=========================================================== */
.he-hero,
.he-section {
    --he-red: #C1272D;
    --he-red-dark: #9A1F24;
    --he-gold: #FFD700;
    --he-dark: #0A0A0A;
    --he-dark-2: #1A1A1A;
    --he-dark-3: #2A2A2A;
    --he-light: #F5F5F0;
    --he-text: #333;
    --he-text-light: #666;
    --he-white: #FFF;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.8;
    font-size: 16px;
}

.he-hidden { display: none !important; }

/* =========================================================
   HERO
=========================================================== */
.he-hero {
    background: var(--he-dark);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.he-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(193,39,45,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255,215,0,0.08) 0%, transparent 50%);
}

.he-hero-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: heGridDrift 20s linear infinite;
}

@keyframes heGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.he-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
}

.he-hero-badge {
    display: inline-block;
    background: var(--he-red);
    color: var(--he-white);
    padding: 8px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
    animation: heFadeUp 0.8s ease-out;
}

.he-hero-number {
    font-family: 'Oswald', sans-serif;
    color: var(--he-gold);
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 8px;
    animation: heFadeUp 0.8s ease-out 0.2s both;
    text-shadow: 0 0 80px rgba(255,215,0,0.3);
}

.he-hero-number-unit {
    font-size: 42px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    letter-spacing: 0;
}

.he-hero-sub {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 40px;
    animation: heFadeUp 0.8s ease-out 0.3s both;
}

.he-hero-catch {
    color: var(--he-white);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
    animation: heFadeUp 0.8s ease-out 0.4s both;
}

.he-hero-catch em {
    font-style: normal;
    color: var(--he-gold);
}

.he-hero-desc {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: heFadeUp 0.8s ease-out 0.5s both;
}

.he-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--he-red);
    color: var(--he-white) !important;
    padding: 18px 48px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
    animation: heFadeUp 0.8s ease-out 0.6s both;
}

.he-hero-cta:hover {
    background: var(--he-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(193,39,45,0.4);
    color: var(--he-white) !important;
}

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

/* =========================================================
   SECTION COMMON
=========================================================== */
.he-section {
    padding: 80px 20px;
}

.he-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--he-text);
}

.he-section-title span {
    color: var(--he-red);
}

.he-section-sub {
    text-align: center;
    color: var(--he-text-light);
    font-size: 15px;
    margin-bottom: 50px;
}

.he-inner {
    max-width: 960px;
    margin: 0 auto;
}

/* =========================================================
   WHAT IS
=========================================================== */
.he-what {
    background: var(--he-light);
}

.he-what-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.he-what-text {
    flex: 1;
}

.he-what-text h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--he-text);
}

.he-what-text h3 em {
    font-style: normal;
    color: var(--he-red);
}

.he-what-text p {
    color: var(--he-text-light);
    font-size: 15px;
    margin-bottom: 16px;
}

.he-what-visual {
    flex: 1;
    background: var(--he-dark);
    overflow: hidden;
    position: relative;
}

.he-what-visual::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100px; height: 100px;
    background: var(--he-red);
    opacity: 0.1;
}

.he-what-hawk-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.he-what-visual-text {
    padding: 30px;
    text-align: center;
}

.he-what-visual h4 {
    color: var(--he-gold);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
}

.he-what-visual p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* =========================================================
   4 POINTS
=========================================================== */
.he-points {
    background: var(--he-dark);
    color: var(--he-white);
}

.he-points .he-section-title {
    color: var(--he-white);
}

.he-points .he-section-title span {
    color: var(--he-gold);
}

.he-points .he-section-sub {
    color: rgba(255,255,255,0.5);
}

.he-points-grid {
    display: flex;
    gap: 0;
}

.he-point-card {
    flex: 1;
    padding: 40px 24px;
    text-align: center;
    background: var(--he-white);
    margin: 0 10px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.he-point-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.he-point-num {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--he-red);
    line-height: 1;
    margin-bottom: 20px;
}

.he-point-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--he-text);
}

.he-point-card p {
    font-size: 13px;
    color: var(--he-text-light);
    line-height: 1.7;
}

/* =========================================================
   REAL NUMBERS
=========================================================== */
.he-numbers {
    background: var(--he-white);
}

.he-numbers-grid {
    display: flex;
    gap: 30px;
}

.he-number-card {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    border: 2px solid var(--he-light);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.he-number-card:hover {
    border-color: var(--he-red);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.he-number-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--he-red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.he-number-card:hover::before {
    transform: scaleX(1);
}

.he-number-value {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--he-red);
    line-height: 1.1;
}

.he-number-value small {
    font-size: 24px;
    color: var(--he-text);
}

.he-number-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--he-text);
    margin: 12px 0 8px;
}

.he-number-desc {
    font-size: 13px;
    color: var(--he-text-light);
}

.he-number-note {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    color: var(--he-text-light);
}

/* =========================================================
   HOW IT WORKS
=========================================================== */
.he-how {
    background: var(--he-light);
}

.he-how-steps {
    display: flex;
    counter-reset: hestep;
}

.he-how-step {
    flex: 1;
    padding: 40px 30px;
    background: var(--he-white);
    position: relative;
    counter-increment: hestep;
    border-right: 1px solid var(--he-light);
}

.he-how-step:last-child { border-right: none; }

.he-how-step::before {
    content: 'STEP ' counter(hestep);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--he-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.he-how-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--he-text);
}

.he-how-step p {
    font-size: 14px;
    color: var(--he-text-light);
    line-height: 1.8;
}

.he-how-arrow {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--he-red);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    z-index: 2;
}

/* =========================================================
   SCREENSHOTS
=========================================================== */
.he-screens {
    background: var(--he-dark);
    color: var(--he-white);
}

.he-screens .he-section-title { color: var(--he-white); }
.he-screens .he-section-title span { color: var(--he-gold); }
.he-screens .he-section-sub { color: rgba(255,255,255,0.5); }

.he-screen-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    list-style: none;
}

.he-screen-tab {
    padding: 10px 24px;
    background: var(--he-dark-3);
    color: rgba(255,255,255,0.6);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.3s;
}

.he-screen-tab.active {
    background: var(--he-red);
    color: var(--he-white);
}

.he-screen-tab:hover {
    background: var(--he-red);
    color: var(--he-white);
}

.he-screen-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--he-dark-2);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.he-screen-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--he-dark-3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.he-screen-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.he-screen-img {
    width: 100%;
    height: auto;
    display: block;
}

.he-screen-caption {
    padding: 16px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* =========================================================
   VETERAN DATA
=========================================================== */
.he-veteran {
    background: linear-gradient(135deg, var(--he-dark) 0%, var(--he-dark-2) 100%);
    color: var(--he-white);
    position: relative;
    overflow: hidden;
}

.he-veteran::before {
    content: '';
    position: absolute;
    right: -200px; top: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(193,39,45,0.1) 0%, transparent 70%);
}

.he-veteran .he-inner {
    position: relative;
    z-index: 1;
}

.he-veteran-quote {
    text-align: center;
    margin-bottom: 50px;
}

.he-veteran-quote blockquote {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--he-white);
    margin-bottom: 16px;
}

.he-veteran-quote blockquote em {
    font-style: normal;
    color: var(--he-gold);
}

.he-veteran-quote cite {
    font-style: normal;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.he-veteran-stats {
    display: flex;
    gap: 20px;
}

.he-vet-stat {
    flex: 1;
    text-align: center;
    padding: 30px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.he-vet-stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--he-gold);
    line-height: 1.2;
}

.he-vet-stat-value small {
    font-size: 18px;
}

.he-vet-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

/* =========================================================
   VIDEO
=========================================================== */
.he-video {
    background: var(--he-white);
}

.he-video-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: var(--he-dark);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.he-video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.he-play-btn {
    width: 80px; height: 80px;
    background: var(--he-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.he-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(193,39,45,0.5);
}

.he-video-wrapper video {
    width: 100%;
    display: block;
}

.he-video-info {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* =========================================================
   CTA
=========================================================== */
.he-cta {
    background: var(--he-red);
    color: var(--he-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.he-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,0,0,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,215,0,0.1) 0%, transparent 50%);
}

.he-cta-inner {
    position: relative;
    z-index: 1;
}

.he-cta h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--he-white);
}

.he-cta-subtitle {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.he-cta-launch {
    display: inline-block;
    background: var(--he-gold);
    color: var(--he-dark);
    padding: 10px 32px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.he-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.he-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 44px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.he-cta-btn-primary {
    background: var(--he-white);
    color: var(--he-red) !important;
}

.he-cta-btn-primary:hover {
    background: var(--he-gold);
    color: var(--he-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.he-cta-btn-secondary {
    background: transparent;
    color: var(--he-white) !important;
    border: 2px solid rgba(255,255,255,0.4);
}

.he-cta-btn-secondary:hover {
    border-color: var(--he-white);
    background: rgba(255,255,255,0.1);
    color: var(--he-white) !important;
}

.he-cta-tel {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.he-cta-tel a {
    color: var(--he-white) !important;
    text-decoration: none !important;
}

.he-cta-tel-note {
    font-size: 13px;
    opacity: 0.6;
}

/* =========================================================
   RESPONSIVE - Tablet
=========================================================== */
@media screen and (max-width: 768px) {
    .he-hero {
        min-height: 80vh;
    }
    
    .he-hero-number {
        font-size: 90px;
        letter-spacing: -1px;
    }
    
    .he-hero-number-unit {
        font-size: 28px;
    }
    
    .he-hero-catch {
        font-size: 28px;
    }
    
    .he-hero-desc {
        font-size: 14px;
    }
    
    .he-section-title {
        font-size: 26px;
    }
    
    .he-what-grid {
        flex-direction: column;
    }
    
    .he-points-grid {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .he-point-card {
        flex: 1 1 45%;
        margin: 0;
    }
    
    .he-numbers-grid {
        flex-direction: column;
    }
    
    .he-how-steps {
        flex-direction: column;
    }
    
    .he-how-step {
        border-right: none;
        border-bottom: 1px solid var(--he-light);
    }
    
    .he-how-arrow {
        right: 50%;
        top: auto;
        bottom: -14px;
        transform: translateX(50%) rotate(90deg);
    }
    
    .he-veteran-quote blockquote {
        font-size: 24px;
    }
    
    .he-veteran-stats {
        flex-wrap: wrap;
    }
    
    .he-vet-stat {
        flex: 1 1 45%;
    }
    
    .he-cta h2 {
        font-size: 28px;
    }
    
    .he-cta-tel {
        font-size: 32px;
    }
    
    .he-screen-tabs {
        flex-wrap: wrap;
    }
}

/* =========================================================
   RESPONSIVE - Mobile
=========================================================== */
@media screen and (max-width: 480px) {
    .he-hero {
        min-height: 85vh;
    }
    
    .he-hero-number {
        font-size: 72px;
    }
    
    .he-hero-number-unit {
        font-size: 24px;
    }
    
    .he-hero-catch {
        font-size: 24px;
    }
    
    .he-hero-cta {
        padding: 15px 36px;
        font-size: 16px;
    }
    
    .he-section {
        padding: 60px 16px;
    }
    
    .he-section-title {
        font-size: 22px;
    }
    
    .he-points-grid {
        flex-direction: column;
        gap: 12px;
    }
    
    .he-point-card {
        flex: 1 1 100%;
        margin: 0;
    }
    
    .he-point-num {
        font-size: 36px;
    }
    
    .he-number-value {
        font-size: 42px;
    }
    
    .he-veteran-stats {
        flex-direction: column;
    }
    
    .he-vet-stat {
        flex: 1 1 100%;
    }
    
    .he-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .he-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .he-screen-tab {
        padding: 8px 16px;
        font-size: 12px;
    }
}
