/* ===================================
   Clean Care Solutions - Main Styles
   =================================== */

:root {
    --primary-color: #2563eb;
    --secondary-color: #60a5fa;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-hover: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #333333;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gradient-1: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    --gradient-2: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   Buttons
   =================================== */

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-google {
    width: 100%;
    padding: 0.875rem;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background: #f8f8f8;
    box-shadow: var(--shadow-sm);
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===================================
   Hero Section with Video
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: float 3s ease-in-out infinite;
}

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

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

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

/* ===================================
   Sections
   =================================== */

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services, .how-it-works, .pricing {
    padding: 5rem 0;
}

/* Features Grid (Home Page) */
.features {
    padding: 5rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-card);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.feature-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

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

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.price {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

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

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-tag span {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    text-align: center;
    background: var(--gradient-1);
}

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

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* ===================================
   Authentication Pages
   =================================== */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.auth-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.bubble-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

.auth-card {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.auth-logo h2 {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.auth-card h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--dark-bg);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group small {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 1rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--border-color);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background: var(--dark-card);
    padding: 0 1rem;
    color: var(--text-secondary);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ===================================
   Dashboard
   =================================== */

.dashboard-body {
    background: var(--dark-bg);
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: var(--dark-card);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-logo {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-item:hover {
    background: var(--dark-hover);
    color: var(--text-primary);
}

.nav-item.active {
    background: var(--dark-hover);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.nav-item .icon {
    font-size: 1.25rem;
}

.sidebar-footer {
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
}

.dashboard-main {
    flex: 1;
    margin-left: 260px;
}

.dashboard-header {
    background: var(--dark-card);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left h1 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.header-left p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.icon-btn:hover {
    background: var(--dark-hover);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.dashboard-content {
    padding: 2rem;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Current Orders */
.current-orders,
.quick-actions {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.current-orders h2,
.quick-actions h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.order-card {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.order-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

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

.order-id {
    font-weight: 700;
    color: var(--primary-color);
}

.order-status {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-pickup {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.status-processing {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
}

.status-ready {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.status-completed {
    background: rgba(96, 165, 250, 0.2);
    color: var(--secondary-color);
}

.order-info {
    display: flex;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Progress Bar */
.progress-container {
    margin-top: 1rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.progress-bar {
    height: 8px;
    background: var(--dark-hover);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-btn {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-primary);
    font-weight: 600;
}

.action-btn:hover {
    border-color: var(--primary-color);
    background: var(--dark-hover);
}

.action-btn .icon {
    font-size: 1.5rem;
}

/* Schedule Form */
.schedule-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 600px;
}

.schedule-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Orders List */
.orders-header,
.invoices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Invoice */
.invoice-card {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.invoice-info h3 {
    margin-bottom: 0.5rem;
}

.invoice-details {
    display: flex;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.invoice-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.invoice-actions {
    display: flex;
    gap: 0.5rem;
}

/* Profile Form */
.profile-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 600px;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .floating-card {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .dashboard-main {
        margin-left: 0;
    }

    .dashboard-header {
        padding: 1rem;
    }

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

    .order-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .auth-card {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ===================================
   New Page Styles
   =================================== */

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Price Lock Banner */
.price-lock-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-1);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 40px rgba(37, 99, 235, 0.6);
    }
}

.lock-icon {
    font-size: 1.5rem;
}

/* Price Guarantee Badge */
.price-guarantee {
    margin-top: 2rem;
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark-card);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.guarantee-badge strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.guarantee-badge p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Services Page */
.services-page {
    padding: 3rem 0;
}

.services-page .services-grid {
    margin-bottom: 4rem;
}

.featured-service {
    position: relative;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.service-price {
    margin: 1.5rem 0;
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-lock {
    display: block;
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 600;
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Service Guarantee */
.service-guarantee {
    background: var(--dark-card);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-top: 3rem;
}

.guarantee-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* How It Works Page - Simplified */
.how-it-works-page {
    padding: 3rem 0;
}

.simple-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.simple-step-card {
    background: var(--dark-card);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.simple-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.simple-step-card.highlighted {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.step-number-badge {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.simple-step-card:hover .step-image img {
    transform: scale(1.05);
}

.simple-step-card h3 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.simple-step-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.step-highlights span {
    background: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.time-slot {
    background: var(--dark-bg);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--primary-color);
}

.process-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.process-badge {
    background: var(--dark-bg);
    padding: 0.625rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tracking-preview {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.track-stage {
    background: var(--dark-bg);
    padding: 0.625rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
    position: relative;
}

.track-stage.active {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.track-stage.active::before {
    content: '✓';
    margin-right: 0.5rem;
}

.satisfaction-badge {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--success);
    margin-top: 1rem;
    text-align: center;
}

.satisfaction-badge strong {
    display: block;
    color: var(--success);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.satisfaction-badge p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.step-cta {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.step-cta:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.pricing-reminder {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
}

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

.reminder-icon {
    font-size: 4rem;
}

.reminder-text h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.reminder-text p {
    color: var(--text-secondary);
}

.reminder-price {
    text-align: center;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-display .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-display .unit {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.locked-badge {
    display: block;
    background: var(--success);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Price Lock Highlight */
.price-lock-highlight {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.4);
}

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

.lock-visual {
    text-align: center;
    min-width: 200px;
}

.lock-circle {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.price-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-big span {
    font-size: 1.75rem;
    color: var(--text-secondary);
}

.lock-label {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.lock-text h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--text-primary);
}

.lock-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lock-benefits {
    list-style: none;
    padding: 0;
}

.lock-benefits li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
}

.lock-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

.lock-benefits li:last-child {
    border-bottom: none;
}

/* FAQ Section - Updated */
.faq-section {
    margin-top: 4rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.faq-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service Info */
.service-info {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-info > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Pricing Page */
.pricing-hero {
    padding: 8rem 0 5rem;
}

.hero-price-lock {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: var(--dark-card);
    padding: 0;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.4);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.price-visual-side {
    height: 100%;
    min-height: 400px;
}

.price-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-text-side {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.giant-price {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.lock-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.giant-price .price-amount {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.giant-price sup {
    font-size: 2.5rem;
}

.giant-price .price-unit {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.price-guarantee-text {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

/* Pricing Calculator */
.pricing-calculator {
    padding: 3rem 0;
    text-align: center;
}

.pricing-calculator h2 {
    margin-bottom: 0.5rem;
}

.pricing-calculator > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.calculator-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.calculator-input {
    margin-bottom: 2rem;
}

.calculator-input label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.calculator-input input[type="number"] {
    width: 100%;
    max-width: 200px;
    padding: 0.75rem;
    font-size: 1.5rem;
    text-align: center;
    background: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.slider-container {
    max-width: 500px;
    margin: 0 auto;
}

.slider-container input[type="range"] {
    width: 100%;
    height: 8px;
    background: var(--dark-bg);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gradient-1);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.slider-container input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gradient-1);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.calculator-result {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
}

.result-breakdown {
    margin-bottom: 1rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breakdown-row.total {
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.free-tag {
    color: var(--success);
    font-weight: 600;
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.price-lock-reminder {
    background: var(--success);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
}

/* Example Costs */
.example-costs {
    margin-top: 3rem;
}

.example-costs h3 {
    margin-bottom: 2rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.example-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.example-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.example-card:hover .example-image img {
    transform: scale(1.05);
}

.example-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.example-card h4 {
    margin-bottom: 0.5rem;
}

.example-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.example-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.example-card small {
    color: var(--success);
    font-size: 0.75rem;
}

/* What's Included */
.whats-included {
    padding: 3rem 0;
    text-align: center;
}

.whats-included h2 {
    margin-bottom: 2rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.included-item {
    display: flex;
    gap: 1rem;
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.included-item h4 {
    margin-bottom: 0.25rem;
}

.included-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Additional Services */
.additional-services {
    padding: 3rem 0;
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.additional-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.additional-card h3 {
    margin-bottom: 1rem;
}

.additional-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.additional-card ul {
    list-style: none;
    padding: 0;
}

.additional-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.additional-card li:last-child {
    border-bottom: none;
}

/* Price Guarantee Section */
.price-guarantee-section {
    padding: 3rem 0;
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.4);
    text-align: center;
}

.guarantee-box .guarantee-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.guarantee-box h2 {
    margin-bottom: 2rem;
}

.guarantee-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.guarantee-point {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.guarantee-point h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.guarantee-point p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.guarantee-cta {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.guarantee-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Comparison Section */
.comparison-section {
    padding: 3rem 0;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border-color);
}

.comparison-row.header {
    background: var(--dark-hover);
}

.comparison-cell {
    background: var(--dark-card);
    padding: 1rem;
    text-align: center;
}

.comparison-row.header .comparison-cell {
    background: var(--dark-hover);
    font-weight: 700;
}

.comparison-cell.highlight {
    background: rgba(37, 99, 235, 0.1);
    border-left: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
}

.comparison-savings h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-savings > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.savings-card {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.years {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.savings-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 0.5rem;
}

.rate {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* CTA Subtext */
.cta-subtext {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .simple-steps {
        grid-template-columns: 1fr;
    }

    .lock-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lock-benefits li {
        text-align: left;
    }

    .reminder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .giant-price .price-amount {
        font-size: 3.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .time-slots,
    .process-badges,
    .tracking-preview {
        justify-content: center;
    }

    .hero-price-lock {
        grid-template-columns: 1fr;
    }

    .price-visual-side {
        min-height: 250px;
    }

    .price-text-side {
        padding: 2rem;
    }

    .hero-video {
        object-position: center center;
    }
}
