*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
}

:root {
    --blue: #3f51b5;
    --blue-light: #5c6bc0;
    --text: #0f1117;
    --muted: #6b7280;
    --light: #f5f6fa;
    --border: rgba(0, 0, 0, 0.08);
    --white: #ffffff;
    --accent: #3f51b5;
    --accent-light: rgba(63, 81, 181, 0.08);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    min-height: 100vh;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: 0.06em;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 17px;
    height: 17px;
    fill: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-cta {
    background: var(--blue);
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--blue-light);
}

/* ── LAYOUT ── */
.contact-wrap {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 64px;
}

/* ── LEFT PANEL ── */
.contact-left {
    background: var(--text);
    padding: 45px 64px 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-left-content {
    flex: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 238, 255, 0.08);
    border: 1px solid var(--accent-mid);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 0px 14px;
    border-radius: 99px;
    margin-bottom: 24px;
    height: 30px;
}

.contact-left h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.contact-left h1 em {
    font-style: normal;
    color: #7c8ff5;
}

.contact-left > .contact-left-content > p {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    font-weight: 300;
    max-width: 360px;
    margin-bottom: 56px;
}

/* Contact methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 56px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-method:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-method:hover {
    opacity: 0.7;
}

.cm-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cm-icon svg {
    width: 17px;
    height: 17px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cm-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
}

.cm-text span {
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Response time note */
.response-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

.response-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ── RIGHT PANEL — FORM ── */
.contact-right {
    background: var(--white);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 40px;
}

.form-header p {
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.form-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 0.90rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}

.field input,
.field select,
.field textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.90rem;
    color: var(--text);
    background: var(--light);
    border: 1.5px solid transparent;
    border-radius: 9px;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.18s, background 0.18s;
    width: 100%;
    resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #c0c5d0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.08);
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.field textarea {
    min-height: 120px;
    line-height: 1.6;
}

.submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 4px;
}

.submit-note {
    font-size: 0.70rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
}

.btn-submit {
    background: var(--blue);
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 9px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.btn-submit:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 56px;
    height: 56px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon svg {
    width: 26px;
    height: 26px;
    stroke: #16a34a;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-success h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.90rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
}
/* ── FOOTER ── */
footer {
    background: white;
    border-top: 2px solid var(--border);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer span {
    font-size: 0.8rem;
    color: #c0c5d8;
}

footer a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--blue);
}