/* --- GLOBAL VARIABLES (LIGHT MODE THEME) --- */
:root {
    --bg-body: #ebf0f6;
    /* Slate 50 */
    --bg-card: #ffffff;
    /* White */
    --bg-glass: rgba(255, 255, 255, 0.8);
    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #64748b;
    /* Slate 500 */
    --border-color: #e2e8f0;
    /* Slate 200 */

    --primary: #3b82f6;
    /* Blue 500 */
    --secondary: #8b5cf6;
    /* Violet 500 */
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --accent-glow: 0 4px 20px rgba(59, 130, 246, 0.25);

    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- FOOTER --- */
.main-footer {
    background-color: #0f172a; /* Darker Slate */
    color: #e2e8f0;
    padding: 4rem 5% 1rem 5%;
    margin-top: 4rem;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

/* Brand Column */
.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-tagline {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
}

.footer-socials a:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

/* Links Columns */
.footer-col h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

.navbar {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

/* Fallback if image not found */
.logo-text-fallback {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-btn {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* --- HERO SECTION (SPLIT LAYOUT) --- */
.hero-section {
    padding: 4rem 5%;
    background: white;
    position: relative;
    /* overflow: hidden; Removed to prevent dropdown clipping */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
    z-index: 10;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
    padding-top: 2rem;
    z-index: 1;
}

.hero-right {
    flex: 1;
    min-width: 350px;
    max-width: 450px;
    z-index: 20;
    /* Ensure form is above other elements */
}

.green-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    /* Green 100 */
    color: #166534;
    /* Green 800 */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title-group {
    margin-bottom: 2rem;
}

.hero-title-blue {
    display: block;
    font-size: 3.5rem;
    color: #2563eb;
    /* Blue 600 */
    font-weight: 800;
    line-height: 1.1;
}

.hero-title-black {
    display: block;
    font-size: 3.5rem;
    color: #0f172a;
    /* Slate 900 */
    font-weight: 800;
    line-height: 1.1;
}

.hero-desc {
    color: #475569;
    /* Slate 600 */
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Background blob decoration */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.collab-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
}

.collab-pill {
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-cards-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mini-stat-card {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dbeafe;
    /* Blue 100 */
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mini-icon.green {
    background: #dcfce7;
    color: #166534;
}

.mini-icon.orange {
    background: #ffedd5;
    color: #c2410c;
}

.mini-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.mini-info p {
    font-size: 0.8rem;
    color: #64748b;
}

/* --- FORM CARD --- */
.form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
    /* Softer, deeper shadow */
    border: 1px solid rgba(226, 232, 240, 0.6);
    /* Very subtle border */
    position: relative;
    z-index: 20;
    transition: transform 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
}

/* --- CUSTOM DROPDOWN --- */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-trigger {
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #475569;
    transition: 0.2s;
}

.dropdown-trigger:hover {
    border-color: #2563eb;
}

.dropdown-trigger.active {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.dropdown-options {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 50;
    display: none;
}

.dropdown-options.show {
    display: block;
    animation: fadeInDropdown 0.2s ease;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-option {
    padding: 10px 12px;
    cursor: pointer;
    color: #0f172a;
    font-size: 0.9rem;
    transition: 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: #f1f5f9;
    color: #2563eb;
}

/* Custom Scrollbar */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.form-warning {
    background: #fffbeb;
    /* Yellow 50 */
    color: #b45309;
    /* Yellow 700 */
    padding: 12px;
    text-align: center;
    border-radius: 16px 16px 0 0;
    /* Added manually since overflow is gone */
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required-star {
    color: #ef4444;
    margin-left: 2px;
}

.form-select,
.form-input {
    width: 100%;
    padding: 14px 16px;
    /* Chunkier padding */
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
    background: #f8fafc;
    /* Slight grey bg by default */
}

.form-select:focus,
.form-input:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    /* Modern focus ring */
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #0f172a;
}

.radio-btn input {
    margin: 0;
}

.predict-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    /* Gradient instead of flat black */
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -10px rgba(15, 23, 42, 0.5);
    letter-spacing: 0.5px;
}

.predict-btn:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #166534;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* --- PREDICTOR CARD --- */
.predictor-wrapper {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    position: relative;
    z-index: 10;
}

.toggle-box {
    display: flex;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.toggle-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.toggle-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.input-control {
    width: 100%;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.info-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- STATS BAR --- */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

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

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* --- GRID LAYOUTS --- */
.features-section,
.benefits-section,
.reviews-section {
    padding: 6rem 5%;
    border-top: 1px solid var(--border-color);
    background: var(--bg-body);
}

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

.card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
    opacity: 0;
    transition: 0.3s;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    /* background: var(--accent-gradient); Removed to show full color icons */
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.35rem;
    color: var(--text-main);
}

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

/* --- HOW IT WORKS (STEPS) --- */
.process-section {
    padding: 6rem 5%;
    background: #f1f5f9;
    /* Slate 100 */
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 16px;
    width: 320px;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.step-box:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-num {
    background: var(--accent-gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* --- AI ACCURACY --- */
.ai-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, white 0%, #f8fafc 100%);
    border-top: 1px solid var(--border-color);
}

.ai-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.ai-text h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 700;
}

.ai-text ul {
    margin-top: 2rem;
    margin-left: 1rem;
}

.ai-text li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.ai-text li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.ai-grid {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ai-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    transition: 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    border-left-width: 3px;
}

.ai-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.ai-card h3 {
    color: var(--text-main);
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

/* --- COMPARISON TABLE --- */
.comparison-section {
    padding: 6rem 5%;
    background: var(--bg-body);
    overflow-x: auto;
    border-top: 1px solid var(--border-color);
}

.comp-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.comp-table th {
    background: #f1f5f9;
    color: var(--text-main);
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

.comp-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-table td:first-child {
    text-align: left;
    color: var(--text-main);
    font-weight: 600;
    padding-left: 2rem;
}

/* --- FAQ --- */
.faq-section {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-btn {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    transition: 0.3s;
}

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

.faq-content {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.8;
    font-size: 1rem;
}

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

.faq-item.active .faq-btn {
    color: var(--primary);
}

.faq-item.active span {
    transform: rotate(45deg);
    transition: 0.3s;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 3rem 5%;
    background: #e6edf4;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* --- MODAL --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-box {
    background: var(--bg-card);
    color: var(--text-main);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    max-width: 450px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        padding: 1rem;
    }

    .logo-title {
        font-size: 1rem;
    }
}