:root {
    --bg: #f6f8fb;
    --paper: #ffffff;
    --ink: #15191f;
    --muted: #667085;
    --line: #dfe5ee;
    --soft: #eef5f3;
    --primary: #1463ff;
    --primary-dark: #0d47bf;
    --green: #0f8c6d;
    --green-dark: #08624c;
    --amber: #d97706;
    --red: #bf3f3f;
    --shadow: 0 16px 38px rgba(16, 24, 40, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
}

body {
    margin: 0;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.55;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 18px 14px 10px;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
}

.brand-name {
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.brand-stack {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.top-nav {
    display: none;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

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

.home-shell,
.form-shell {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 10px 14px 38px;
}

.home-hero {
    display: grid;
    gap: 18px;
    align-items: stretch;
    min-height: 540px;
    padding: 28px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 243, 0.9)),
        url("/assets/mobile-form-texture.svg") right bottom / min(78vw, 560px) auto no-repeat;
    box-shadow: var(--shadow);
}

.hero-text {
    align-self: center;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--amber);
    font-size: 13px;
    font-weight: 900;
}

.home-hero h1 {
    max-width: 780px;
    margin-bottom: 16px;
    font-size: clamp(34px, 7vw, 62px);
    line-height: 1.05;
    letter-spacing: 0;
}

.lead {
    max-width: 680px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.primary-link,
.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
}

.primary-link {
    background: var(--primary);
    color: #fff;
}

.primary-link:hover {
    background: var(--primary-dark);
}

.secondary-link {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

.hero-board {
    display: grid;
    gap: 10px;
    align-self: end;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
}

.board-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.board-row span {
    color: var(--muted);
    font-size: 13px;
}

.board-row strong {
    color: var(--ink);
    font-size: 15px;
}

.board-row.highlight {
    border-color: rgba(20, 99, 255, 0.32);
    background: #eef4ff;
}

.section-block {
    margin-top: 16px;
    padding: 22px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.section-heading {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
}

.section-heading p {
    margin: 0;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.section-heading h2,
.capability-band h2 {
    margin: 0;
    font-size: clamp(24px, 5vw, 38px);
    line-height: 1.16;
    letter-spacing: 0;
}

.section-heading span {
    max-width: 820px;
    color: var(--muted);
    font-size: 14px;
}

.service-grid {
    display: grid;
    gap: 12px;
}

.service-card {
    display: grid;
    align-content: start;
    min-height: 210px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.service-card-primary {
    border-color: rgba(20, 99, 255, 0.45);
    background: #f2f6ff;
}

.service-kicker {
    width: max-content;
    margin-bottom: 14px;
    padding: 4px 8px;
    border-radius: 8px;
    background: #e8f6f2;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.22;
}

.service-card p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.service-card strong {
    align-self: end;
    color: var(--primary);
    font-size: 15px;
}

.proof-section,
.brand-proof-section {
    overflow: hidden;
}

.proof-grid,
.brand-proof-grid {
    display: grid;
    gap: 12px;
}

.proof-grid article,
.brand-proof-grid article {
    min-height: 190px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.proof-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.proof-grid h3,
.brand-proof-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.25;
}

.proof-grid p,
.brand-proof-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.brand-proof-grid article:first-child {
    border-color: rgba(20, 99, 255, 0.34);
    background: #f2f6ff;
}

.brand-proof-grid article:nth-child(2) {
    border-color: rgba(15, 140, 109, 0.28);
    background: #f0f8f5;
}

.pending-link {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 30px;
    margin-top: 14px;
    padding: 6px 9px;
    border-radius: 8px;
    background: #f6f8fb;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.showcase-grid {
    display: grid;
    gap: 14px;
}

.showcase-card {
    display: grid;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.showcase-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #eef2f7;
}

.showcase-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.showcase-thumb:hover img {
    transform: scale(1.02);
}

.showcase-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.showcase-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.22;
}

.showcase-card p {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 14px;
}

.showcase-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.showcase-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 11px;
    border-radius: 8px;
    background: #eef4ff;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
}

.showcase-links a:hover {
    background: #dfeaff;
}

.split-section {
    display: grid;
    gap: 18px;
}

.workflow-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.workflow-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.workflow-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.workflow-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.capability-band {
    display: grid;
    gap: 18px;
    background: #101820;
    color: #fff;
}

.capability-band .eyebrow {
    color: #f7b955;
}

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

.capability-grid span {
    min-height: 44px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 750;
}

.site-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 14px 28px;
    color: var(--muted);
    font-size: 13px;
}

.site-footer a:hover {
    color: var(--primary);
}

.form-hero {
    display: grid;
    gap: 14px;
    align-items: stretch;
}

.hero-copy,
.summary-panel,
.lead-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.form-page .hero-copy {
    min-height: 342px;
    padding: 24px 20px;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 243, 0.9)),
        url("/assets/glasses-brief.svg") right bottom / min(68vw, 520px) auto no-repeat;
}

.form-page .hero-copy .brand-mark {
    background: var(--primary);
}

.form-page .hero-copy .eyebrow {
    margin-top: 34px;
}

.form-page .hero-copy h1 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: clamp(30px, 8vw, 56px);
    line-height: 1.05;
    letter-spacing: 0;
}

.proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.proof-row span {
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid rgba(20, 99, 255, 0.2);
    border-radius: 8px;
    background: #eef4ff;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
}

.summary-panel {
    padding: 20px;
}

.summary-panel strong {
    display: block;
    margin-bottom: 10px;
    color: var(--green-dark);
    font-size: 18px;
}

.summary-panel ol {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.lead-card {
    margin-top: 14px;
    padding: 18px;
}

.form-heading {
    display: grid;
    gap: 3px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.form-heading p {
    margin: 0;
    color: var(--amber);
    font-size: 13px;
    font-weight: 900;
}

.form-heading h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.18;
}

.form-heading span {
    color: var(--muted);
    font-size: 14px;
}

form {
    display: grid;
    gap: 16px;
}

.form-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0;
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
    border-bottom: 0;
}

legend {
    margin-bottom: 2px;
    padding: 0;
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 900;
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 14px;
}

label span,
.group-title {
    color: var(--ink);
    font-weight: 800;
}

em {
    color: var(--red);
    font-style: normal;
}

small {
    color: var(--muted);
    font-size: 12px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input[type="file"] {
    padding: 10px;
}

textarea {
    min-height: 112px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 99, 255, 0.14);
}

.choice-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

.choice-group .group-title {
    margin-bottom: 1px;
}

.choice-group label {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.choice-group input {
    width: 18px;
    min-height: 18px;
    flex: 0 0 auto;
    accent-color: var(--primary);
}

.choice-group span {
    color: var(--ink);
    font-weight: 650;
}

.is-error {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px rgba(191, 63, 63, 0.1);
}

.choice-group.is-error label {
    border-color: rgba(191, 63, 63, 0.55);
}

.trap {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.submit-button {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.16s ease, transform 0.16s ease;
}

.submit-button:active {
    transform: translateY(1px);
}

.submit-button:hover {
    background: var(--primary-dark);
}

.submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.form-message {
    min-height: 22px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.is-success {
    color: var(--green-dark);
}

.is-error-text {
    color: var(--red);
}

@media (min-width: 760px) {
    .site-header {
        padding: 24px 22px 12px;
    }

    .top-nav {
        display: flex;
    }

    .home-shell,
    .form-shell {
        padding: 14px 22px 48px;
    }

    .home-hero {
        grid-template-columns: minmax(0, 1fr) 330px;
        padding: 42px 34px;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-grid,
    .brand-proof-grid,
    .showcase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-section,
    .capability-band {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: start;
    }

    .capability-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 22px 34px;
    }

    .form-hero {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .summary-panel {
        align-self: stretch;
    }

    .lead-card {
        padding: 26px;
    }

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

    .full,
    legend,
    .submit-button,
    .form-message,
    .trap,
    input[type="hidden"] {
        grid-column: 1 / -1;
    }

    .choice-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .choice-group .group-title {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1040px) {
    .service-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .choice-group {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.corporate-home {
    background: #f7f8f6;
}

.corporate-header {
    position: relative;
    z-index: 3;
    width: min(100%, 1280px);
    padding-top: 20px;
}

.corporate-header .brand-mark {
    background: #111318;
}

.corporate-header .brand-name {
    color: #fff;
    font-size: 15px;
}

.corporate-header .brand-subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.corporate-header .top-nav {
    color: rgba(255, 255, 255, 0.74);
}

.corporate-header .top-nav a:hover {
    color: #fff;
}

.corporate-main {
    width: 100%;
}

.corporate-hero {
    position: relative;
    min-height: 640px;
    display: grid;
    align-items: end;
    overflow: hidden;
    margin-top: -70px;
    color: #fff;
    background: #111318;
}

.corporate-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 13, 18, 0.92) 0%, rgba(11, 13, 18, 0.62) 42%, rgba(11, 13, 18, 0.18) 72%, rgba(11, 13, 18, 0.06) 100%),
        var(--hero-bg-image, url("/assets/showcase/hero-ai-beauty-4k.jpg")) center / cover no-repeat;
}

.corporate-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 170px;
    background: linear-gradient(180deg, rgba(17, 19, 24, 0), #f7f8f6);
}

.corporate-hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 150px 18px 96px;
}

.hero-kicker {
    margin-bottom: 14px;
    color: #f0b35a;
    font-size: 13px;
    font-weight: 900;
}

.corporate-hero h1 {
    max-width: 860px;
    margin-bottom: 18px;
    font-size: clamp(42px, 8vw, 82px);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 760px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

.corporate-hero .secondary-link {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 680px;
    margin-top: 34px;
}

.hero-proof span {
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 850;
}

.corporate-band {
    width: 100%;
    padding: 54px 18px;
}

.corporate-band:nth-of-type(odd) {
    background: #fff;
}

.section-inner {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.two-column {
    display: grid;
    gap: 26px;
}

.corporate-home .section-heading {
    margin-bottom: 24px;
}

.corporate-home .section-heading p {
    color: #a16207;
}

.corporate-home .section-heading h2 {
    max-width: 820px;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.12;
}

.group-copy {
    display: grid;
    gap: 14px;
    color: #4f5865;
    font-size: 16px;
}

.group-copy p {
    margin: 0;
}

.channel-grid {
    display: grid;
    gap: 12px;
}

.channel-item {
    display: grid;
    align-content: start;
    min-height: 250px;
    padding: 20px;
    border: 1px solid #dde3eb;
    border-radius: 8px;
    background: #fff;
}

.channel-item.featured {
    border-color: rgba(20, 99, 255, 0.35);
    background: #f2f6ff;
}

.channel-item span,
.showcase-card span {
    margin-bottom: 12px;
    color: #0f8c6d;
    font-size: 12px;
    font-weight: 900;
}

.channel-item h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.18;
}

.channel-item p {
    margin-bottom: 18px;
    color: #5f6b7a;
    font-size: 14px;
}

.channel-item em {
    align-self: end;
    width: max-content;
    max-width: 100%;
    padding: 7px 10px;
    border-radius: 8px;
    background: #eef1f5;
    color: #647084;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.ghost-link {
    width: max-content;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
}

.showcase-band {
    background: #101216;
    color: #fff;
}

.showcase-band .section-heading h2 {
    color: #fff;
}

.showcase-band .section-heading span {
    color: rgba(255, 255, 255, 0.7);
}

.corporate-home .showcase-grid {
    display: grid;
    gap: 16px;
}

.corporate-home .showcase-card {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.corporate-home .showcase-card > div {
    padding: 18px;
}

.corporate-home .showcase-card h3 {
    color: #fff;
}

.corporate-home .showcase-card p {
    color: rgba(255, 255, 255, 0.7);
}

.corporate-home .showcase-thumb {
    border: 0;
    border-radius: 0;
    background: #22252d;
}

.corporate-home .showcase-links a {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.corporate-home .showcase-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.services-band {
    background: #fff;
}

.premium-service-grid {
    display: grid;
    gap: 12px;
}

.corporate-home .service-card {
    min-height: 230px;
    box-shadow: none;
}

.business-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.business-action-row span {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 13px;
    font-weight: 900;
}

.platform-band {
    background: #f4f8f7;
}

.platform-grid {
    display: grid;
    gap: 14px;
}

.platform-card {
    min-height: 240px;
    padding: 20px;
    border: 1px solid #dbe5e2;
    border-radius: 8px;
    background: #fff;
}

.platform-card > span {
    display: block;
    margin-bottom: 12px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
}

.platform-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.2;
}

.platform-card p {
    margin-bottom: 16px;
    color: #5f6b7a;
    font-size: 14px;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.platform-tags em {
    padding: 6px 9px;
    border-radius: 8px;
    background: #ecfdf3;
    color: #0f766e;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.progress-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid #dbe5e2;
    border-radius: 8px;
    background: #fff;
}

.progress-strip span {
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #eef4ff;
    color: #0d47bf;
    font-size: 13px;
    font-weight: 900;
}

.form-entry-band {
    background: #f7f8f6;
}

.form-entry {
    display: grid;
    gap: 18px;
    align-items: center;
    padding: 28px;
    border: 1px solid #dfe5ee;
    border-radius: 8px;
    background: #fff;
}

.form-entry h2 {
    margin-bottom: 10px;
    font-size: clamp(26px, 5vw, 42px);
    line-height: 1.15;
}

.form-entry p {
    margin: 0;
    color: #5f6b7a;
}

.corporate-footer {
    padding-top: 22px;
}

@media (max-width: 759px) {
    .corporate-header {
        width: 100%;
        padding: 10px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(9, 13, 22, 0.82);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(16px);
    }

    .corporate-header .brand-mark {
        background: rgba(255, 255, 255, 0.96);
        color: #111318;
    }

    .corporate-header .brand-name {
        color: #fff;
    }

    .corporate-header .brand-subtitle {
        color: rgba(255, 255, 255, 0.82);
    }

    .corporate-hero {
        margin-top: 0;
        min-height: 620px;
    }

    .corporate-hero-bg {
        background:
            linear-gradient(180deg, rgba(6, 10, 18, 0.72) 0%, rgba(6, 10, 18, 0.58) 42%, rgba(6, 10, 18, 0.34) 100%),
            linear-gradient(90deg, rgba(6, 10, 18, 0.86) 0%, rgba(6, 10, 18, 0.52) 58%, rgba(6, 10, 18, 0.18) 100%),
            var(--hero-bg-image, url("/assets/showcase/hero-ai-beauty-4k.jpg")) center / cover no-repeat;
    }

    .corporate-hero-inner {
        padding-top: 64px;
        padding-bottom: 70px;
    }

    .corporate-hero h1 {
        font-size: clamp(38px, 13vw, 54px);
    }
}

@media (min-width: 760px) {
    .corporate-hero-inner {
        padding-left: 28px;
        padding-right: 28px;
    }

    .hero-proof {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .corporate-band {
        padding: 72px 28px;
    }

    .two-column {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: start;
    }

    .channel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .corporate-home .showcase-grid,
    .premium-service-grid,
    .platform-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-entry {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 34px;
    }
}

@media (min-width: 1040px) {
    .channel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .corporate-home .showcase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .premium-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
