/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a5f;
    --primary-light: #4a90d9;
    --accent-orange: #f5a623;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --success: #22c55e;
}

body {
    font-family: 'Jost', 'Noto Sans Thai', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ======================== */
/* Header                   */
/* ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.logo i {
    font-size: 1.5rem;
}

.beta-badge {
    font-size: 0.6rem;
    background: var(--primary-blue);
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
}

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

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.dropdown i {
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.btn-signin {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-signin:hover {
    background: var(--bg-light);
    border-color: var(--primary-light);
}

/* ======================== */
/* Hero Section             */
/* ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #87CEEB 0%, #4a90d9 40%, #1e3a5f 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 230px 80px, white, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 350px 50px, white, transparent),
        radial-gradient(2px 2px at 420px 180px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 500px 90px, white, transparent),
        radial-gradient(2px 2px at 580px 130px, rgba(255,255,255,0.9), transparent);
    background-repeat: repeat;
    background-size: 600px 400px;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.rocket-trail {
    position: absolute;
    width: 4px;
    height: 200px;
    background: linear-gradient(to top, transparent, rgba(255,255,255,0.8), white);
    left: 50%;
    top: 35%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: rocketLaunch 3s ease-in-out infinite;
}

.rocket-trail::before {
    content: '\1F680';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    font-size: 2rem;
}

@keyframes rocketLaunch {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-20px);
    }
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
}

.hero::before {
    width: 300px;
    height: 100px;
    top: 20%;
    left: 10%;
    box-shadow: 60px 20px 0 -10px white, 100px -10px 0 10px white, 150px 15px 0 -5px white;
}

.hero::after {
    width: 200px;
    height: 80px;
    top: 25%;
    right: 15%;
    box-shadow: 40px 15px 0 -5px white, 80px -5px 0 8px white;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    width: 100%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ======================== */
/* Wizard Box               */
/* ======================== */
.wizard-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 1.75rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, var(--primary-light), var(--success));
    border-radius: 100px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.progress-text span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Steps */
.steps-wrapper {
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.step.active {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step {
    display: none;
    animation: fadeSlideIn 0.4s ease-out;
}

.step.active {
    display: block;
}

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

@keyframes fadeSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.step.slide-out {
    display: block;
    animation: fadeSlideOut 0.3s ease-in forwards;
}

.step.slide-in-reverse {
    display: block;
    animation: fadeSlideInReverse 0.4s ease-out;
}

@keyframes fadeSlideInReverse {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ebf5ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon i {
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.step-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.step-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

/* Wizard Inputs */
.wizard-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.wizard-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(74, 144, 217, 0.1);
    background: var(--white);
}

.wizard-input::placeholder {
    color: #94a3b8;
}

.wizard-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border-color 0.2s, box-shadow 0.2s, height 0.2s;
    outline: none;
    resize: none;
    overflow: hidden;
}

.wizard-textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(74, 144, 217, 0.1);
    background: var(--white);
}

.wizard-textarea::placeholder {
    color: #94a3b8;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--bg-light);
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--primary-light);
    background: rgba(74, 144, 217, 0.05);
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.file-upload-content i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 0.25rem;
}

.file-upload-content span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.file-upload-content small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.file-preview {
    position: relative;
    display: inline-block;
}

.file-preview img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 12px;
    object-fit: contain;
    border: 2px solid var(--border-color);
}

.btn-remove-file {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #ef4444;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    transition: transform 0.2s;
}

.btn-remove-file:hover {
    transform: scale(1.1);
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.btn-back,
.btn-next {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-back {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-back:hover:not(:disabled) {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-next {
    background: var(--primary-blue);
    color: white;
}

.btn-next:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
}

.btn-next.generate {
    background: linear-gradient(135deg, var(--success), #16a34a);
}

.btn-next.generate:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

/* Step Dots */
.step-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-light);
    width: 24px;
    border-radius: 100px;
}

.dot.completed {
    background: var(--success);
}

/* ======================== */
/* Tech Stack               */
/* ======================== */
.tech-stack {
    margin-top: 1.5rem;
}

.tech-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.tech-tab {
    padding: 0.4rem 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.tech-tab.active {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.tech-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tech-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ======================== */
/* Hero Landscape           */
/* ======================== */
.hero-landscape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.landscape-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ======================== */
/* Trusted Section          */
/* ======================== */
.trusted-section {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.trusted-title {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.trusted-title strong {
    color: var(--text-dark);
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.logo-item:hover {
    opacity: 1;
}

/* ======================== */
/* Testimonials Section     */
/* ======================== */
.testimonials-section {
    position: relative;
    background: linear-gradient(180deg, #1e3a5f 0%, #2d5a87 50%, #4a90d9 100%);
    padding: 5rem 2rem 8rem;
    overflow: hidden;
}

.testimonials-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: left;
    transition: transform 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.testimonial-card.dark {
    background: #1e293b;
    color: white;
}

.testimonial-card.dark p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.user-handle {
    font-size: 0.75rem;
    color: var(--text-light);
}

.testimonial-card.dark .user-handle {
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-header > i {
    color: var(--text-light);
    flex-shrink: 0;
}

.testimonial-card.dark .testimonial-header > i {
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-card p {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--bg-dark);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

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

.testimonials-landscape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

/* ======================== */
/* FAQ Section              */
/* ======================== */
.faq-section {
    background: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

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

.faq-subtitle {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: background 0.2s;
    font-family: inherit;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--text-light);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    text-align: left;
}

/* ======================== */
/* Footer                   */
/* ======================== */
.footer {
    background: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer p {
    color: var(--text-light);
}

.footer a {
    color: var(--primary-light);
    text-decoration: none;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
}

/* ======================== */
/* Summary Modal            */
/* ======================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

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

.modal {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

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

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header h3 i {
    color: var(--primary-light);
}

.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.2s;
}

.modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.modal-body {
    padding: 1.5rem 2rem;
    overflow-y: auto;
    flex: 1;
}

.summary-item {
    display: flex;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .summary-number {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ebf5ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.summary-item .summary-detail {
    flex: 1;
    min-width: 0;
}

.summary-item .summary-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.summary-item .summary-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-top: 0.15rem;
    word-wrap: break-word;
}

.summary-item .summary-value.empty {
    color: #94a3b8;
    font-style: italic;
}

.summary-logo-preview {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    margin-top: 0.25rem;
}

.modal-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.btn-edit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.btn-edit:hover {
    background: var(--bg-light);
}

.btn-generate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--success), #16a34a);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-generate:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

/* ======================== */
/* Responsive               */
/* ======================== */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .nav {
        display: none;
    }

    .wizard-box {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 6rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

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

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

    .header-container {
        padding: 1rem;
    }

    .trusted-logos {
        gap: 1.5rem;
    }

    .logo-item {
        font-size: 0.8rem;
    }

    .wizard-box {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .step-label {
        font-size: 1.05rem;
    }

    .wizard-nav {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .step-dots {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .btn-back,
    .btn-next {
        flex: 1;
        justify-content: center;
    }

    .modal {
        border-radius: 16px;
        max-height: 90vh;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}
