:root {
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --secondary: #10B981;
    --secondary-hover: #059669;
    --accent: #F59E0B;
    --accent-hover: #D97706;
    --purple-accent: #A855F7;
    --purple-accent-hover: #9333EA;
    --text: #1F2937;
    --text-light: #6B7280;
    --white: #ffffff;
    --gray-light: #F3F4F6;
    --gray-medium: #E5E7EB;
    --background: #FAFBFC;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: linear-gradient(135deg, #F0F4F8 0%, #E8EDF2 100%);
    min-height: 100vh;
}

.page-container {
    max-width: 1440px;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

/* Navbar */
.navbar-new {
    background: #fff;
    box-shadow: 0 6px 32px rgba(80,84,228,0.08);
    padding: 0 5%;
    height: 67px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 120;
}

.navbar-logo {
    margin-right: auto;
    flex-shrink: 0;
    padding-right: 40px;
}

.navbar-logo a {
    font-size: 2.4rem;
    font-weight: 800;
    color: #4F46E5;
    text-decoration: none;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 4px rgba(79,70,229,0.15);
    transition: all 0.3s ease;
    display: inline-block;
}

.navbar-logo a:hover {
    transform: scale(1.02);
    text-shadow: 0 3px 6px rgba(79,70,229,0.25);
}

.navbar-logo span {
    color: #10B981;
    font-weight: 800;
}

.navbar-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 2vw;
    list-style: none;
}

.navbar-item {
    position: relative;
}

.navbar-link {
    background: none;
    border: none;
    font-size: 1.09rem;
    color: #222;
    font-weight: 500;
    cursor: pointer;
    transition: color .2s;
    padding: 16px 18px 16px 14px;
    border-radius: 12px;
    outline: none;
    white-space: nowrap;
    text-decoration: none;
}

.navbar-link:hover,
.navbar-link:focus {
    color: #4F46E5;
    background: #f6f7fa;
}

.navbar-item.has-dropdown .navbar-link:after {
    content: '\25BE';
    font-size: .86em;
    padding-left: 7px;
    transition: transform 0.2s;
}

.navbar-item.open > .navbar-link:after {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 55px;
    left: 0;
    min-width: 215px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(49,45,97,0.13);
    border-radius: 14px;
    padding: 12px 0;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity .28s cubic-bezier(.21,.77,.41,.98), transform .28s cubic-bezier(.21,.77,.41,.98);
    pointer-events: none;
}

.navbar-item.open > .dropdown {
    display: flex;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.dropdown li {
    width: 100%;
}

.dropdown a {
    padding: 13px 26px;
    font-size: 1.03rem;
    color: #23234b;
    text-decoration: none;
    border-radius: 8px;
    display: block;
    transition: background .18s, color .18s, padding-left .18s;
}

.dropdown a:hover,
.dropdown a:focus {
    background: #F4F6FB;
    color: #4F46E5;
    padding-left: 34px;
}

.navbar-burger {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    padding: 0;
}

.navbar-burger span {
    display: block;
    height: 3.5px;
    width: 27px;
    background: #4F46E5;
    border-radius: 3px;
    margin: 4px 0;
    transition: all .25s;
}

/* Page Title */
.page-title {
    text-align: center;
    padding: 80px 5% 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #6366F1 50%, var(--secondary) 100%);
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding-bottom: 80px;
}

.page-title h1 {
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 3rem;
}

.page-title p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Action Section */
.action-section {
    padding: 80px 5%;
    text-align: center;
    background: var(--white);
}

.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-submit {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--secondary) 0%, #34D399 100%);
    color: var(--white);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-submit i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.btn-submit span {
    position: relative;
    z-index: 1;
}

.btn-schedule {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
    color: var(--white);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-schedule::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .3) 50%, rgba(255, 255, 255, 0));
    transform: rotateZ(60deg) translate(-5em, 7.5em);
    transition: transform 0.6s;
}

.btn-schedule:hover::after {
    transform: rotateZ(60deg) translate(1em, -9em);
}

.btn-schedule:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.btn-schedule i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.btn-schedule span {
    position: relative;
    z-index: 1;
}

.btn-generate {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--purple-accent) 0%, #C084FC 100%);
    color: var(--white);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.3);
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(168, 85, 247, 0.5);
    }
}

.btn-generate:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
    animation: none;
}

.btn-generate i {
    font-size: 1.2rem;
}

@keyframes rotate-icon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-generate:hover i {
    animation: rotate-icon 2s linear infinite;
}

.btn-generate span {
    position: relative;
    z-index: 1;
}

/* Challenge Info Section Styles */
.challenge-info {
    padding: 48px 5%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(250,250,255,0.9));
    border-top: 1px solid rgba(79,70,229,0.04);
}
@media(min-width:900px){
    .challenge-info { grid-template-columns: 1fr 420px; gap:40px; padding:64px 6%;}
}
.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap:18px;
}
@media(min-width:720px){
    .info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:1100px){
    .info-cards { grid-template-columns: repeat(3, 1fr); }
}
.card {
    background: linear-gradient(180deg, var(--white), rgba(255,255,255,0.96));
    border-radius:14px;
    padding:20px;
    box-shadow: 0 8px 26px rgba(16,24,40,0.06);
    border:1px solid rgba(15,23,42,0.03);
    display:flex;
    gap:16px;
    align-items:flex-start;
    transform: translateY(0);
    transition: transform .36s cubic-bezier(.2,.9,.2,1), box-shadow .36s;
    overflow:hidden;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15,23,42,0.09);
}
.card-ill {
    width:64px;
    height:64px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    background:linear-gradient(135deg, rgba(79,70,229,0.08), rgba(16,185,129,0.04));
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0) }
    50% { transform: translateY(-6px) }
    100% { transform: translateY(0) }
}
.card h4 { margin-bottom:6px; color:var(--primary); font-size:1.05rem; }
.card p { color:var(--text-light); font-size:0.98rem; }
/* Short intro column (right side) */
.summary-box {
    background: linear-gradient(180deg, rgba(79,70,229,0.03), rgba(16,185,129,0.02));
    border-radius:12px;
    padding:22px;
    display:flex;
    flex-direction:column;
    gap:14px;
    align-items:flex-start;
    justify-content:center;
    box-shadow: 0 8px 30px rgba(79,70,229,0.04);
    border:1px solid rgba(79,70,229,0.04);
}
.summary-box h3 { color:var(--primary); font-size:1.2rem; margin:0; }
.summary-box .muted { color:var(--text-light); font-size:0.95rem; }
.summary-cta { margin-top:6px; display:flex; gap:10px; width:100%; }
.summary-cta a { flex:1; text-align:center; padding:12px 14px; border-radius:10px; font-weight:600; text-decoration:none; }
.summary-cta .cta-primary { background: linear-gradient(135deg,var(--secondary), #34D399); color:white; box-shadow:0 10px 30px rgba(16,185,129,0.12) }
.summary-cta .cta-outline { border:1px solid rgba(79,70,229,0.12); background:transparent; color:var(--primary) }
/* HOW IT WORKS mini timeline */
.how-steps { margin-top:18px; display:flex; flex-direction:column; gap:12px; width:100% }
.step-item { display:flex; gap:12px; align-items:flex-start; }
.step-bullet { min-width:34px; height:34px; border-radius:50%; background:var(--white); display:flex; align-items:center; justify-content:center; box-shadow: 0 6px 18px rgba(15,23,42,0.05); font-weight:700; color:var(--primary) }
.step-text { color:var(--text-light); font-size:0.95rem; }
/* EXAMPLE STORY block under cards */
.example-story {
    margin-top: 18px;
    background: linear-gradient(90deg, rgba(168,85,247,0.03), rgba(245,158,11,0.02));
    padding: 18px;
    border-radius: 12px;
    border:1px solid rgba(79,70,229,0.03);
    display:flex;
    gap:14px;
    align-items:flex-start;
}
.story-line { width:4px; background:linear-gradient(180deg,var(--primary), var(--secondary)); border-radius:6px; min-height:70px; margin-left:8px; }
.story-body p { color:var(--text-light); }
/* small decorative image placeholders (SVG) */
.decor-sm { width:46px; height:46px; flex-shrink:0; }
/* subtle appear animation */
.appear { opacity:0; transform: translateY(10px); animation: appear .6s forwards ease; }
.appear.delay-1 { animation-delay:.08s }
.appear.delay-2 { animation-delay:.16s }
.appear.delay-3 { animation-delay:.24s }
@keyframes appear {
    to { opacity:1; transform:none }
}

/* Modal Styles - Updated to match page theme */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-hover);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--gray-medium);
    animation: slideIn 0.3s ease;
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1001;
    transition: var(--transition);
    border-radius: 50%;
    background: transparent;
}

.close:hover {
    color: var(--text);
    background: var(--gray-light);
    transform: scale(1.1);
}

/* Stepper */
.stepper {
    display: flex;
    justify-content: space-between;
    margin: 20px 40px;
    position: relative;
    background: var(--gray-light);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.step.active {
    color: var(--primary);
    font-weight: 600;
}

.step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    width: 100%;
    height: 2px;
    background: var(--gray-medium);
    z-index: -1;
    transition: background 0.3s ease;
}

.step:first-child::before {
    left: 0;
}

.step.active::before {
    background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.step.active .step-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
    color: var(--white);
    transform: scale(1.05);
}

/* Form Styles */
.modal-form {
    padding: 40px;
    transition: opacity 0.3s ease;
}

.form-group {
    margin-bottom: 25px;
    transition: var(--transition);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Checkbox Specific Styles */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
    flex: 1;
    word-break: break-word;
}

.checkbox-group label:hover {
    color: var(--primary);
}

.btn-next,
.btn-generate-modal,
.btn-submit-modal {
    background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-next:hover,
.btn-generate-modal:hover,
.btn-submit-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
}

.btn-back {
    background: var(--gray-light);
    color: var(--text-light);
    border: 2px solid var(--gray-medium);
    padding: 14px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 10px;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--gray-medium);
    color: var(--text);
    transform: translateY(-1px);
}

/* Sub-modal for Generate */
.sub-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.sub-modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--gray-medium);
    animation: slideIn 0.3s ease;
}

.sub-modal-content h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.sub-modal-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Connect Modal Content */
.connect-content {
    padding: 60px 40px;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

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

.connect-content h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.connect-content p {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.connect-content .phone {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--background) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    transition: var(--transition);
}

.connect-content .phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
}

/* Login Popup */
.login-popup {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    width: 300px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    z-index: 1002;
    padding: 25px;
    border: 1px solid var(--gray-medium);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.login-popup h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.login-popup .form-group {
    margin-bottom: 15px;
}

.login-popup input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.login-popup input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, #34D399 100%);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, var(--secondary-hover) 0%, var(--secondary) 100%);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.btn-pricing {
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--accent) 0%, #FBBF24 100%);
    color: var(--white);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text) 0%, #374151 100%);
    color: var(--white);
    padding: 60px 5% 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer h2,
.footer h3 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.8;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: block;
    margin-bottom: 8px;
}

.footer a:hover {
    color: var(--accent);
    text-shadow: 0 2px 4px rgba(245, 158, 11, 0.4);
}

.footer-about,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    margin-bottom: 0;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-burger {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        z-index: 200;
        padding: 90px 0 0 0;
        gap: 0;
        box-shadow: 0 10px 28px rgba(80,84,228,.10);
        transition: transform .3s cubic-bezier(.49,.28,.41,1) 0s;
        transform: translateX(-100vw);
        height: 100vh;
        overflow-y: auto;
    }

    .navbar-menu.open {
        transform: translateX(0);
    }

    .navbar-item {
        border-bottom: 1px solid #ebebf5;
    }

    .navbar-item.has-dropdown .dropdown {
        position: static;
        min-width: 0;
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 20px;
        transform: none;
        opacity: 1;
        display: none;
    }

    .navbar-item.open > .dropdown {
        display: flex;
    }

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

    .page-title p {
        font-size: 1rem;
    }

    .action-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .btn-submit,
    .btn-schedule,
    .btn-generate {
        width: 100%;
        max-width: 350px;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modal-content,
    .sub-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }

    .stepper {
        margin: 10px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .login-popup {
        right: 10px;
        width: 90%;
        top: 100px;
    }

    .modal-form {
        padding: 20px;
    }

    .connect-content {
        padding: 40px 20px;
    }

    .connect-content h3 {
        font-size: 1.4rem;
    }

    .connect-content .phone {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .checkbox-group label {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        font-size: 0.95rem;
    }
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.connect-us {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 12px;
}

.connect-us p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.connect-us .btn-schedule {
    display: inline-flex;
    margin: 0 auto;
    padding: 12px 24px;
    font-size: 1rem;
}
.summary-box .muted strong {
color: var(--primary);
font-weight: 600;
}

.summary-box .muted p {
line-height: 1.7;
}