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

:root {
    /* Color Palette - Luxury Dark Theme (SVT Group Style) */
    --bg-color: #0b0b0c;
    --text-color: #ffffff;
    --text-muted: #8e8e93;
    
    /* Warm Luxury Bronze/Gold Accent */
    --primary: #c5a880; 
    --primary-hover: #b3946b;
    --primary-glow: rgba(197, 168, 128, 0.15);
    
    /* Secondary elegant color */
    --secondary: #3a3a3c;
    --secondary-hover: #48484a;
    
    /* Elegant Thin Borders and Cards */
    --panel-bg: rgba(255, 255, 255, 0.02);
    --panel-border: rgba(255, 255, 255, 0.06);
    --panel-hover-bg: rgba(255, 255, 255, 0.04);
    --panel-hover-border: rgba(255, 255, 255, 0.12);
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 4px; /* Sharp corners for modern VIP look */
    --transition-speed: 0.25s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

body {
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Containers */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    width: 100%;
    padding: 16px 0;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--panel-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-color);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: rgba(197, 168, 128, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}
 
.logo-subtitle {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 2px;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 36px;
}

.work-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.02);
    padding: 6px 14px;
    border-radius: var(--border-radius);
    border: 1px solid var(--panel-border);
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #27ae60;
    border-radius: 50%;
    box-shadow: 0 0 10px #27ae60;
    animation: flash 2s infinite;
}

.header-phone-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-phone {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color var(--transition-speed);
}
 
.header-phone:hover {
    color: var(--primary);
}

.header-phone-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 140px 0 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(11, 11, 12, 0.5) 0%, rgba(11, 11, 12, 0.8) 100%), url('commissioner_car.png');
    background-size: cover;
    background-position: center center;
    border-bottom: 1px solid var(--panel-border);
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -250px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(197,168,128,0.03) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-badge {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(197, 168, 128, 0.04);
    padding: 4px 12px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    color: #ffffff;
}
 
.hero-content h1 span {
    color: var(--primary);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    font-weight: 400;
}

.hero-desc {
    font-size: 18px;
    color: #e5e5ea;
    margin-bottom: 36px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
    align-items: flex-start;
    max-width: 480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bullet-icon {
    width: 20px;
    height: 20px;
    background: rgba(197, 168, 128, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    border: 1px solid rgba(197, 168, 128, 0.15);
}
 
.bullet-text {
    font-size: 14px;
    font-weight: 400;
    color: #f3f4f6;
    letter-spacing: 0.3px;
}

/* Big Emergency CTA Button */
.cta-box {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 380px;
    padding: 14px 28px;
    background: var(--primary);
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed), opacity var(--transition-speed);
    border: none;
    cursor: pointer;
}
 
.btn-emergency svg {
    width: 16px;
    height: 16px;
    fill: #000000;
}
 
.btn-emergency:hover {
    background-color: var(--primary-hover);
    opacity: 0.95;
}
 
.btn-emergency:active {
    transform: translateY(0.5px);
}

/* Call Status indicator */
.call-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #d1d1d6;
    margin-top: 20px;
    font-weight: 400;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #27ae60;
    border-radius: 50%;
    box-shadow: 0 0 6px #27ae60;
    animation: flash 1.5s infinite;
}

/* Premium Image Block (Hero Right) */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--panel-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    aspect-ratio: 1/1;
    width: 100%;
    max-height: 480px;
    background: radial-gradient(circle at 70% 30%, rgba(197, 168, 128, 0.05) 0%, rgba(9, 11, 16, 1) 70%), linear-gradient(135deg, #161618 0%, #0b0b0c 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 10s ease;
}

.hero-image-card:hover .hero-image {
    transform: scale(1.03);
}

/* Intents Section (Dark Theme) */
.intents {
    padding: 80px 0;
    background: var(--bg-color);
}
.intents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.intent-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform var(--transition-speed), border-color var(--transition-speed), background var(--transition-speed);
}
.intent-card:hover {
    transform: translateY(-2px);
    border-color: var(--panel-hover-border);
    background: var(--panel-hover-bg);
}
.intent-icon {
    width: 32px;
    height: 32px;
    background: rgba(197, 168, 128, 0.08);
    color: var(--primary);
    border: 1px solid rgba(197, 168, 128, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.intent-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.intent-content h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-color);
    letter-spacing: 0.5px;
}
.intent-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
}

/* Process Section (Dark Theme) */
.process {
    padding: 80px 0;
    background: var(--panel-bg);
    border-top: 1px solid var(--panel-border);
    border-bottom: 1px solid var(--panel-border);
}
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 48px;
    gap: 16px;
}
.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.process-step-num {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 18px;
    font-weight: 300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.process-step h4 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-color);
    letter-spacing: 0.5px;
}
.process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 200px;
    font-weight: 300;
}
.process-step-arrow {
    display: flex;
    align-items: center;
    height: 50px;
    color: var(--panel-border);
}
.process-step-arrow svg {
    width: 24px;
    height: 24px;
}

/* Prices Section (Single Offer Banner) */
.prices {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(255,255,255,0.01) 50%, var(--bg-color) 100%);
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 56px auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.price-single-banner {
    background: linear-gradient(135deg, rgba(11, 11, 12, 0.95) 0%, rgba(11, 11, 12, 0.85) 100%), url('highway_light_trails.png');
    background-size: cover;
    background-position: center center;
    border: 1px solid var(--panel-border);
    border-radius: var(--border-radius);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.price-banner-badge {
    font-size: 11px;
    font-weight: 800;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.price-single-banner h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.price-single-banner p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300;
}

.price-banner-details {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.price-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-val {
    font-size: 22px;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.price-banner-cta {
    background: rgba(11, 11, 12, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-cta-heading {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-banner-cta p {
    font-size: 13px;
    margin-bottom: 24px;
    font-weight: 300;
    color: var(--text-muted);
}

.btn-banner-call {
    max-width: 100%;
    font-size: 13px;
    padding: 14px 28px;
}

/* Steps (Memo) Section */
.steps {
    padding: 100px 0;
}

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

.step-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: border-color var(--transition-speed), background-color var(--transition-speed);
}
 
.step-card:hover {
    border-color: var(--panel-hover-border);
    background-color: var(--panel-hover-bg);
}

.step-num {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary);
    display: block;
    margin-bottom: 16px;
    font-family: inherit;
    line-height: 1;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(11, 11, 12, 0.98) 0%, rgba(11, 11, 12, 0.95) 100%), url('highway_light_trails.png');
    background-size: cover;
    background-position: center center;
    border-top: 1px solid var(--panel-border);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--panel-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: border-color var(--transition-speed), background-color var(--transition-speed);
}

.faq-item:hover {
    border-color: var(--panel-hover-border);
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.faq-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-speed);
    position: relative;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1.5px;
    background-color: #ffffff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
}

.faq-answer-inner {
    padding: 0 24px 20px 24px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* Active FAQ State */
.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background-color: var(--primary);
}

/* Footer */
.footer {
    background: #0b0b0c;
    color: #f3f4f6;
    border-top: 1px solid var(--panel-border);
    padding: 60px 0 30px 0;
}
.footer-col h4 {
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-about p {
    color: var(--text-muted);
    font-weight: 300;
}
.footer-contact-phone {
    color: #ffffff;
    font-weight: 400;
}
.footer-links a {
    color: var(--text-muted);
    font-weight: 300;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #9ca3af;
}
.footer-legal-links a {
    color: #9ca3af;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-about p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-phone {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
    text-decoration: none;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes flash {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 159, 10, 0.4);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(255, 159, 10, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 159, 10, 0);
    }
}

/* Promo Section (Dark Theme) */
.promo-block {
    padding: 80px 0;
    background: var(--bg-color);
    border-bottom: 1px solid var(--panel-border);
}
.promo-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.promo-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.promo-image-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--panel-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    aspect-ratio: 4/3;
    width: 100%;
    max-height: 360px;
    background: linear-gradient(135deg, #161618 0%, #0b0b0c 100%);
}
.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-speed);
}
.promo-image-card:hover .promo-image {
    transform: scale(1.02);
}
.promo-content h2 {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.promo-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        padding: 80px 0; /* More height to see the gorgeous background cars */
        background: linear-gradient(180deg, rgba(11, 11, 12, 0.7) 0%, rgba(11, 11, 12, 0.9) 100%), url('commissioner_car.png');
        background-position: center center;
        background-size: cover;
        min-height: auto;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
    }
    .hero-desc {
        max-width: 100%;
        font-size: 16px;
        margin-bottom: 24px;
    }
    .hero-bullets {
        margin-bottom: 32px;
    }
    .intents, .process, .prices, .steps, .faq, .promo-block {
        padding: 48px 0; /* Reduce vertical padding significantly to close gaps */
    }
    .section-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 36px;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 32px;
    }
    .process-step {
        width: 100%;
        max-width: 280px;
    }
    .process-step-arrow {
        transform: rotate(90deg);
        height: auto;
        margin: 12px 0;
        justify-content: center;
    }
    .price-single-banner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px;
    }
    .price-banner-cta {
        padding: 24px;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .promo-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header-info {
        display: none; /* Hide worktime top bar on mobile */
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .modal-content {
        margin: 30px auto;
        padding: 24px 16px;
        width: 92%;
    }
    .privacy-text {
        max-height: 60vh;
        padding-right: 8px;
        font-size: 12px;
    }
    .close-modal {
        font-size: 28px;
        margin-top: -6px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    .btn-emergency {
        font-size: 11px; /* Smaller font on mobile to prevent ugly wrapping */
        padding: 12px 16px;
        letter-spacing: 1px;
        max-width: 100%;
        gap: 8px;
    }
    .btn-emergency svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    .section-title {
        font-size: 22px;
    }
    .price-banner-details {
        flex-direction: column;
        gap: 16px;
    }
    .price-detail-item .detail-val {
        font-size: 20px;
    }
}

/* Modal Window (Privacy Policy) */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.modal-content {
    background: #111112;
    border: 1px solid var(--panel-border);
    margin: 8% auto;
    padding: 40px;
    width: 90%;
    max-width: 700px;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--text-muted);
    float: right;
    font-size: 32px;
    font-weight: 200;
    cursor: pointer;
    line-height: 0.8;
    transition: color var(--transition-speed);
    margin-top: -10px;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-body h2 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.modal-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-text {
    font-size: 13px;
    color: #d1d1d6;
    line-height: 1.7;
    max-height: 450px;
    overflow-y: auto;
    padding-right: 16px;
    text-align: left;
}

.privacy-text::-webkit-scrollbar {
    width: 6px;
}
.privacy-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}
.privacy-text::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}
.privacy-text::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.privacy-text h3 {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 24px 0 12px 0;
    letter-spacing: 0.5px;
}

.privacy-text p {
    margin-bottom: 12px;
    font-weight: 300;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -180px; /* Hidden offscreen initially */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 600px;
    background: rgba(17, 17, 18, 0.85);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    padding: 16px 24px;
    z-index: 9999;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.cookie-banner.show {
    bottom: 24px;
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content span {
    font-size: 13px;
    color: #d1d1d6;
    line-height: 1.5;
    font-weight: 300;
}

.cookie-content span a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-speed);
    font-weight: 400;
}

.cookie-content span a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.btn-cookie {
    background-color: var(--primary);
    color: #0b0b0c;
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cookie:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-cookie:active {
    transform: translateY(0);
}

/* Responsive Cookie Banner */
@media (max-width: 600px) {
    .cookie-banner {
        bottom: -250px;
        width: calc(100% - 24px);
        padding: 16px;
    }
    
    .cookie-banner.show {
        bottom: 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        text-align: center;
    }
    
    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}


