@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --bg: #e9e1d4;
    --paper: #f4ecdf;
    --paper-soft: #efe5d6;
    --panel: #1d1a17;
    --panel-soft: #26221e;
    --ink: #201d1a;
    --ink-light: #f6efe4;
    --muted: #6f665d;
    --muted-light: rgba(246, 239, 228, 0.72);
    --line: rgba(56, 48, 41, 0.12);
    --line-light: rgba(255, 255, 255, 0.12);
    --accent: #df6e39;
    --accent-strong: #c95824;
    --success: #1f7a48;
    --warning: #92601f;
    --danger: #9d2f2f;
    --shadow-dark: 0 30px 80px rgba(20, 17, 14, 0.18);
    --shadow-light: 0 20px 50px rgba(40, 34, 28, 0.08);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    color: var(--ink);
    background: #e9e1d4;
}

img {
    max-width: 100%;
    display: block;
}

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

button,
input,
textarea {
    font: inherit;
}

.site-wrap {
    width: min(1480px, calc(100% - 28px));
    margin: 14px auto 28px;
}

.frame {
    border-radius: 38px;
    overflow: hidden;
    margin-bottom: 18px;
}

.frame-dark {
    background: var(--panel);
    color: var(--ink-light);
    box-shadow: var(--shadow-dark);
}

.frame-light {
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow-light);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 34px 0;
}

.brand-mark {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 14px;
    color: var(--muted-light);
}

.main-nav a:hover,
.nav-cta:hover,
.text-link:hover,
.text-link-light:hover,
.scroll-link:hover {
    opacity: 0.82;
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-cta {
    min-height: 48px;
    padding: 0 20px;
    background: #f6efe4;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 42px;
    padding: 44px 34px 40px;
    align-items: center;
}

.eyebrow,
.section-kicker,
.progress-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow,
.section-kicker {
    color: rgba(246, 239, 228, 0.62);
}

.frame-light .section-kicker {
    color: rgba(32, 29, 26, 0.5);
}

.hero-copy h1 {
    max-width: 600px;
    margin: 18px 0 20px;
    font-size: clamp(54px, 8vw, 104px);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.hero-copy p,
.contact-copy p,
.about-copy p,
.service-card p,
.feature-card p,
.section-side-text,
.showcase-note,
.field-hint,
.message,
.contact-points li {
    font-size: 16px;
    line-height: 1.5;
}

.hero-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--muted-light);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-strong);
}

.btn-outline-light {
    border-color: var(--line-light);
    color: var(--ink-light);
    background: transparent;
}

.btn-outline-dark {
    border-color: rgba(32, 29, 26, 0.18);
    color: var(--ink);
    background: transparent;
}

.scroll-link {
    display: inline-flex;
    margin-top: 54px;
    color: rgba(246, 239, 228, 0.62);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-media {
    min-height: 720px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-frame,
.about-frame,
.showcase-frame,
.contact-frame {
    padding: 34px;
}

.split-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-head h2,
.contact-copy h2,
.form-head h3 {
    margin: 14px 0 0;
    line-height: 1;
    letter-spacing: -0.06em;
}

.section-head h2,
.contact-copy h2 {
    max-width: 760px;
    font-size: clamp(34px, 4vw, 66px);
}

.section-side-text {
    max-width: 420px;
    color: var(--muted);
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    margin-top: 36px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.stat-card,
.feature-card,
.showcase-card,
.contact-form-shell,
.progress-card,
.form-card,
.message {
    border-radius: var(--radius-lg);
}

.service-card,
.stat-card,
.feature-card {
    padding: 26px;
    background: var(--paper-soft);
    border: 1px solid rgba(32, 29, 26, 0.08);
}

.service-card h3,
.feature-card h3,
.showcase-meta h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.service-card p,
.feature-card p {
    margin: 0;
    color: var(--muted);
}

.service-link,
.text-link,
.text-link-light {
    display: inline-flex;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    gap: 18px;
}

.stat-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card strong {
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.stat-card span {
    margin-top: 8px;
    font-size: 15px;
    color: var(--muted);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
}

.about-copy p {
    max-width: 600px;
    margin: 18px 0 0;
    color: var(--muted);
}

.about-visuals {
    display: grid;
    grid-template-columns: 0.76fr 1fr;
    gap: 18px;
    align-items: end;
}

.portrait-card,
.landscape-card {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
}

.portrait-card {
    min-height: 600px;
}

.landscape-card {
    min-height: 600px;
}

.portrait-card img,
.landscape-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.feature-dot {
    width: 14px;
    height: 14px;
    display: inline-flex;
    border-radius: 50%;
    background: var(--accent);
    margin-bottom: 24px;
}

.light-head .section-kicker,
.light-head .section-head h2,
.light-head .text-link-light,
.showcase-note {
    color: var(--ink-light);
}

.light-head .section-kicker {
    color: rgba(246, 239, 228, 0.62);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.showcase-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.showcase-image {
    aspect-ratio: 1 / 0.85;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
}

.showcase-meta h3 {
    margin: 0;
    color: var(--ink-light);
}

.showcase-meta span {
    font-size: 14px;
    color: rgba(246, 239, 228, 0.62);
}

.showcase-note {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(246, 239, 228, 0.72);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: start;
}

.contact-copy h2 {
    max-width: 520px;
}

.contact-copy p {
    max-width: 440px;
    margin: 18px 0 0;
    color: rgba(246, 239, 228, 0.72);
}

.contact-points {
    margin: 26px 0 0;
    padding-left: 18px;
    max-width: 470px;
}

.contact-points li {
    margin-bottom: 10px;
    color: rgba(246, 239, 228, 0.78);
}

.contact-form-shell {
    padding: 24px;
    background: var(--paper);
    color: var(--ink);
}

.message {
    margin-bottom: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(32, 29, 26, 0.1);
    background: #fff7ec;
}

.message ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.message code {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(32, 29, 26, 0.08);
}

.message-success {
    color: var(--success);
    background: rgba(46, 163, 91, 0.08);
    border-color: rgba(46, 163, 91, 0.15);
}

.message-warning {
    color: var(--warning);
    background: rgba(223, 148, 54, 0.12);
    border-color: rgba(223, 148, 54, 0.16);
}

.message-error {
    color: var(--danger);
    background: rgba(206, 74, 74, 0.09);
    border-color: rgba(206, 74, 74, 0.15);
}

.progress-card {
    padding: 22px;
    background: #fff9f1;
    border: 1px solid rgba(32, 29, 26, 0.09);
}

.progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.progress-label {
    color: rgba(32, 29, 26, 0.42);
}

.progress-head strong,
.progress-count {
    color: var(--ink);
}

.progress-head strong {
    display: block;
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.progress-bar {
    height: 8px;
    overflow: hidden;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(32, 29, 26, 0.08);
}

.progress-bar span {
    display: block;
    width: 33.333%;
    height: 100%;
    background: var(--accent);
    border-radius: inherit;
}

.step-dots {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.step-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(32, 29, 26, 0.14);
    background: transparent;
    color: var(--muted);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.step-dot.active,
.step-dot:hover {
    border-color: transparent;
    background: var(--ink);
    color: #fff;
}

.form-card {
    display: none;
    padding: 24px;
    margin-top: 16px;
    background: #fff9f1;
    border: 1px solid rgba(32, 29, 26, 0.09);
}

.form-card.active {
    display: block;
}

.form-head {
    margin-bottom: 22px;
}

.form-head h3 {
    font-size: clamp(28px, 3vw, 42px);
}

.form-head p {
    margin: 14px 0 0;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.field {
    display: block;
}

.field-wide {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.55;
}

.field label span {
    color: var(--danger);
}

.field-hint {
    margin-bottom: 10px;
    color: var(--muted);
}
.field-hint-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.field-hint-row .field-hint {
    margin-bottom: 0;
    flex: 1 1 280px;
}

.field-hint-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(32, 29, 26, 0.14);
    background: rgba(223, 110, 57, 0.08);
    color: var(--accent-strong);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.field-hint-link:hover {
    transform: translateY(-1px);
    border-color: rgba(223, 110, 57, 0.28);
    background: rgba(223, 110, 57, 0.14);
}

.field input[type="text"],
.field input[type="date"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="url"],
.field textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(32, 29, 26, 0.12);
    background: #fff;
    color: var(--ink);
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field input:focus,
.field textarea:focus {
    border-color: rgba(223, 110, 57, 0.46);
    box-shadow: 0 0 0 4px rgba(223, 110, 57, 0.12);
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(110px, 140px));
    gap: 12px;
    max-width: 304px;
}

.radio-card {
    position: relative;
    display: block;
    min-width: 0;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}

.radio-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(32, 29, 26, 0.12);
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.radio-card:hover span {
    border-color: rgba(223, 110, 57, 0.28);
    transform: translateY(-1px);
}

.radio-card:focus-within span {
    border-color: rgba(223, 110, 57, 0.46);
    box-shadow: 0 0 0 4px rgba(223, 110, 57, 0.12);
}

.radio-card input:checked + span {
    border-color: rgba(223, 110, 57, 0.52);
    background: rgba(223, 110, 57, 0.08);
    color: var(--ink);
    box-shadow: 0 10px 22px rgba(223, 110, 57, 0.14);
}

.has-error input,
.has-error textarea {
    border-color: rgba(157, 47, 47, 0.36);
}

.field-error {
    margin-top: 8px;
    color: var(--danger);
    font-size: 15px;
    font-weight: 700;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.form-actions.end-only {
    justify-content: flex-end;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .hero-grid,
    .contact-grid,
    .about-grid,
    .services-layout {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 520px;
    }

    .section-side-text,
    .contact-copy p,
    .contact-points,
    .about-copy p {
        max-width: none;
    }
}

@media (max-width: 980px) {
    .site-wrap {
        width: min(100% - 16px, 100%);
    }

    .site-header,
    .services-frame,
    .about-frame,
    .showcase-frame,
    .contact-frame,
    .hero-grid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-header {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: space-between;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .services-grid,
    .feature-grid,
    .showcase-grid,
    .fields-grid,
    .about-visuals {
        grid-template-columns: 1fr;
    }

    .portrait-card,
    .landscape-card,
    .hero-media {
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: clamp(46px, 12vw, 74px);
    }
}

@media (max-width: 720px) {
    .frame {
        border-radius: 26px;
    }

    .site-header {
        padding-top: 18px;
    }

    .hero-grid,
    .services-frame,
    .about-frame,
    .showcase-frame,
    .contact-frame {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .split-head {
        align-items: start;
        flex-direction: column;
    }

    .contact-form-shell,
    .progress-card,
    .form-card,
    .service-card,
    .feature-card,
    .stat-card,
    .showcase-card,
    .message {
        border-radius: 20px;
    }

    .btn,
    .nav-cta,
    .btn-outline-dark,
    .btn-outline-light,
    .btn-accent {
        width: 100%;
    }

    .hero-actions,
    .form-actions,
    .form-actions.end-only {
        flex-direction: column;
        align-items: stretch;
        justify-content: stretch;
    }

    .progress-head {
        align-items: start;
        flex-direction: column;
    }
}

body.contact-only-page {
    min-height: 100vh;
    background-color: #e8ddd0;
}

.contact-only-wrap {
    width: min(1360px, calc(100% - 28px));
    margin: 14px auto;
}

.contact-only-frame {
    min-height: calc(100vh - 28px);
    padding: 30px 34px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-topbar-label {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(246, 239, 228, 0.82);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-only-grid {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: 36px;
}

.contact-only-copy {
    position: sticky;
    top: 24px;
    align-self: start;
    padding-top: 12px;
}

.contact-only-copy h2 {
    max-width: 560px;
}

.contact-only-copy p,
.contact-only-copy .contact-points li {
    color: rgba(246, 239, 228, 0.76);
}

@media (max-width: 1200px) {
    .contact-only-copy {
        position: static;
        top: auto;
        padding-top: 0;
    }
}

@media (max-width: 980px) {
    .contact-only-wrap {
        width: min(100% - 16px, 100%);
    }

    .contact-only-frame {
        min-height: auto;
        padding: 20px 18px;
    }
}

@media (max-width: 720px) {
    .contact-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-topbar-label {
        min-height: 38px;
    }
}


.intro-hero-frame {
    border-radius: 38px;
    overflow: hidden;
    background: #f4f2ef;
    box-shadow: 0 28px 70px rgba(20, 17, 14, 0.12);
    margin-bottom: 18px;
}

.intro-browser {
    position: relative;
    min-height: 760px;
    background: #f4f2ef;
}

.intro-notch {
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 28px;
    border-radius: 0 0 16px 16px;
    background: #0e1112;
    transform: translateX(-50%);
    z-index: 5;
}

.intro-toolbar {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 6;
}

.intro-logo {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
}

.intro-logo-box {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.intro-logo-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.intro-logo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.intro-toolbar-actions {
    display: flex;
    gap: 10px;
}

.audio-toggle-button {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(146, 129, 255, 0.5);
    background: rgba(16, 22, 36, 0.86);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.audio-toggle-button:hover,
.audio-toggle-button:focus-visible {
    background: rgba(26, 34, 56, 0.96);
    border-color: rgba(178, 164, 255, 0.82);
    transform: translateY(-1px);
}

.audio-toggle-button.is-paused {
    background: rgba(28, 34, 52, 0.88);
}

.audio-toggle-icon,
.audio-toggle-icon svg {
    display: block;
}

.audio-toggle-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 760px;
}

.intro-copy-panel {
    position: relative;
    background: #f4f2ef;
    color: #1b1b1b;
}

.intro-copy-panel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: rgba(0, 0, 0, 0.06);
}

.intro-copy-inner {
    max-width: 540px;
    padding: 118px 58px 88px 64px;
}

.intro-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(27, 27, 27, 0.48);
}

.intro-copy-inner h1 {
    margin: 0 0 22px;
    font-size: clamp(44px, 6vw, 74px);
    line-height: 0.7;
    letter-spacing: -0.06em;
}

.intro-copy-inner p,
.intro-points li,
.intro-note {
    font-size: 18px;
    line-height: 1.5;
    color: #3d3a37;
}

.intro-copy-inner p {
    margin: 0 0 16px;
}

.intro-points {
    margin: 0 0 16px;
    padding-left: 22px;
}

.intro-points li {
    margin-bottom: 6px;
}

.intro-note {
    margin: 0;
    font-weight: 600;
    color: #2a2826;
}

.intro-visual-panel {
    position: relative;
    overflow: hidden;
    background: #40cd93;
}
.intro-visual-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.background-audio {
    display: none;
}

.intro-visual-panel::before {
    content: none;
}

.intro-burst {
    display: none;
}

.intro-character {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 26px;
    width: auto;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    z-index: 3;
}

.intro-spark,
.intro-scribble {
    position: absolute;
    z-index: 2;
    opacity: 0.95;
}

.intro-spark {
    width: 22px;
    height: 22px;
    background: #fff;
    clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
}

.intro-spark-one {
    top: 228px;
    right: 112px;
}

.intro-spark-two {
    top: 304px;
    left: 86px;
    width: 16px;
    height: 16px;
}

.intro-scribble {
    width: 62px;
    height: 18px;
    border-bottom: 4px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
}

.intro-scribble::before,
.intro-scribble::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 18px;
    border-bottom: 4px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    top: 0;
}

.intro-scribble::before {
    left: 14px;
}

.intro-scribble::after {
    left: 30px;
}

.intro-scribble-left {
    top: 208px;
    left: 36px;
    transform: rotate(22deg);
}

.intro-scribble-right {
    right: 38px;
    bottom: 126px;
    transform: rotate(-32deg);
}

.intro-footer-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 6;
}

.intro-footer-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(45, 47, 51, 0.52);
}

.contact-only-frame {
    min-height: auto;
    padding: 34px;
}

.contact-text-group + .contact-text-group {
    margin-top: 18px;
}

.contact-block-title {
    margin: 18px 0 10px;
    color: rgba(246, 239, 228, 0.9);
    font-weight: 700;
}

.contact-agreement-shell {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.contact-agreement-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 16px 24px;
    border: 1px solid rgba(246, 239, 228, 0.12);
    border-radius: 18px;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.contact-agreement {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: max-content;
    max-width: 100%;
    color: rgba(246, 239, 228, 0.82);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
}

.contact-only-copy {
    top: 32px;
}

.contact-only-copy h2 {
    max-width: 580px;
}

@media (max-width: 1200px) {
    .intro-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .intro-copy-inner {
        max-width: none;
        padding: 104px 34px 56px;
    }

    .intro-visual-panel {
        min-height: 620px;
    }

    .intro-burst {
        top: 72px;
    }

    .contact-only-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .intro-hero-frame {
        border-radius: 28px;
    }

    .intro-browser {
        min-height: auto;
    }

    .intro-copy-inner {
        padding: 96px 24px 42px;
    }

    .intro-copy-inner h1 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .intro-copy-inner p,
    .intro-points li,
    .intro-note {
        font-size: 16px;
        line-height: 1.72;
    }

    .intro-visual-panel {
        min-height: 500px;
    }

    .intro-character {
        width: min(420px, 78%);
    }
}

@media (max-width: 720px) {
    .intro-toolbar {
        top: 14px;
        left: 14px;
        right: 14px;
    }

    .intro-logo-box {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .radio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }

    .audio-toggle-button {
        width: 44px;
        height: 44px;
        border-width: 3px;
    }

    .intro-copy-inner {
        padding: 84px 18px 34px;
    }

    .intro-visual-panel {
        min-height: 400px;
    }

    .intro-burst {
        width: 150px;
        height: 150px;
        top: 64px;
    }

    .intro-spark-one {
        right: 54px;
    }

    .intro-scribble-left {
        left: 18px;
    }

    .intro-scribble-right {
        right: 18px;
        bottom: 92px;
    }

    .contact-only-frame {
        padding: 20px 18px;
    }

    .contact-agreement-section {
        padding: 12px 16px;
        border-radius: 16px;
    }

    .contact-agreement {
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }
}


.contact-stacked-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-rules-shell {
    padding: 4px 2px 0;
}

.contact-rules-copy h2 {
    max-width: none;
    margin-bottom: 6px;
}

.contact-rules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 16px;
}

.contact-rules-grid .contact-text-group {
    margin-top: 0;
}

.contact-rules-grid .contact-points {
    max-width: none;
}

.contact-rules-grid .contact-points li,
.contact-rules-copy p {
    color: rgba(246, 239, 228, 0.78);
}

.contact-form-shell-full {
    width: 100%;
    padding: 28px;
}

@media (max-width: 980px) {
    .contact-rules-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form-shell-full {
        padding: 20px;
    }
}


/* Removed intro top decorative notch and right-side circles */
.intro-notch,
.intro-toolbar-actions {
    display: none !important;
}

.intro-toolbar {
    justify-content: flex-start;
}


.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.success-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1200;
}

.success-modal.is-open {
    display: flex;
}

.success-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 12, 0.62);
    backdrop-filter: blur(8px);
}

.success-modal-card {
    position: relative;
    width: min(100%, 460px);
    padding: 32px 28px 26px;
    border-radius: 24px;
    background: rgba(16, 20, 19, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
    color: #f7f9f8;
}

.success-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.success-modal-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.success-modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0e1714;
    background: #40cd93;
    box-shadow: 0 14px 30px rgba(64, 205, 147, 0.32);
}

.success-modal-card h3 {
    margin: 0 0 12px;
    font-size: 1.4rem;
}

.success-modal-message {
    margin: 0 0 22px;
    color: rgba(247, 249, 248, 0.86);
    line-height: 1.65;
}

.success-modal-action {
    min-width: 140px;
}

body.modal-open {
    overflow: hidden;
}

/* Form theme: dark with purple accents */
.contact-form-shell,
.contact-form-shell-full {
    background: rgba(24, 20, 40, 0.96);
    color: #f4efff;
    border: 1px solid rgba(196, 181, 253, 0.14);
    box-shadow: 0 24px 54px rgba(10, 8, 20, 0.28);
}

.contact-form-shell .message {
    border-color: rgba(196, 181, 253, 0.12);
    background: rgba(255, 255, 255, 0.035);
}

.contact-form-shell .message code {
    background: rgba(255, 255, 255, 0.08);
}

.contact-form-shell .message-success {
    color: #e7dcff;
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(196, 181, 253, 0.20);
}

.contact-form-shell .message-warning {
    color: #f0e7ff;
    background: rgba(109, 40, 217, 0.12);
    border-color: rgba(196, 181, 253, 0.20);
}

.contact-form-shell .message-error {
    color: #ffdce9;
    background: rgba(190, 24, 93, 0.12);
    border-color: rgba(244, 114, 182, 0.18);
}

.contact-form-shell .progress-card,
.contact-form-shell .form-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(196, 181, 253, 0.12);
    backdrop-filter: blur(14px);
}

.contact-form-shell .progress-label,
.contact-form-shell .form-head p,
.contact-form-shell .field-hint,
.contact-form-shell .field-error {
    color: rgba(236, 229, 255, 0.72);
}

.contact-form-shell .progress-head strong,
.contact-form-shell .progress-count,
.contact-form-shell .form-head h3,
.contact-form-shell .field label {
    color: #faf7ff;
}

.contact-form-shell .progress-bar {
    background: rgba(255, 255, 255, 0.07);
}

.contact-form-shell .progress-bar span {
    background: #8b5cf6;
}

.contact-form-shell .step-dot {
    border-color: rgba(196, 181, 253, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(236, 229, 255, 0.72);
}

.contact-form-shell .step-dot.active,
.contact-form-shell .step-dot:hover {
    background: #8b5cf6;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.24);
}

.contact-form-shell .field-hint-link {
    border-color: rgba(196, 181, 253, 0.20);
    background: rgba(139, 92, 246, 0.12);
    color: #f3ecff;
}

.contact-form-shell .field-hint-link:hover {
    border-color: rgba(221, 214, 254, 0.30);
    background: rgba(139, 92, 246, 0.18);
}

.contact-form-shell .field input[type="text"],
.contact-form-shell .field input[type="date"],
.contact-form-shell .field input[type="tel"],
.contact-form-shell .field input[type="email"],
.contact-form-shell .field input[type="url"],
.contact-form-shell .field textarea {
    border-color: rgba(196, 181, 253, 0.14);
    background: rgba(10, 8, 22, 0.56);
    color: #fbf8ff;
}

.contact-form-shell .field input::placeholder,
.contact-form-shell .field textarea::placeholder {
    color: rgba(222, 214, 246, 0.40);
}

.contact-form-shell .field input:focus,
.contact-form-shell .field textarea:focus {
    border-color: rgba(196, 181, 253, 0.56);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.14);
}

.contact-form-shell .radio-card span {
    border-color: rgba(196, 181, 253, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(244, 239, 255, 0.82);
}

.contact-form-shell .radio-card:hover span {
    border-color: rgba(196, 181, 253, 0.28);
    background: rgba(139, 92, 246, 0.10);
}

.contact-form-shell .radio-card input:checked + span {
    border-color: rgba(196, 181, 253, 0.42);
    background: rgba(139, 92, 246, 0.16);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(139, 92, 246, 0.16);
}

.contact-form-shell .has-error input,
.contact-form-shell .has-error textarea {
    border-color: rgba(244, 114, 182, 0.36);
    box-shadow: 0 0 0 4px rgba(190, 24, 93, 0.10);
}

.contact-form-shell .btn-accent,
.success-modal .btn-accent {
    background: #8b5cf6;
    color: #fff;
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.20);
}

.contact-form-shell .btn-accent:hover,
.success-modal .btn-accent:hover {
    background: #7c3aed;
}

.contact-form-shell .btn-outline-dark {
    border-color: rgba(196, 181, 253, 0.20);
    color: #f4efff;
    background: rgba(255, 255, 255, 0.03);
}

.contact-form-shell .btn-outline-dark:hover {
    border-color: rgba(221, 214, 254, 0.30);
    background: rgba(255, 255, 255, 0.05);
}

.success-modal-card {
    background: rgba(28, 21, 46, 0.98);
    border-color: rgba(196, 181, 253, 0.16);
}

.success-modal-icon {
    color: #ffffff;
    background: #8b5cf6;
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.24);
}


/* Bold typography refinement */
button,
input,
textarea,
select {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-mark,
.hero-copy h1,
.split-head h2,
.contact-copy h2,
.about-copy h2,
.section-title,
.form-title,
.popup-card h3,
.service-card h3,
.feature-card h3,
.contact-card h3 {
    font-weight: 800 !important;
    letter-spacing: -0.035em;
}

p,
li,
label,
.main-nav a,
.field-hint,
.message,
.contact-points li,
.input,
.textarea,
.select,
.radio-card,
.checkbox-card {
    font-weight: 600;
}

.eyebrow,
.section-kicker,
.progress-label,
.field-label,
.option-label,
.step-chip,
.success-modal__title,
.nav-cta,
.btn {
    font-weight: 700 !important;
}

input::placeholder,
textarea::placeholder {
    font-weight: 500;
}


/* Form only refresh: dark admin dashboard inspired */
.contact-form-shell,
.contact-form-shell-full {
    background: #0f1424;
    color: #f7f9ff;
    border: 1px solid #20283e;
    border-radius: 30px;
    box-shadow: 0 28px 68px rgba(2, 6, 23, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.contact-form-shell .message {
    border: 1px solid #242d46;
    background: #12192c;
    border-radius: 20px;
    color: #dfe5f5;
}

.contact-form-shell .message code {
    background: #0d1220;
    color: #f7f9ff;
}

.contact-form-shell .message-success {
    color: #e8ebff;
    background: #151d33;
    border-color: #2b3560;
}

.contact-form-shell .message-warning {
    color: #ecefff;
    background: #171d31;
    border-color: #343f69;
}

.contact-form-shell .message-error {
    color: #ffd9e4;
    background: #1a1628;
    border-color: #5a2f53;
}

.contact-form-shell .progress-card,
.contact-form-shell .form-card {
    background: #131a2d;
    border: 1px solid #232c44;
    border-radius: 24px;
    backdrop-filter: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
}

.contact-form-shell .progress-card {
    padding: 24px;
}

.contact-form-shell .form-card {
    padding: 28px;
    margin-top: 18px;
}

.contact-form-shell .progress-label,
.contact-form-shell .form-head p,
.contact-form-shell .field-hint,
.contact-form-shell .field-error {
    color: #8d96b2;
}

.contact-form-shell .progress-head strong,
.contact-form-shell .progress-count,
.contact-form-shell .form-head h3,
.contact-form-shell .field label {
    color: #f7f9ff;
}

.contact-form-shell .progress-head strong {
    font-size: 24px;
}

.contact-form-shell .progress-bar {
    height: 10px;
    background: #0b1120;
    border: 1px solid #1a2236;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.38);
}

.contact-form-shell .progress-bar span {
    background: #8c7cff;
    box-shadow: 0 0 18px rgba(140, 124, 255, 0.22);
}

.contact-form-shell .step-dots {
    gap: 10px;
}

.contact-form-shell .step-dot {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border-color: #2b3551;
    background: #0e1424;
    color: #8d96b2;
    box-shadow: none;
}

.contact-form-shell .step-dot.active,
.contact-form-shell .step-dot:hover {
    border-color: #8c7cff;
    background: #181f35;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(8, 13, 30, 0.34);
}

.contact-form-shell .field-hint-link {
    border-color: #30395a;
    background: #181f35;
    color: #eef1ff;
    border-radius: 14px;
}

.contact-form-shell .field-hint-link:hover {
    border-color: #8c7cff;
    background: #1b2239;
}

.contact-form-shell .field input[type="text"],
.contact-form-shell .field input[type="date"],
.contact-form-shell .field input[type="tel"],
.contact-form-shell .field input[type="email"],
.contact-form-shell .field input[type="url"],
.contact-form-shell .field textarea {
    border-color: #25304a;
    background: #0d1324;
    color: #f8faff;
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
}

.contact-form-shell .field input::placeholder,
.contact-form-shell .field textarea::placeholder {
    color: #69748f;
}

.contact-form-shell .field input:focus,
.contact-form-shell .field textarea:focus {
    border-color: #8c7cff;
    box-shadow: 0 0 0 4px rgba(140, 124, 255, 0.14);
}

.contact-form-shell .radio-card span {
    border-color: #25304a;
    background: #0d1324;
    color: #dce2f5;
    border-radius: 16px;
}

.contact-form-shell .radio-card:hover span {
    border-color: #3a4769;
    background: #121a2d;
}

.contact-form-shell .radio-card input:checked + span {
    border-color: #8c7cff;
    background: #191f35;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(8, 13, 30, 0.28);
}

.contact-form-shell .has-error input,
.contact-form-shell .has-error textarea {
    border-color: #d16a98;
    box-shadow: 0 0 0 4px rgba(209, 106, 152, 0.10);
}

.contact-form-shell .btn {
    min-height: 52px;
    border-radius: 16px;
}

.contact-form-shell .btn-accent,
.success-modal .btn-accent {
    background: #8c7cff;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(12, 18, 37, 0.24);
}

.contact-form-shell .btn-accent:hover,
.success-modal .btn-accent:hover {
    background: #7e6cf7;
}

.contact-form-shell .btn-outline-dark {
    border-color: #313b5c;
    color: #eef1ff;
    background: #141b2f;
}

.contact-form-shell .btn-outline-dark:hover {
    border-color: #46527b;
    background: #171f35;
}

@media (max-width: 720px) {
    .contact-form-shell,
    .contact-form-shell-full {
        border-radius: 24px;
    }

    .contact-form-shell .progress-card,
    .contact-form-shell .form-card,
    .contact-form-shell .message {
        border-radius: 18px;
    }
}


.contact-form-shell .message,
.contact-form-shell .field-hint,
.contact-form-shell .progress-count {
    font-size: 15px;
}

.contact-form-shell .btn {
    font-size: 16px;
}


/* Form refinement: clearer calendar button, dd/mm/yyyy input, stronger tutorial CTA */
.contact-form-shell .date-input-group {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: stretch;
}

.contact-form-shell .date-display-input {
    min-width: 0;
    letter-spacing: 0.02em;
}

.contact-form-shell .date-picker-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 132px;
    padding: 0 18px;
    border: 1px solid rgba(163, 127, 255, 0.72);
    border-radius: 16px;
    background: #6f49d9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(76, 38, 163, 0.28);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.contact-form-shell .date-picker-trigger:hover,
.contact-form-shell .date-picker-trigger:focus-visible {
    background: #7b57e2;
    border-color: rgba(194, 171, 255, 0.92);
    box-shadow: 0 18px 34px rgba(76, 38, 163, 0.34);
    transform: translateY(-1px);
}

.contact-form-shell .date-picker-trigger span[aria-hidden="true"] {
    font-size: 17px;
}

.contact-form-shell .date-picker-native {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form-shell .field-hint-link {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 15px;
    border: 1px solid rgba(177, 147, 255, 0.76);
    background: #6f49d9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(76, 38, 163, 0.24);
}

.contact-form-shell .field-hint-link:hover,
.contact-form-shell .field-hint-link:focus-visible {
    background: #7b57e2;
    border-color: rgba(206, 188, 255, 0.92);
    box-shadow: 0 18px 34px rgba(76, 38, 163, 0.32);
}

@media (max-width: 640px) {
    .contact-form-shell .date-input-group {
        grid-template-columns: 1fr;
    }

    .contact-form-shell .date-picker-trigger,
    .contact-form-shell .field-hint-link {
        width: 100%;
    }
}


/* Form flat update: remove depth and use icon-only calendar */
.contact-form-shell,
.contact-form-shell-full {
    box-shadow: none;
}

.contact-form-shell .message,
.contact-form-shell .progress-card,
.contact-form-shell .form-card,
.contact-form-shell .progress-bar,
.contact-form-shell .step-dot,
.contact-form-shell .step-dot.active,
.contact-form-shell .step-dot:hover,
.contact-form-shell .field input[type="text"],
.contact-form-shell .field input[type="date"],
.contact-form-shell .field input[type="tel"],
.contact-form-shell .field input[type="email"],
.contact-form-shell .field input[type="url"],
.contact-form-shell .field textarea,
.contact-form-shell .radio-card span,
.contact-form-shell .radio-card input:checked + span,
.contact-form-shell .btn-accent,
.success-modal .btn-accent,
.contact-form-shell .has-error input,
.contact-form-shell .has-error textarea,
.contact-form-shell .field-hint-link,
.contact-form-shell .date-picker-trigger {
    box-shadow: none;
}

.contact-form-shell .progress-card,
.contact-form-shell .form-card,
.contact-form-shell .message,
.contact-form-shell .field input[type="text"],
.contact-form-shell .field input[type="date"],
.contact-form-shell .field input[type="tel"],
.contact-form-shell .field input[type="email"],
.contact-form-shell .field input[type="url"],
.contact-form-shell .field textarea,
.contact-form-shell .radio-card span,
.contact-form-shell .btn-outline-dark,
.contact-form-shell .btn-accent,
.success-modal .btn-accent,
.contact-form-shell .field-hint-link,
.contact-form-shell .date-picker-trigger {
    background-image: none;
}

.contact-form-shell .date-input-group {
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 10px;
}

.contact-form-shell .date-picker-trigger {
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 16px;
    border: 1px solid #8c7cff;
    background: #171f35;
    color: #ffffff;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.contact-form-shell .date-picker-trigger:hover,
.contact-form-shell .date-picker-trigger:focus-visible {
    background: #1e2742;
    border-color: #a89bff;
    transform: none;
    box-shadow: none;
}

.contact-form-shell .date-picker-trigger .date-picker-icon,
.contact-form-shell .date-picker-trigger span[aria-hidden="true"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1;
}

.contact-form-shell .date-picker-trigger .date-picker-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-form-shell .field-hint-link {
    border-color: #8c7cff;
    background: #6f49d9;
}

.contact-form-shell .field-hint-link:hover,
.contact-form-shell .field-hint-link:focus-visible {
    background: #7b57e2;
    transform: none;
}

.contact-form-shell .btn-accent,
.success-modal .btn-accent,
.contact-form-shell .radio-card input:checked + span,
.contact-form-shell .progress-bar span {
    background: #8c7cff;
}

@media (max-width: 640px) {
    .contact-form-shell .date-input-group {
        grid-template-columns: minmax(0, 1fr) 52px;
    }

    .contact-form-shell .date-picker-trigger {
        width: 52px;
    }
}

/* Fix: show audio toggle in intro toolbar and make calendar icon white */
.intro-notch {
    display: none !important;
}

.intro-toolbar {
    justify-content: space-between;
    align-items: center;
}

.intro-toolbar-actions {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.audio-toggle-button {
    position: relative;
    z-index: 8;
    flex-shrink: 0;
}

.contact-form-shell .date-picker-trigger,
.contact-form-shell .date-picker-trigger .date-picker-icon,
.contact-form-shell .date-picker-trigger span[aria-hidden="true"] {
    color: #ffffff !important;
}

.contact-form-shell .date-picker-trigger .date-picker-icon svg,
.contact-form-shell .date-picker-trigger .date-picker-icon svg path,
.contact-form-shell .date-picker-trigger .date-picker-icon svg rect,
.contact-form-shell .date-picker-trigger .date-picker-icon svg circle,
.contact-form-shell .date-picker-trigger .date-picker-icon svg line {
    fill: #ffffff !important;
    stroke: none !important;
    opacity: 1 !important;
}


.contact-form-shell .phone-input-group {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
}

.contact-form-shell .phone-country-picker {
    position: relative;
}

.contact-form-shell .phone-country-trigger,
.contact-form-shell .phone-number-input {
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
    border: 1px solid rgba(196, 181, 253, 0.14);
    background: rgba(10, 8, 22, 0.56);
    color: #fbf8ff;
    font-size: 16px;
    outline: none;
}

.contact-form-shell .phone-country-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    cursor: pointer;
}

.contact-form-shell .phone-country-trigger-flag {
    flex: 0 0 auto;
    font-size: 19px;
    line-height: 1;
}

.contact-form-shell .phone-country-trigger-code {
    flex: 1 1 auto;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.contact-form-shell .phone-country-trigger-arrow {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(251, 248, 255, 0.9);
    border-bottom: 2px solid rgba(251, 248, 255, 0.9);
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.contact-form-shell .phone-country-picker.is-open .phone-country-trigger-arrow {
    transform: rotate(225deg) translateY(-1px);
}

.contact-form-shell .phone-number-input {
    padding: 16px 18px;
}

.contact-form-shell .phone-country-trigger:focus,
.contact-form-shell .phone-number-input:focus,
.contact-form-shell .phone-country-option:focus {
    border-color: rgba(196, 181, 253, 0.56);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.14);
}

.contact-form-shell .phone-country-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: min(280px, 92vw);
    max-height: 240px;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid rgba(196, 181, 253, 0.18);
    background: rgba(13, 10, 29, 0.96);
    box-shadow: 0 18px 42px rgba(4, 2, 12, 0.5);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 30;
}

.contact-form-shell .phone-country-option {
    width: 100%;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #fbf8ff;
    text-align: left;
    cursor: pointer;
}

.contact-form-shell .phone-country-option:hover,
.contact-form-shell .phone-country-option.is-active {
    background: rgba(139, 92, 246, 0.18);
}

.contact-form-shell .phone-country-option-flag {
    font-size: 18px;
    line-height: 1;
}

.contact-form-shell .phone-country-option-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-form-shell .phone-country-option-code {
    color: rgba(251, 248, 255, 0.78);
    font-weight: 600;
}

.contact-form-shell .has-error .phone-country-trigger,
.contact-form-shell .has-error .phone-number-input {
    border-color: #d946ef;
}

@media (max-width: 640px) {
    .contact-form-shell .phone-input-group {
        grid-template-columns: 1fr;
    }

    .contact-form-shell .phone-country-menu {
        width: 100%;
    }
}
