:root {
    --bg-page: #f7f8fc;
    --text-main: #111827;
    --text-muted: #6b7280;
    --color-purple-600: oklch(.558 .288 302.321);
    --color-purple-700: oklch(.496 .265 301.924);
    --color-indigo-800: oklch(.398 .195 277.366);
    --purple-main: #7c3aed;
    --purple-deep: #4f46e5;
    --pink-main: #ec4899;

    --orange-main: #f97316;

    --card-radius: 20px;
    --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.12);

    --container-width: 1120px;
}

/* GLOBAL */
body {
    margin: 0;
    background: #faf7ff;
    font-family: 'Inter', sans-serif;
    color: #1f1f1f;
}


html,
body {
    min-height: 200vh;
}

.navbar {
    width: 100%;
    height: 100px;
    align-items: center;
    display: flex;
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e5e7eb;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 80%;
    height: 100%;
}

.logo-class {
    width: 200px;
}

/* gradient contact button */
.nav-btn {
    padding: 0.5rem 1.6rem;
    border-radius: 10px;
    border: none;
    font-size: 0.85rem;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-main), var(--pink-main));
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
    transition: transform 0.15s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(124, 58, 237, 0.6);
    opacity: 0.95;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.subtitle {
    color: #555;
    font-size: 16px;
}

.description {
    max-width: 650px;
    margin: 10px auto 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* FORM CARD */
.form-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #ece9f9;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}


.form-error {
    margin-top: 12px;
    padding: 10px 12px;
    background: #ffeaea;
    color: #b30000;
    border: 1px solid #ffb3b3;
    border-radius: 6px;
    font-size: 14px;
}

.hidden {
    display: none;
}


label {
    display: block;
    margin-top: 18px;
    font-weight: 600;
}

label span {
    color: #777;
}

/* INPUTS */
input,
textarea {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    box-sizing: border-box;
}


textarea {
    height: 130px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #7B68EE;
}

button {
    width: 100%;
    padding: 16px;
    margin-top: 25px;
    background: #7b68ee;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* STEPS SECTION */
.steps-section {
    margin-top: 60px;
    text-align: center;
}

/* DESKTOP: KEEP ALL CARDS IN ONE ROW */
.steps-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
    /* <- IMPORTANT: prevents wrapping on desktop */
}

.step-card {
    width: 250px;
    background: #fff;
    padding: 40px 22px 28px;
    border-radius: 16px;
    border: 1px solid #ece9f9;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.step-card:hover {
    border-color: #7b68ee;
    box-shadow: 0 15px 40px 50px rgba(0, 0, 0, 0.03);
}

/* Number circle */
.step-number {
    width: 32px;
    height: 32px;
    background: #7b68ee;
    color: white;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -16px;
    left: -16px;
}

/* Icon wrapper */
.step-icon {
    width: 50px;
    height: 50px;
    background: #f5f1ff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke: #7b68ee;
}

.step-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* WHY CARD */
.why-card {
    margin-top: 60px;
    background: #f3edff;
    padding: 28px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    border: 1px solid #e6ddff;
    box-sizing: border-box;
    flex: 0 0 calc(50% - 10px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: #7b68ee;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-text h3 {
    margin: 0;
    font-size: 18px;
    margin-bottom: 6px;
}

.why-text p {
    color: #555;
    font-size: 14px;
    max-width: 620px;
    line-height: 1.6;
}

.tags {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Tag colors */
.tags span:nth-child(1) {
    background: #eef2ff;
    color: #4f46e5;
    border: 1px solid #e0e7ff;
}

.tags span:nth-child(2) {
    background: #fff4e6;
    color: #d97706;
    border: 1px solid #ffedd5;
}

.tags span:nth-child(3) {
    background: #ffe8e8;
    color: #e11d48;
    border: 1px solid #ffd5d5;
}

.tags span:nth-child(4) {
    background: #f3e8ff;
    color: #9333ea;
    border: 1px solid #e9d5ff;
}

/* READY CARD */
.ready-card {
    margin-top: 40px;
    margin-bottom: 40px;
    background: #f6f1ff;
    border: 1px solid #efdeff;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-sizing: border-box;
}

.ready-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.ready-sub {
    font-size: 14px;
    color: #666;
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {

    /* Stack steps */
    .steps-row {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .step-card {
        width: 100%;
        max-width: none;
    }

    .step-number {
        left: 16px;
        /* safe position inside mobile layout */
    }

    .why-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .why-text p {
        max-width: 100%;
    }

    .ready-card {
        width: 100%;
        padding: 25px 20px;
    }
}

/* ------------------------------ */
/* RESPONSIVE NAVBAR (from home)  */
/* ------------------------------ */

@media (max-width: 768px) {
    .nav-inner {
        padding: 0 12px;
    }

    .logo-class {
        width: 180px;
    }

    .nav-btn {
        padding: 8px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .logo-class {
        width: 150px;
    }

    .nav-btn {
        padding: 7px 12px;
        font-size: 13px;
        border-radius: 6px;
    }

    .navbar {
        padding: 12px 0;
    }
}