/*
Theme Name: CAR119 폐차 전문
Theme URI: https://car119.com
Author: CAR119
Description: 전국 폐차 전문 업체 CAR119 테마
Version: 1.0
Text Domain: car119
*/

/* ===== CSS Variables ===== */
:root {
    --primary: #c0392b;
    --primary-dark: #96281b;
    --secondary: #2c3e50;
    --accent: #e67e22;
    --accent-hover: #d35400;
    --light: #f8f9fa;
    --white: #ffffff;
    --dark: #1a1a1a;
    --text: #444444;
    --text-light: #777777;
    --border: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--secondary); }
.section-title { font-size: 2rem; text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1rem; text-align: center; color: var(--text-light); margin-bottom: 3rem; }
.section-divider { width: 60px; height: 4px; background: var(--primary); margin: 1rem auto 1.5rem; border-radius: 2px; }

/* ===== Layout ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--light); }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* ===== Header ===== */
#masthead {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}
#masthead .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
    width: 45px; height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.85rem; font-weight: 900;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 1.4rem; font-weight: 900; color: var(--secondary); line-height: 1; }
.logo-name span { color: var(--primary); }
.logo-tagline { font-size: 0.65rem; color: var(--text-light); letter-spacing: 0.05em; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--secondary); transition: var(--transition); }
#primary-navigation ul { display: flex; align-items: center; gap: 5px; }
#primary-navigation ul li a { display: block; padding: 8px 14px; color: var(--text); font-weight: 500; font-size: 0.95rem; border-radius: var(--radius); transition: var(--transition); }
#primary-navigation ul li a:hover { background: var(--light); color: var(--primary); }
.header-cta { background: var(--primary) !important; color: var(--white) !important; padding: 8px 20px !important; }
.header-cta:hover { background: var(--primary-dark) !important; color: var(--white) !important; }
.header-phone { display: flex !important; align-items: center; gap: 5px; background: var(--accent) !important; color: white !important; padding: 8px 16px !important; border-radius: var(--radius); font-weight: 700 !important; font-size: 1rem !important; }
.header-phone:hover { background: var(--accent-hover) !important; color: white !important; }

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 70px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(192,57,43,0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
    display: inline-block;
    background: rgba(192,57,43,0.2);
    border: 1px solid rgba(192,57,43,0.5);
    color: #ff8a80;
    padding: 6px 16px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.hero h1 { font-size: 3.5rem; font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 1.5rem; }
.hero h1 .highlight { color: #ff6b6b; }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; line-height: 1.8; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number { display: block; font-size: 2rem; font-weight: 900; color: var(--white); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.hero-visual { position: absolute; right: -50px; bottom: -20px; font-size: 28rem; line-height: 1; opacity: 0.04; pointer-events: none; user-select: none; }

/* ===== Feature Cards ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card {
    background: var(--white); border-radius: var(--radius);
    padding: 35px 25px; text-align: center;
    box-shadow: var(--shadow); transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-bottom-color: var(--primary); }
.feature-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; font-size: 1.8rem;
    font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji","Segoe UI Symbol",sans-serif;
}
.feature-number { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: 0.5rem; }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.85rem; color: var(--text-light); }

/* ===== Process Steps ===== */
.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before {
    content: '';
    position: absolute; top: 45px; left: 10%; right: 10%;
    height: 2px; background: var(--border); z-index: 0;
}
.process-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 15px; }
.step-number {
    width: 90px; height: 90px;
    background: var(--white); border: 3px solid var(--primary); border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; transition: var(--transition);
}
.process-step:hover .step-number { background: var(--primary); }
.process-step:hover .step-num { color: var(--white); }
.process-step:hover .step-label { color: rgba(255,255,255,0.8); }
.step-num { font-size: 1.5rem; font-weight: 900; color: var(--primary); line-height: 1; transition: var(--transition); }
.step-label { font-size: 0.6rem; color: var(--text-light); letter-spacing: 0.05em; transition: var(--transition); }
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== Price Cards ===== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.price-card {
    background: var(--white); border-radius: var(--radius);
    padding: 25px; box-shadow: var(--shadow);
    transition: var(--transition); position: relative; overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.price-brand { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.price-model { font-size: 1.2rem; font-weight: 700; color: var(--secondary); margin-bottom: 1rem; }
.price-range { font-size: 1.5rem; font-weight: 900; color: var(--primary); }
.price-unit { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.5rem; }
.price-year { font-size: 0.8rem; color: var(--text-light); padding: 4px 10px; background: var(--light); border-radius: 20px; display: inline-block; }

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.review-card {
    background: var(--white); border-radius: var(--radius);
    padding: 30px; box-shadow: var(--shadow);
    position: relative; transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.review-card::before {
    content: '"';
    position: absolute; top: 10px; right: 20px;
    font-size: 5rem; color: var(--light);
    font-family: Georgia, serif; line-height: 1;
}
.review-stars { color: #f1c40f; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 3px; font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif; }
.review-text { color: var(--text); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--secondary); font-size: 0.9rem; }
.review-car { font-size: 0.8rem; color: var(--text-light); }
.review-date { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #a93226 100%);
    padding: 80px 0; text-align: center; color: white;
}
.cta-section h2 { font-size: 2.5rem; color: white; margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 2.2rem; font-weight: 900; color: white; margin: 1rem 0 2rem; }

/* ===== Forms ===== */
.form-wrap { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); max-width: 760px; margin: 0 auto; }
.form-title { font-size: 1.5rem; color: var(--secondary); margin-bottom: 0.5rem; }
.form-subtitle { color: var(--text-light); margin-bottom: 2rem; font-size: 0.9rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--secondary); }
.form-group label .required { color: var(--primary); margin-left: 3px; }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-size: 0.95rem;
    font-family: inherit; transition: var(--transition);
    background: var(--white); color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 25px; text-align: center; }
.form-privacy { font-size: 0.8rem; color: var(--text-light); margin-top: 10px; text-align: center; }
.form-success { background: #d4edda; color: #155724; padding: 25px; border-radius: var(--radius); border: 1px solid #c3e6cb; text-align: center; display: none; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-error { background: #f8d7da; color: #721c24; padding: 15px; border-radius: var(--radius); border: 1px solid #f5c6cb; margin-bottom: 15px; display: none; }

/* ===== Price Lookup ===== */
.price-lookup-wrap { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); max-width: 860px; margin: 0 auto; }
.price-selectors { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 15px; align-items: end; margin-bottom: 30px; }
.price-selectors label { font-weight: 600; font-size: 0.85rem; color: var(--secondary); margin-bottom: 6px; display: block; }
.price-selectors select { padding: 12px 15px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; font-family: inherit; width: 100%; background: var(--white); color: var(--text); transition: var(--transition); }
.price-selectors select:focus { outline: none; border-color: var(--primary); }
.price-result { display: none; background: var(--light); border-radius: var(--radius); padding: 30px; border-left: 4px solid var(--primary); }
.price-result.show { display: block; }
.price-result-main { display: flex; align-items: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
.price-result-amount { font-size: 2.5rem; font-weight: 900; color: var(--primary); }
.price-result-detail { flex: 1; }
.price-result-title { font-size: 1.3rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.5rem; }
.price-result-note { font-size: 0.85rem; color: var(--text-light); }
.price-factors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 20px; }
.price-factor { background: var(--white); border-radius: var(--radius); padding: 15px; text-align: center; box-shadow: 0 1px 5px rgba(0,0,0,0.05); }
.price-factor-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.price-factor-label { font-size: 0.75rem; color: var(--text-light); }
.price-factor-value { font-weight: 700; color: var(--secondary); font-size: 0.9rem; }
.price-cta-row { margin-top: 20px; text-align: center; }

/* ===== Process Detail ===== */
.process-detail { max-width: 900px; margin: 0 auto; }
.process-detail-step { display: flex; gap: 30px; margin-bottom: 50px; position: relative; }
.process-detail-step:not(:last-child)::after {
    content: '';
    position: absolute; left: 32px; top: 65px; bottom: -50px;
    width: 2px; background: var(--border);
}
.process-detail-num {
    flex-shrink: 0; width: 65px; height: 65px;
    background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.4rem; font-weight: 900;
}
.process-detail-content { flex: 1; padding-top: 10px; }
.process-detail-title { font-size: 1.3rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.8rem; }
.process-detail-desc { color: var(--text); line-height: 1.8; margin-bottom: 1rem; }
.process-detail-tips { background: var(--light); border-radius: var(--radius); padding: 15px 20px; }
.process-detail-tips h5 { font-size: 0.85rem; color: var(--primary); margin-bottom: 0.5rem; }
.process-detail-tips ul { padding-left: 1.5rem; font-size: 0.85rem; color: var(--text-light); }
.process-detail-tips ul li { margin-bottom: 0.3rem; list-style: disc; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question {
    padding: 18px 25px; font-weight: 600; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--white); transition: var(--transition); user-select: none;
}
.faq-question:hover { background: var(--light); }
.faq-question.active { background: var(--primary); color: white; }
.faq-toggle {
    width: 26px; height: 26px; border-radius: 50%; background: var(--light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0; transition: var(--transition);
    font-style: normal;
}
.faq-question.active .faq-toggle { background: rgba(255,255,255,0.2); color: white; transform: rotate(45deg); }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 0.9rem; color: var(--text); line-height: 1.7; }
.faq-answer.open { max-height: 500px; padding: 18px 25px; }

/* ===== Footer ===== */
#colophon { background: var(--secondary); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo-name { color: white; font-size: 1.6rem; margin-bottom: 1rem; display: block; }
.footer-brand .logo-name span { color: var(--primary); }
.footer-desc { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; color: rgba(255,255,255,0.6); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; margin-bottom: 8px; }
.footer-contact-icon { width: 30px; height: 30px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.footer-heading { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: white; }
.footer-phone-big { font-size: 1.6rem; font-weight: 900; color: white; margin-bottom: 0.5rem; }
.footer-hours { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-biz-info { display: flex; gap: 15px; flex-wrap: wrap; }

/* ===== Page Hero ===== */
.page-hero { background: linear-gradient(135deg, var(--secondary) 0%, #1a3a5c 100%); padding: 120px 0 60px; color: white; text-align: center; }
.page-hero h1 { font-size: 2.5rem; color: white; margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.8; font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: white; }

/* ===== Reviews Page ===== */
.reviews-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.review-filter { display: flex; gap: 10px; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border: 2px solid var(--border); background: white; border-radius: 20px; cursor: pointer; font-size: 0.9rem; font-family: inherit; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { border-color: var(--primary); background: var(--primary); color: white; }

/* ===== Write Review Form ===== */
.write-review-wrap { background: var(--light); border-radius: var(--radius); padding: 30px; margin-top: 3rem; }
.write-review-wrap h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--secondary); }

/* ===== Notice/Info Box ===== */
.info-box { background: #e8f4f8; border-left: 4px solid #3498db; padding: 20px 25px; border-radius: 0 var(--radius) var(--radius) 0; margin: 2rem 0; }
.info-box p { font-size: 0.9rem; color: #2c3e50; margin: 0; }

/* ===== Floating CTAs ===== */
.floating-cta { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.floating-btn {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    cursor: pointer; transition: var(--transition); text-decoration: none; border: none;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-phone { background: var(--accent); color: white; }
.floating-kakao { background: #FEE500; color: #3C1E1E; }
.floating-top { background: var(--secondary); color: white; font-size: 1rem; display: none; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid, .reviews-page-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { flex-wrap: wrap; gap: 30px; }
    .process-steps::before { display: none; }
    .process-step { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    #primary-navigation { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); box-shadow: 0 5px 20px rgba(0,0,0,0.1); padding: 20px; }
    #primary-navigation.open { display: block; }
    #primary-navigation ul { flex-direction: column; gap: 5px; }
    #primary-navigation ul li a { padding: 12px 15px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 20px; }
    .section-title { font-size: 1.6rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: 1fr; }
    .reviews-grid, .reviews-page-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .price-selectors { grid-template-columns: 1fr 1fr; }
    .price-factors { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .cta-section h2 { font-size: 1.8rem; }
    .process-step { flex: 0 0 100%; }
    .process-detail-step { flex-direction: column; }
    .process-detail-step::after { display: none; }
    .price-result-main { flex-direction: column; align-items: flex-start; gap: 10px; }
    .cta-phone { font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .section { padding: 50px 0; }
    .hero h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .price-selectors { grid-template-columns: 1fr; }
    .form-wrap, .price-lookup-wrap { padding: 25px 20px; }
    .floating-cta { bottom: 20px; right: 15px; }
    .price-factors { grid-template-columns: 1fr; }
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}
.hs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 70px;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}
.hs-slide.active {
    opacity: 1;
    z-index: 1;
}
.hs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10,12,26,0.82) 0%,
        rgba(10,12,26,0.65) 55%,
        rgba(10,12,26,0.3) 100%
    );
}
.hs-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}
.hs-badge {
    display: inline-block;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.28);
    color: rgba(255,255,255,0.95);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
}
.hs-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hs-accent { color: #ff8a80; }
.hs-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 2.4rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.hs-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 2.8rem; }
.hs-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hs-stat { text-align: center; }
.hs-stat-num { display: block; font-size: 1.9rem; font-weight: 900; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.hs-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* Prev / Next */
.hs-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.13);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.7rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(6px);
    line-height: 1;
}
.hs-btn:hover { background: rgba(255,255,255,0.28); transform: translateY(-50%) scale(1.08); }
.hs-prev { left: 28px; }
.hs-next { right: 28px; }

/* Dots */
.hs-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 10;
}
.hs-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.38);
    cursor: pointer; border: none;
    transition: all 0.35s;
    padding: 0;
}
.hs-dot.active { background: white; width: 32px; border-radius: 5px; }

/* Progress bar */
.hs-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 4px;
    background: rgba(255,255,255,0.55);
    width: 0;
    z-index: 10;
}
.hs-progress.running {
    width: 100%;
    transition: width 5s linear;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider { height: 100svh; min-height: 580px; }
    .hs-content h1 { font-size: 2.4rem; }
    .hs-content p { font-size: 1rem; }
    .hs-stats { gap: 20px; }
    .hs-stat-num { font-size: 1.5rem; }
    .hs-btn { width: 42px; height: 42px; font-size: 1.3rem; }
    .hs-prev { left: 12px; }
    .hs-next { right: 12px; }
}
@media (max-width: 480px) {
    .hs-content h1 { font-size: 1.9rem; }
    .hs-buttons { flex-direction: column; }
    .hs-stats { gap: 16px; }
}

/* ===== Hook Strip ===== */
.hook-strip {
    background: var(--secondary);
    border-top: 3px solid var(--primary);
}
.hook-strip-items {
    display: flex;
    align-items: stretch;
}
.hook-strip-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 15px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    gap: 4px;
}
.hook-strip-item:hover { background: rgba(255,255,255,0.05); }
.hook-strip-divider { width: 1px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.hook-strip-icon { font-size: 1.6rem; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.hook-strip-icon svg { width: 28px; height: 28px; color: rgba(255,255,255,0.85); stroke: rgba(255,255,255,0.85); }
.hook-strip-label { font-size: 1rem; font-weight: 800; color: #ffffff; letter-spacing: -0.01em; }
.hook-strip-desc { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ===== Hook Section ===== */
.hook-section {
    background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
    padding: 80px 0;
    border-bottom: 3px solid var(--accent);
}
.hook-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hook-eyebrow {
    display: inline-block;
    background: rgba(192,57,43,0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
}
.hook-copy h2 { font-size: 2.3rem; font-weight: 900; color: var(--secondary); line-height: 1.25; margin-bottom: 1rem; }
.hook-copy h2 span { color: var(--primary); }
.hook-lead { font-size: 1.05rem; color: var(--text); line-height: 1.7; margin-bottom: 2rem; }
.hook-benefit-list { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 16px; }
.hook-benefit-list li { display: flex; align-items: flex-start; gap: 14px; }
.hbl-icon {
    font-size: 1.4rem;
    width: 42px; height: 42px;
    background: white;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hbl-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.hook-benefit-list li div { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.hook-benefit-list li strong { font-size: 1rem; color: var(--secondary); }
.hook-benefit-list li span { font-size: 0.85rem; color: var(--text-light); }
.hook-cta-row { display: flex; gap: 15px; flex-wrap: wrap; }

/* Hook visual / stat cards */
.hook-card-wrap { display: flex; flex-direction: column; gap: 16px; }
.hook-stat-card {
    background: var(--secondary);
    border-radius: 16px;
    padding: 28px;
    color: white;
}
.hsc-live { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }
.hsc-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46,204,113,0.3);
    animation: pulse-green 1.5s ease-in-out infinite;
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46,204,113,0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(46,204,113,0.1); }
}
.hsc-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }
.hsc-item {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}
.hsc-item-accent { background: rgba(192,57,43,0.4); grid-column: 1 / -1; }
.hsc-num { display: block; font-size: 1.6rem; font-weight: 900; color: white; }
.hsc-item-accent .hsc-num { color: #ffd6d6; font-size: 1.8rem; }
.hsc-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 3px; display: block; }

.hook-recent {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
}
.hook-recent-title { font-size: 0.8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.hook-recent-items { display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.hri { font-size: 0.85rem; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--light); }
.hri:last-child { border-bottom: none; }
.hri strong { color: var(--primary); }

/* ===== Reviews Slider ===== */
.reviews-slider-section { background: #f0f2f5; }
.slider-outer { position: relative; }
.slider-viewport { overflow: hidden; margin: 0 -10px; }
.slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.slider-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    position: relative;
    text-align: center;
    transition: box-shadow 0.3s;
}
.slider-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.13); }
.slider-card::before {
    content: '"';
    position: absolute;
    top: 15px; right: 22px;
    font-size: 4.5rem; color: #f0f2f5;
    font-family: Georgia, serif; line-height: 1;
    pointer-events: none;
}
.review-photo {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 900; color: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.slider-stars { color: #f1c40f; font-size: 1rem; margin-bottom: 8px; letter-spacing: 2px; }
.slider-amount {
    display: inline-block;
    background: #fef3f2;
    color: var(--primary);
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(192,57,43,0.15);
}
.slider-amount strong { font-weight: 800; }
.slider-text { font-size: 0.88rem; line-height: 1.75; color: var(--text); margin-bottom: 20px; }
.slider-name { font-weight: 700; color: var(--secondary); font-size: 0.95rem; }
.slider-meta { font-size: 0.78rem; color: var(--text-light); margin-top: 3px; }

/* Slider prev/next buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    cursor: pointer;
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    color: var(--secondary);
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    z-index: 10;
    line-height: 1;
}
.slider-btn:hover { border-color: var(--primary); background: var(--primary); color: white; }
.slider-prev { left: -22px; }
.slider-next { right: -22px; }

/* Slider dots */
.slider-nav { display: flex; justify-content: center; margin-top: 28px; }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #d0d5dd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    flex-shrink: 0;
}
.slider-dot.active {
    background: var(--primary);
    width: 26px;
    border-radius: 5px;
}

/* ===== Responsive: New Sections ===== */
@media (max-width: 1024px) {
    .hook-section-inner { gap: 35px; }
    .hook-copy h2 { font-size: 1.9rem; }
    .slider-card { flex: 0 0 calc(50% - 20px); }
}
@media (max-width: 768px) {
    .hook-strip-items { flex-wrap: wrap; }
    .hook-strip-item { flex: 0 0 50%; }
    .hook-strip-divider { display: none; }
    .hook-section-inner { grid-template-columns: 1fr; gap: 30px; }
    .hook-copy h2 { font-size: 1.7rem; }
    .hook-visual { order: -1; }
    .hsc-items { grid-template-columns: 1fr 1fr; }
    .slider-card { flex: 0 0 calc(50% - 20px); }
    .slider-prev { left: -12px; }
    .slider-next { right: -12px; }
}
@media (max-width: 600px) {
    .hook-strip-item { flex: 0 0 100%; }
    .slider-card { flex: 0 0 calc(100% - 20px); }
    .hook-cta-row { flex-direction: column; }
    .slider-prev { left: 0; }
    .slider-next { right: 0; }
}
