@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

:root {
    --primary-color: #1e3a8a; /* Blue 900 */
    --primary-light: #3b82f6; /* Blue 500 */
    --accent-color: #2563eb; /* Blue 600 */
    --accent-hover: #1d4ed8; /* Blue 700 */
    --text-color: #1e293b; /* Slate 800 */
    --text-light: #64748b; /* Slate 500 */
    --bg-color: #f8fafc; /* Slate 50 */
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --border-color: #cbd5e1;
    --transition: all 0.3s ease;
    --card-radius: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

/* Sections */
.section {
    padding: 100px 0; /* More breathing room */
}

/* ... (Keep existing header/hero styles, but maybe update radius) ... */

/* Comparison Cards */
.comparison-card {
    border-radius: var(--card-radius);
    padding: 50px;
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Bento Grid for Strengths */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
}

.strength-card {
    padding: 40px;
    border-radius: var(--card-radius);
    background: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    text-align: left; /* Align left for modern look */
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

/* Bento Spans */
.strength-card:nth-child(1) { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%); }
.strength-card:nth-child(2) { grid-column: span 1; }
.strength-card:nth-child(3) { grid-column: span 1; }
.strength-card:nth-child(4) { grid-column: span 2; }
.strength-card:nth-child(5) { grid-column: span 2; background: #1e3a8a; color: white; }

.strength-card:nth-child(5) h3, 
.strength-card:nth-child(5) p { color: white; }
.strength-card:nth-child(5) .strength-icon { background: rgba(255,255,255,0.2); color: white; }

.strength-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.strength-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 16px;
    color: var(--primary-color);
}

.strength-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    min-height: 3.6rem;
    line-height: 1.8rem;
    display: flex;
    align-items: center;
}

/* Price Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Price Cards */
.price-card {
    border-radius: var(--card-radius);
    border: none;
    box-shadow: var(--shadow-md);
    background: var(--white);
    overflow: hidden; /* Ensure image doesn't overflow */
    display: flex;
    flex-direction: column;
}

.price-img-box {
    height: 240px; /* Taller images */
}

.price-badge {
    border-radius: 12px;
    padding: 8px 16px;
}

/* Review Cards */
.review-card {
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

/* FAQ */
.faq-item {
    border-radius: 16px;
}

@media (max-width: 768px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    .price-grid {
        grid-template-columns: 1fr;
    }
    .strength-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    word-break: keep-all;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        padding: 0;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
}

.text-primary { color: var(--accent-color); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
    background-color: var(--gray-100);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.header-cta {
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: url('img/main.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    padding-top: 20px;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgb(0 0 0 / 22%);
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: #ffffff;
    text-shadow: 0 0 20px var(--accent-hover);
}

.hero-description {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 500px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    font-weight: 500;
}

.hero-features {
    display: flex;
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(15, 23, 42, 0.85); /* Darker background */
    backdrop-filter: blur(10px);
    padding: 25px 15px;
    border-radius: 16px;
    width: 140px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(255,255,255,0.3);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Hero Form */
.hero-form-wrapper {
    flex: 0 0 400px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 25px 10px rgb(37 99 235); /* Stronger Blue Neon Glow */
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.form-box {
    padding: 46px;
}

/* Responsive Visibility */
.mobile-form-title {
    display: none !important;
}

.pc-form-title {
    display: block;
}

.form-title.pc-form-title {
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
}

.form-title.pc-form-title .title-sub {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #002ad4 0%, #000000 100%);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 60, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.form-title.pc-form-title .title-sub::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.form-title.pc-form-title .title-main {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}

.form-title.vertical-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.vertical-title .line {
    font-family: 'Paperozi', sans-serif;
    font-size: 7.2rem;
    font-weight: 100; /* Thin for top lines */
    line-height: 1;
    color: var(--primary-color);
    letter-spacing: -2px;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
}

.vertical-title .text-highlight {
    font-weight: 900; /* Bold for bottom line */
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    z-index: 1;
    position: relative;
}

.title-car-bottom {
    width: 325px; /* Much larger */
    height: auto;
    margin-top: -10px; /* Overlap slightly with text */
    margin-bottom: 10px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    z-index: 2;
    position: relative;
}

/* Old styles kept for safety or removed if unused. Overriding .title-main/sub not needed as classes changed */

.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 14px;
    border: 1px solid #bfdbfe; /* Light Blue Border */
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.15); /* Soft Blue Shadow */
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3); /* Stronger Blue Glow on Focus */
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.link-sm {
    color: var(--text-light);
    text-decoration: underline;
    font-size: 0.8rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Comparison */
.comparison {
    background-color: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Comparison Cards */
.comparison-card {
    border-radius: var(--card-radius);
    padding: 50px;
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.comparison-card.domestic {
    background-color: var(--gray-100);
}

.comparison-card.export {
    background-color: var(--white);
    border: 2px solid var(--accent-color);
    position: relative;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

/* ... (Keep card header/list styles) ... */

/* Bento Grid for Strengths */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, minmax(auto, 1fr));
    gap: 24px;
    align-items: stretch;
}

.strength-card {
    padding: 40px;
    border-radius: var(--card-radius);
    background: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.strength-card > div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.strength-card p {
    flex: 1;
    min-height: 0;
    margin: 0;
    display: block;
}

/* Bento Spans */
.strength-card:nth-child(1) { grid-column: span 2; background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%); }
.strength-card:nth-child(2) { grid-column: span 1; }
.strength-card:nth-child(3) { grid-column: span 1; }
.strength-card:nth-child(4) { grid-column: 3 / span 2; grid-row: 2; }
.strength-card:nth-child(5) { grid-column: 1 / span 2; grid-row: 2; background: #1e3a8a; color: white; }

.strength-card:nth-child(5) h3, 
.strength-card:nth-child(5) p { color: white; }
.strength-card:nth-child(5) .strength-icon { background: rgba(255,255,255,0.2); color: white; }

.strength-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.strength-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 16px;
    color: var(--primary-color);
}

.strength-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    min-height: 3.6rem;
    line-height: 1.8rem;
    display: flex;
    align-items: center;
}

/* Responsive Bento */
@media (max-width: 1024px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .strength-card:nth-child(1) { grid-column: span 2; }
    .strength-card:nth-child(4) { grid-column: span 1; }
    .strength-card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 768px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    .strength-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

/* Popular Models Section */
.popular-models {
    background-color: #f8fafc;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.model-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.model-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFD400;
    color: #1e3a8a;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.model-image {
    height: 180px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: #94a3b8;
    opacity: 0.5;
}

.car-img{
    max-width : 100%;
    overflow: hidden;
    
}
.model-info {
    padding: 25px;
    text-align: center;
}

.model-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-color);
}

.model-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
}

/* Global Network Section */
.global-network {
    background: #1e293b;
    color: white;
    overflow: hidden;
}

.global-network .section-title,
.global-network .section-subtitle {
    color: white;
}

.global-network .section-subtitle {
    opacity: 0.8;
}

.network-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.map-container {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.world-map {
    width: 100%;
    height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg'); /* Placeholder Map */
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: invert(1);
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #FFD400;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFD400;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.7); }
    70% { transform: scale(1.5); box-shadow: 0 0 0 10px rgba(255, 212, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 212, 0, 0); }
}

/* Approximate positions for demo */
.point-1 { top: 40%; left: 53%; } /* Libya */
.point-2 { top: 42%; left: 55%; } /* Egypt */
.point-3 { top: 75%; left: 28%; } /* Chile */
.point-4 { top: 40%; left: 57%; } /* Jordan */
.point-5 { top: 48%; left: 28%; } /* Dominican */
.point-6 { top: 35%; left: 60%; } /* Azerbaijan */

.country-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.country-group {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    min-width: 200px;
    border: 1px solid rgba(255,255,255,0.1);
}

.country-group h3 {
    color: #FFD400;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.country-group ul {
    list-style: none;
    padding: 0;
}

.country-group li {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .country-list {
        flex-direction: column;
        gap: 20px;
    }
    .country-group {
        width: 100%;
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.comparison-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 25px;
}

.comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-light);
}

.comparison-card.export .comparison-list li::before {
    color: var(--accent-color);
}

.sub-text {
    font-size: 0.9rem;
    color: #2563eb;
}

.highlight-text {
    font-weight: 700;
    color: #2563eb;
}

.comparison-footer {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Cases */
.cases {
    background-color: #f1f5f9;
}

.cases-table-wrapper {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    overflow-x: auto;
}

.cases-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cases-table th,
.cases-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.cases-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
}

/* Mobile Responsive Table */
@media (max-width: 768px) {
    .cases-table-wrapper {
        background: transparent;
        box-shadow: none;
        overflow-x: visible;
    }

    .cases-table {
        min-width: auto;
        display: block;
    }

    .cases-table thead {
        display: none;
    }

    .cases-table tbody {
        display: block;
    }

    .cases-table tr {
        display: block;
        background: var(--white);
        border-radius: 16px;
        margin-bottom: 20px;
        box-shadow: var(--shadow-sm);
        padding: 20px;
        border: 1px solid var(--gray-200);
    }

    .cases-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        text-align: right;
        border-bottom: 1px solid var(--gray-100);
    }

    .cases-table td:last-child {
        border-bottom: none;
    }

    .cases-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-light);
        margin-right: 20px;
        text-align: left;
    }
}

.cases-table td {
    font-weight: 500;
}

.cases-table td.profit {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
}

.cases-more {
    text-align: center;
}

/* Strengths */
.strengths {
    background-color: var(--white);
}

/* Process */
.process {
    background-color: var(--primary-color);
    color: var(--white);
}

.process .section-title,
.process .section-subtitle {
    color: var(--white);
}

.process .section-subtitle {
    opacity: 0.8;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.step-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Reviews */
.reviews {
    background-color: var(--white);
}

.rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 16px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviewer {
    font-weight: 700;
}

.review-text {
    color: var(--text-color);
    font-style: italic;
}

/* FAQ */
.faq {
    background-color: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 400;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--gray-100);
}

.faq-answer p {
    padding: 20px;
    color: var(--text-color);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Bottom CTA */
/* Bottom CTA */
.bottom-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%); /* Vibrant Blue Gradient */
    color: var(--white);
    text-align: center;
    padding: 140px 0; /* Much more vertical space */
}

.bottom-cta .section-title {
    color: var(--white);
    font-size: 2.2rem; /* Huge title */
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bottom-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-size: 1.4rem; /* Larger subtitle */
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Gap between Row 1 and Row 2 */
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.form-row-top {
    display: flex;
    width: 100%;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap; /* Prevent wrapping on PC */
}

.form-row-bottom {
    display: flex;
    width: 100%;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.form-label {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0; /* Prevent label from shrinking */
}

.inline-form .form-group {
    margin-bottom: 0;
}

.inline-form .car-input {
    flex: 1; /* Flexible width */
    min-width: 200px;
}

.inline-form .phone-group-wrapper {
    flex: 0 0 auto; /* Prevent shrinking */
}

.phone-group {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.inline-form .form-input {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 60px;
    font-size: 1.1rem;
    border-radius: 12px;
    width: 100%;
}

.inline-form .checkbox-group {
    flex: 0 0 auto;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    white-space: nowrap;
}

.inline-form .btn-primary {
    background-color: #FFD400;
    color: #1e3a8a;
    font-weight: 900;
    font-size: 1.5rem;
    padding: 0 60px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 12px;
    width: auto;
    min-width: 300px;
}

.inline-form .btn-primary:hover {
    background-color: #ffea00;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background-color: #020617;
    color: #94a3b8;
    padding: 60px 0 30px;
    font-size: 0.9rem;
}

.footer-container {
    text-align: center;
}

.footer-logo {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 10px;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: var(--white);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 998;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-container {
        flex-direction: column;
        padding: 0;
        max-width: 100%;
        margin: 0;
    }

    /* Hide Hero Content on Mobile */
    .hero-content {
        display: none;
    }

    /* Toggle Form Titles */
    .mobile-form-title {
        display: flex !important;
    }
    .pc-form-title {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        margin: 0 auto 30px;
    }

    .hero-features {
        justify-content: center;
    }

    /* Mobile Design Overhaul */
    .hero {
        background: #ffffff !important; /* White background for mobile */
        padding-top: 90px;
        padding-bottom: 30px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 100%;
        flex: none;
        background: linear-gradient(180deg, #2563eb 0%, #0047b3 100%); /* Blue Gradient for depth */
        border: none;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 71, 179, 0.4);
        margin: 0;
    }

    .form-box {
        padding: 30px 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .vertical-title {
        margin-bottom: 20px;
        overflow: hidden;
    }

    .vertical-title .line {
        font-size: clamp(60px, 18vw, 120px);
        line-height: 0.9;
        color: #ffffff; /* White text */
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .vertical-title .text-highlight {
        color: #ffffff; /* White highlight */
        text-shadow: none;
    }

    .title-car-bottom {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin-top: -10px;
        margin-bottom: 10px;
    }

    /* Mobile Form Text Colors */
    .form-check, 
    .form-note, 
    .link-sm,
    .form-title.pc-form-title .title-sub {
        color: rgba(255, 255, 255, 0.9);
    }

    .link-sm {
        text-decoration-color: rgba(255, 255, 255, 0.5);
    }

    /* Mobile Form Button High Contrast */
    .hero-form-wrapper .btn-primary {
        background-color: #FFD400; /* Vibrant Yellow for contrast */
        color: #1e3a8a; /* Dark Blue text */
        font-weight: 900;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        border: none;
    }

    .hero-form-wrapper .btn-primary:hover {
        background-color: #ffea00;
        transform: translateY(-2px);
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .bottom-cta {
        padding: 80px 20px;
    }

    .bottom-cta .section-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .bottom-cta .section-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .inline-form {
        flex-direction: column;
        padding: 0;
        width: 100%;
    }

    .form-row-top {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        width: 100%;
    }

    .form-row-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        width: 100%;
    }

    .form-label {
        font-size: 1rem;
        margin-bottom: 5px;
        text-align: left;
    }

    .inline-form .form-group {
        width: 100%;
        margin-bottom: 0;
    }

    .inline-form .car-input {
        width: 100%;
        min-width: auto;
    }

    .inline-form .phone-group-wrapper {
        width: 100%;
    }

    .phone-group {
        width: 100%;
    }

    .phone-part {
        flex: 1;
        min-width: 0;
    }

    .inline-form .form-input {
        width: 100%;
        font-size: 16px; /* iOS 줌 방지 */
        max-width: 100%;
        box-sizing: border-box;
    }

    .inline-form .checkbox-group {
        width: 100%;
        justify-content: flex-start;
    }

    .inline-form .btn-primary {
        width: 100%;
        min-width: auto;
        padding: 0 20px;
        font-size: 1.2rem;
        height: 60px;
    }

    .phone-group {
        width: 100%;
        max-width: 100%;
    }

    .phone-part {
        flex: 1;
        min-width: 0;
    }


    .sticky-cta {
        display: block; /* Always show on mobile/tablet or control via JS */
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 15px;
        background: var(--accent-hover);
        backdrop-filter: blur(10px);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        border-top: 1px solid var(--gray-200);
        transform: translateY(100%); /* Hidden by default */
        transition: transform 0.3s ease-in-out;
    }

    .sticky-cta.active {
        transform: translateY(0);
    }

    .sticky-form {
        display: flex;
        gap: 10px;
        align-items: stretch;
    }

    .sticky-inputs-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
    }

    .sticky-phone-group {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .sticky-input {
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        font-size: 0.9rem;
        background: var(--white);
        height: 40px;
        padding: 0 10px;
    }

    .sticky-input.name-input {
        width: 100%;
    }

    .sticky-input.phone-part {
        width: 100%; /* Flex will distribute */
        flex: 1;
        text-align: center;
        padding: 0 5px;
    }

    .sticky-btn {
        width: 80px;
        padding: 0;
        font-size: 1rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.3;
        border-radius: 8px;
    }

    .footer {
        padding-bottom: 130px; /* Increased space for taller sticky form */
    }
    .floating-inquiry {
        display: none;
    }

    .sticky-cta .dash {
        color: var(--white);
    }
}


/* Visual Price Comparison */
.price-comparison {
    background-color: #f8fafc;
    border-color: var(--accent-color);
}

.price-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.price-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.price-card:hover .price-img {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.price-info {
    padding: 25px;
}

.car-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.price-row:last-of-type {
    border-bottom: none;
}

.price-row .label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.price-row .value {
    font-weight: 700;
    font-size: 1.1rem;
}

.price-row.domestic .value {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1rem;
}

.price-row.export .value {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.price-diff {
    margin-top: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* Phone Group */
.phone-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-part {
    text-align: center;
    padding: 14px 5px;
}

.dash {
    color: var(--text-light);
    font-weight: 700;
}

/* Floating Inquiry */
.floating-inquiry {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
}
.floating-btn .icon {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.floating-btn .text {
    font-size: 0.7rem;
    font-weight: 700;
}

.floating-form-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 20px;
    display: none;
    animation: slideUp 0.3s ease;
    border: 1px solid var(--gray-200);
}

.floating-form-container.active {
    display: block;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.floating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.floating-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.close-btn:hover {
    color: var(--text-color);
}

