:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --primary: #f59e0b;
    /* Amber 500 */
    --primary-hover: #d97706;
    --secondary: #3b82f6;
    /* Blue 500 */
    --text-main: #ffffff;
    --text-dim: #9ca3af;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

button {
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-info-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.role-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--primary);
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.user-email {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.btn-outline {
    border: 1px solid var(--glass-border) !important;
    color: var(--text-main) !important;
    background: #111 !important;
}

.btn-outline:hover {
    background: var(--bg-card);
}

.btn-secondary {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section & Subpage Hero */
.hero,
.sub-hero {
    padding: 12rem 0 8rem;
    position: relative;
}

.sub-hero {
    padding: 8rem 0 4rem;
}

.hero-bg,
.sub-hero-bg {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

h1,
h2.sub-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
}

h2.sub-title {
    font-size: 3rem;
}

h1 span,
h2.sub-title span {
    display: block;
    background: linear-gradient(90deg, #fff, var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Visual Components */
.hero-visual {
    position: relative;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.floating-badge {
    position: absolute;
    top: 2rem;
    right: -1rem;
    background: rgba(10, 10, 10, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--glass-border);
}

.pulse {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--primary);
    color: #000;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-info .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-info .value {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Services */
.services {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #111);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dim);
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid div {
    direction: ltr;
}

.step-list {
    list-style: none;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-num {
    background: var(--primary);
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-dim);
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: var(--primary);
    background: rgba(245, 158, 11, 0.03);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    margin: 2rem 0;
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-dim);
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.price-features li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    color: var(--text-dim);
}

.price-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 800;
}

footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-dim);
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 6rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.75rem;
}

.link-group a {
    text-decoration: none;
    color: var(--text-dim);
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--text-main);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* ===== STATS ===== */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(to right, rgba(245, 158, 11, 0.05), rgba(59, 130, 246, 0.05));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-dim);
}

/* ===== AUCTION ADVANTAGE ===== */
.auction-advantage {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #111, var(--bg-dark));
}

.auction-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.auction-text .sub-title {
    margin-top: 1.5rem;
}

.auction-text>p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.advantage-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.adv-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.advantage-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Auction Card */
.auction-card {
    padding: 2rem;
}

.auction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.auction-tag {
    background: rgba(245, 158, 11, 0.15);
    color: var(--primary);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.auction-route {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.auction-bid-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.bid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.bid-item.bid-winner {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.4);
}

.bid-driver {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.driver-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #e97316);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bid-driver strong {
    display: block;
    font-size: 0.95rem;
}

.stars {
    font-size: 0.78rem;
    color: var(--primary);
}

.bid-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dim);
}

.winner-amount {
    color: var(--primary) !important;
}

.savings-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    color: #10b981;
    text-align: center;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #111);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
}

.step-circle {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), #e97316);
    color: #000;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* ===== SERVICES (extended to 6 cards) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ===== COST CALCULATOR ===== */
.calculator-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, rgba(245, 158, 11, 0.04) 100%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3rem;
    margin-top: 3rem;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-group label:first-child {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
    transition: box-shadow 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.2);
}

.range-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    min-width: 70px;
    text-align: right;
}

select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

select:focus {
    border-color: var(--primary);
}

select option {
    background: #1a1a1a;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-dim);
    font-size: 0.95rem;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* Result Panel */
.calc-result {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-header {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--glass-border);
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.5rem 1rem;
    border-radius: 16px;
}

.market-price {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
}

.auction-price {
    background: rgba(245, 158, 11, 0.07);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.price-col-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-dim);
}

.price-col-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.price-col-value.highlight {
    color: var(--primary);
    font-size: 2.4rem;
}

.market-price .price-col-value {
    text-decoration: line-through;
    color: var(--text-dim);
}

.price-col-note {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.price-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-dim);
}

.savings-display {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.savings-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.savings-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.2rem;
}

.savings-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #10b981;
}

.savings-pct {
    margin-left: auto;
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
}

.calc-disclaimer {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-style: italic;
    line-height: 1.5;
}

.btn-block {
    width: 100%;
    text-align: center;
    display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #111);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
    opacity: 0.4;
}

.testimonial-card p {
    color: var(--text-dim);
    font-size: 0.98rem;
    line-height: 1.7;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #7c3aed);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.testimonial-stars {
    margin-left: auto;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(59, 130, 246, 0.06) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--text-dim);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .auction-grid {
        grid-template-columns: 1fr;
    }

    .steps-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .price-comparison {
        flex-direction: column;
    }

    .price-col {
        width: 100%;
    }
}