:root {
    --navy: #1a2341;
    --gold: #c9933a;
    --gold-light: #f0c060;
    --cream: #faf8f4;
    --white: #ffffff;
    --gray: #8a8fa8;
    --light: #eef0f6;
    --border: #d8dce8;
    --success: #2e9e6e;
    --text: #2c2f3f;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* HERO HEADER */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2a3660 60%, #1a2341 100%);
    padding: 48px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 147, 58, 0.18) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 10%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 147, 58, 0.1) 0%, transparent 70%);
}

.hero-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    padding: 10px 22px 10px 12px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.logo-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.logo-text {
    text-align: left;
}

.logo-text strong {
    display: block;
    color: white;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-text span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 46px);
    color: white;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.step-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}

.step-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* MAIN FORM WRAPPER */
.form-wrap {
    max-width: 1200px;
    margin: -32px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(26, 35, 65, 0.12), 0 2px 8px rgba(26, 35, 65, 0.06);
    overflow: hidden;
}

.card-section {
    padding: 36px 40px;
    border-bottom: 1px solid var(--light);
    animation: fadeUp 0.5s ease both;
}

.card-section:last-child {
    border-bottom: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STAKEHOLDER TYPE */
.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.stakeholder-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.tab-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

/* PERSONAL INFO GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(max-width: 660px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media(min-width:661px) and (max-width:860px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.field-group input,
.field-group select,
.field-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    transition: all 0.2s;
    outline: none;
    width: 100%;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--navy);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 35, 65, 0.07);
}

.field-group input::placeholder {
    color: #b8bcc8;
}

.field-group select {
    appearance: none;
    cursor: pointer;
}

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: '▾';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    font-size: 13px;
}

/* SECTION HEADING */
.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.section-heading .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), #2a3660);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--navy);
}

.section-heading p {
    font-size: 13px;
    color: var(--gray);
    margin-top: 2px;
}

/* RATING QUESTIONS */
.ratings-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

@media(max-width:640px) {
    .ratings-grid {
       
    }
}

.rating-card {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    transition: all 0.2s;
}

.rating-card:hover {
    border-color: var(--gold);
}

.rating-card p {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.5;
	margin-top:18px;
}

.stars {
    display: flex;
    gap: 6px;
}

.star {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.15s;
    color: #ccc;
}

.star:hover,
.star.lit {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
    transform: scale(1.1);
}

/* TEXT INPUT QUESTIONS */
.text-questions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media(max-width:640px) {
    .text-questions {
        grid-template-columns: 1fr;
    }
}

.text-q {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.text-q label {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

.text-q input {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    outline: none;
    transition: all 0.2s;
    width: 100%;
}

.text-q input:focus {
    border-color: var(--navy);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 35, 65, 0.07);
}

.full-col {
    grid-column: 1 / -1;
}

/* WILLINGNESS */
.will-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media(max-width:640px) {
    .will-row {
        grid-template-columns: 1fr;
    }
}

/* COMMENT */
.comment-area {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    width: 100%;
    min-height: 100px;
    resize: vertical;
    outline: none;
    transition: all 0.2s;
}

.comment-area:focus {
    border-color: var(--navy);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 35, 65, 0.07);
}

/* SUBMIT */
.submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 28px 40px 36px;
}

.submit-note {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.submit-note::before {
    content: '🔒';
    font-size: 13px;
}

.btn-submit {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: white;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a040 100%);
    border: none;
    border-radius: 50px;
    padding: 14px 42px;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(201, 147, 58, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 147, 58, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 16px;
    transition: transform 0.2s;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

/* SUCCESS TOAST */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--navy);
    color: white;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(26, 35, 65, 0.3);
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 18px;
}

/* PROGRESS BAR */
.progress-bar-wrap {
    height: 3px;
    background: var(--light);
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 2px;
}

/* REQUIRED STAR */
.req {
    color: #e05c5c;
    margin-left: 2px;
}