/* ==========================================
   NETA GROUP - TRAFIK SIGORTASI CSS
   Color Palette:
   - Primary: #1e3a5f (Dark Blue)
   - Primary Dark: #0f2744 (Navy)
   - Accent: #d4af37 (Gold)
   ========================================== */

:root {
    --primary: #1e3a5f;
    --primary-dark: #0f2744;
    --accent: #d4af37;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
}

/* Override main background */
main {
    background: transparent;
}

/* ==================== FORM SCREEN ==================== */
.form-screen {
    min-height: calc(100vh - 77px);
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0f2744 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: #d4af37;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Main Layout */
.form-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 5;
}

/* Character/Info Section */
.character-section {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Info Visual - Corporate Design */
.info-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px;
}

.info-icon-main {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 3s ease-in-out infinite;
}

.info-icon-main svg {
    width: 60px;
    height: 60px;
    color: #d4af37;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    }
}

.info-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-badge:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.info-badge svg {
    width: 20px;
    height: 20px;
    color: #d4af37;
    flex-shrink: 0;
}

/* Character Message */
.char-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 16px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
    max-width: 280px;
}

.char-message::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(255, 255, 255, 0.15);
}

.char-message p {
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 600;
    margin: 0;
}

.char-message span {
    color: #d4af37;
}

/* Form Container */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 28px 32px;
    flex: 1;
    max-width: 560px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a5f, #0f2744);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

.form-logo svg {
    width: 26px;
    height: 26px;
    color: #d4af37;
}

.form-header h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.form-header p {
    font-size: 13px;
    color: var(--gray-500);
}

/* Steps indicator */
.form-steps {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: all 0.3s;
}

.step-dot.active {
    background: #d4af37;
    width: 28px;
    border-radius: 4px;
}

.step-dot.completed {
    background: var(--success);
}

/* Form Sections */
.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title svg {
    width: 18px;
    height: 18px;
    color: #d4af37;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
    margin: 16px 0;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.form-group label .required {
    color: var(--danger);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--gray-50);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--danger);
}

.error-message {
    font-size: 11px;
    color: var(--danger);
    margin-top: 4px;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.radio-option {
    flex: 1;
    position: relative;
}

.radio-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.radio-option input:checked + label {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    color: #1e3a5f;
}

.radio-option input:checked + label svg {
    color: #d4af37;
}

.radio-option label svg {
    width: 16px;
    height: 16px;
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.checkbox-option input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #d4af37;
    cursor: pointer;
}

.checkbox-option label {
    font-size: 13px;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-option label a {
    color: #1e3a5f;
    text-decoration: underline;
}

/* Buttons */
.btn-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-secondary {
    flex: 1;
    padding: 16px;
    background: var(--gray-100);
    color: var(--gray-600);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-primary {
    flex: 2;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37 0%, #c49b2d 100%);
    color: #0f2744;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37 0%, #c49b2d 100%);
    color: #0f2744;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Privacy Note */
.privacy-note {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.privacy-note svg {
    width: 14px;
    height: 14px;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(30, 58, 95, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-box svg {
    width: 20px;
    height: 20px;
    color: #1e3a5f;
    flex-shrink: 0;
    margin-top: 1px;
}

.info-box p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Extra Info Toggle */
.extra-info-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.extra-info-toggle:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.extra-info-toggle.active {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}

.toggle-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.toggle-left svg {
    width: 18px;
    height: 18px;
    color: #d4af37;
}

.toggle-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-badge {
    padding: 4px 10px;
    background: var(--gray-200);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
}

.toggle-arrow {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    transition: transform 0.3s;
}

.extra-info-toggle.active .toggle-arrow {
    transform: rotate(180deg);
}

.extra-info-content {
    display: none;
    padding: 20px 16px;
    background: rgba(212, 175, 55, 0.03);
    border: 2px solid #d4af37;
    border-top: none;
    border-radius: 0 0 12px 12px;
    animation: slideDown 0.3s ease;
}

.extra-info-content.show {
    display: block;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== LOADING SCREEN ==================== */
.loading-screen {
    display: none;
    min-height: calc(100vh - 77px);
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0f2744 100%);
    padding: 30px 20px 100px;
}

.loading-screen.show {
    display: block;
}

/* Live Offers Section */
.live-offers-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.live-offers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.live-offers-title-main {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-offers-subtitle {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

/* Loading Footer */
.loading-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 39, 68, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 100;
}

.ai-status-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #d4af37, #c49b2d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: aiPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes aiPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.7); }
}

.ai-icon svg {
    width: 20px;
    height: 20px;
    color: #0f2744;
}

.ai-text {
    flex: 1;
    min-width: 0;
}

.ai-task {
    font-size: 13px;
    color: var(--gray-300);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.timer-box {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 8px 14px;
    flex-shrink: 0;
}

.timer-value {
    font-size: 20px;
    font-weight: 800;
    color: #d4af37;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.timer-label {
    font-size: 12px;
    color: var(--gray-400);
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: liveBlink 1s infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.offers-count {
    font-size: 16px;
    font-weight: 600;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.live-offers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    padding-bottom: 20px;
}

.live-offer {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: offerSlideIn 0.5s ease;
}

.live-offer.best {
    border: 2px solid var(--success);
    background: rgba(16, 185, 129, 0.1);
}

@keyframes offerSlideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.offer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 10px;
    color: white;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}

.offer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.offer-logo .logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a5f, #0f2744);
    font-weight: 800;
    font-size: 14px;
    color: #d4af37;
}

.offer-info {
    flex: 1;
}

.offer-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.offer-meta {
    font-size: 12px;
    color: var(--gray-400);
}

.offer-price {
    text-align: right;
}

.price-amount {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.live-offer.best .price-amount {
    color: var(--success);
}

.best-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: var(--success);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    margin-top: 4px;
}

.price-tag {
    font-size: 11px;
    color: var(--gray-400);
}

.offer-placeholder {
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
}

.offer-placeholder .spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #d4af37;
    border-radius: 50%;
    margin: 0 auto 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== RESULTS SCREEN ==================== */
.results-screen {
    display: none;
    min-height: calc(100vh - 77px);
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0f2744 100%);
}

.results-screen.show {
    display: block;
}

.success-hero {
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 24px;
    text-align: center;
    color: white;
}

.success-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d4af37, #c49b2d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-icon svg {
    width: 28px;
    height: 28px;
    color: #0f2744;
}

.success-hero h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.success-hero p {
    font-size: 14px;
    opacity: 0.9;
}

.success-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
}

.stat-label {
    font-size: 11px;
    opacity: 0.8;
}

/* Final Offers */
.final-offers {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px;
}

.ai-summary {
    background: rgba(30, 58, 95, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
}

.ai-summary-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #c49b2d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-summary-icon svg {
    width: 22px;
    height: 22px;
    color: #0f2744;
}

.ai-summary-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.ai-summary-text strong {
    color: #d4af37;
}

.final-offer-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding: 20px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
}

.final-offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.final-offer-card.best {
    border: 2px solid var(--success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), transparent);
}

.final-company {
    display: flex;
    align-items: center;
    gap: 14px;
}

.final-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    color: white;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.final-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
}

.final-logo .logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a5f, #0f2744);
    font-weight: 800;
    font-size: 14px;
    color: #d4af37;
}

.final-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.final-meta {
    font-size: 12px;
    color: var(--gray-500);
}

.final-tags {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.final-tag {
    padding: 3px 8px;
    background: var(--gray-100);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-600);
}

.final-price {
    text-align: right;
}

.final-price-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.final-offer-card.best .final-price-value {
    color: var(--success);
}

.final-price-diff {
    font-size: 11px;
    color: var(--gray-400);
}

.final-price-diff.saving {
    color: var(--success);
    font-weight: 600;
}

.final-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.final-buy-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #d4af37, #c49b2d);
    color: #0f2744;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.final-offer-card.best .final-buy-btn {
    background: linear-gradient(135deg, var(--success), #34d399);
    color: white;
}

.final-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.final-detail-btn {
    padding: 8px;
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 12px;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
}

.final-detail-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.ai-pick-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--success);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: white;
}

/* PDF Download */
.pdf-download-section {
    margin: 20px 0;
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.pdf-download-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
}

/* Buy Button Variants */
.final-buy-btn.fast-buy {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.final-buy-btn.fast-buy:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 4px 15px rgba(34,197,94,0.4);
}

.final-buy-btn.request-buy {
    background: linear-gradient(135deg, #d4af37, #c49b2d);
}

/* Responsive */
@media (max-width: 1024px) {
    .form-layout {
        flex-direction: column;
        gap: 20px;
    }

    .character-section {
        flex: none;
        order: -1;
    }

    .char-message {
        display: none;
    }

    .form-container {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .info-visual {
        padding: 20px;
    }

    .info-icon-main {
        width: 80px;
        height: 80px;
    }

    .info-icon-main svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .form-screen {
        padding: 15px;
    }

    .character-section {
        display: none;
    }

    .form-container {
        padding: 20px;
    }

    .form-header {
        margin-bottom: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
    }

    .btn-row {
        flex-direction: column;
    }

    .btn-secondary, .btn-primary {
        flex: none;
    }

    .timer-value {
        font-size: 42px;
    }

    .final-offer-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .final-company {
        flex-direction: column;
    }

    .final-price {
        text-align: center;
        padding: 12px 0;
        border-top: 1px solid var(--gray-100);
        border-bottom: 1px solid var(--gray-100);
    }

    .final-actions {
        flex-direction: row;
    }

    .final-buy-btn, .final-detail-btn {
        flex: 1;
    }

    .success-stats {
        gap: 20px;
    }
}

/* ===========================================
   CONTENT SECTIONS - INFO & TABLES
   =========================================== */

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #c49b2d);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   PRICE TABLE SECTION
   =========================================== */

.price-table-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 15px;
}

.price-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.price-table thead th {
    padding: 20px 16px;
    color: white;
    font-weight: 600;
    text-align: center;
    border-bottom: 3px solid var(--accent);
}

.price-table thead th:first-child {
    text-align: left;
    padding-left: 24px;
}

.price-table thead th small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 4px;
}

.price-table tbody tr {
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.3s;
}

.price-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody td {
    padding: 18px 16px;
    text-align: center;
    color: var(--gray-600);
}

.price-table tbody td:first-child {
    text-align: left;
    padding-left: 24px;
    font-weight: 600;
    color: var(--primary);
}

.vehicle-icon {
    margin-right: 10px;
    font-size: 18px;
}

.table-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(30, 58, 95, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.table-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent);
}

.table-note p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* ===========================================
   CITY PRICE SECTION
   =========================================== */

.city-price-section {
    padding: 80px 0;
    background: white;
}

.city-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 14px;
}

.city-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.city-table thead th {
    padding: 16px 12px;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 13px;
}

.city-table thead th:first-child {
    text-align: left;
    padding-left: 20px;
}

.city-table tbody tr {
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.city-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
}

.city-table tbody td {
    padding: 14px 12px;
    text-align: center;
    color: var(--gray-600);
    font-size: 13px;
}

.city-table tbody td:first-child {
    text-align: left;
    padding-left: 20px;
    color: var(--primary);
}

/* ===========================================
   COVERAGE SECTION
   =========================================== */

.coverage-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.coverage-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.coverage-tab {
    padding: 12px 24px;
    border: 2px solid var(--gray-200);
    background: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.3s;
}

.coverage-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.coverage-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
}

.coverage-panel {
    display: none;
}

.coverage-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.coverage-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
    transition: all 0.3s;
    position: relative;
}

.coverage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.12);
}

.coverage-card.highlight {
    border: 2px solid var(--accent);
}

.coverage-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #c49b2d);
    border-radius: 16px 16px 0 0;
}

.coverage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(30, 58, 95, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.coverage-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.coverage-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.coverage-limit {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.coverage-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

.coverage-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent), #c49b2d);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Coverage List */
.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coverage-list-item {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
}

.coverage-list-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coverage-list-icon.blue {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.15), rgba(30, 58, 95, 0.05));
}

.coverage-list-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
}

.coverage-list-icon.gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
}

.coverage-list-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.coverage-list-icon.green svg {
    color: #10b981;
}

.coverage-list-icon.gold svg {
    color: var(--accent);
}

.coverage-list-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.coverage-list-content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Discount Chart */
.discount-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
}

.discount-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.discount-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    padding: 12px 16px;
    width: var(--level);
    min-width: 200px;
    transition: transform 0.3s;
}

.discount-bar:hover {
    transform: translateX(4px);
}

.discount-bar.best {
    background: linear-gradient(90deg, var(--accent), #c49b2d);
}

.discount-bar .bar-label {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.discount-bar .bar-value {
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.discount-bar.best .bar-label,
.discount-bar.best .bar-value {
    color: var(--primary-dark);
}

.discount-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.discount-text p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.discount-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.discount-text ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-600);
}

.discount-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* ===========================================
   WHY US SECTION
   =========================================== */

.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-us-section .section-header h2 {
    color: white;
}

.why-us-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    transition: all 0.3s;
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #c49b2d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.why-us-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-dark);
}

.why-us-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.why-us-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
}

.trust-badge .badge-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-badge .badge-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================================
   FAQ SECTION
   =========================================== */

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(30, 58, 95, 0.02);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    background: white;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    padding-top: 16px;
}

/* ===========================================
   SEO CONTENT SECTION
   =========================================== */

.seo-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.seo-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    text-align: center;
}

.seo-content-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-600);
}

.seo-content-text p {
    margin-bottom: 20px;
}

.seo-content-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.seo-list li {
    position: relative;
    padding: 12px 0 12px 32px;
    color: var(--gray-600);
}

.seo-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.seo-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.seo-steps li {
    position: relative;
    padding: 16px 0 16px 50px;
    color: var(--gray-600);
    counter-increment: step;
}

.seo-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 14px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================================
   RESPONSIVE - CONTENT SECTIONS
   =========================================== */

@media (max-width: 768px) {
    .section-container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 15px;
    }

    .price-table-section,
    .city-price-section,
    .coverage-section,
    .why-us-section,
    .faq-section,
    .seo-content-section {
        padding: 50px 0;
    }

    .coverage-tabs {
        gap: 6px;
    }

    .coverage-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .discount-info {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
    }

    .discount-bar {
        min-width: 100%;
        width: 100% !important;
    }

    .why-us-grid {
        gap: 20px;
    }

    .why-us-card {
        padding: 28px;
    }

    .trust-badges {
        gap: 24px;
    }

    .trust-badge .badge-value {
        font-size: 28px;
    }

    .coverage-list-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .coverage-list-icon {
        margin: 0 auto;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px 16px;
    }

    .seo-content-wrapper h2 {
        font-size: 24px;
    }

    .seo-content-text {
        font-size: 15px;
    }

    .seo-content-text h3 {
        font-size: 20px;
    }
}
