:root {
    --zuad-ink: #102b3e;
    --zuad-blue: #3b55d7;
    --zuad-cyan: #17a9d5;
    --zuad-orange: #ff8437;
    --zuad-paper: #f7f7f4;
    --zuad-muted: #6d7c87;
    --zuad-line: #dce5ea;
}

.zuad-admin-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px !important;
    border: 1px solid var(--zuad-blue);
    border-radius: 999px;
    color: var(--zuad-blue) !important;
    font-weight: 700;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.zuad-admin-link:hover,
.zuad-admin-link:focus {
    color: #fff !important;
    background: var(--zuad-blue);
    transform: translateY(-1px);
}

.card-carousel-visual {
    position: relative;
}

.card-carousel-phone {
    position: absolute;
    top: 27%;
    left: 4%;
    z-index: 3;
    width: 178px;
    margin: 0;
    overflow: hidden;
    border: 7px solid #1a2025;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 24px 50px rgba(16, 43, 62, .28);
    transform: rotate(-3deg);
}

.card-carousel-phone img {
    position: static !important;
    display: block;
    width: 100% !important;
    height: auto !important;
}

.card-carousel-badge {
    position: absolute;
    right: 4%;
    bottom: 13%;
    z-index: 3;
    max-width: 230px;
    padding: 10px 15px;
    border-radius: 999px;
    color: #fff;
    background: rgba(16, 43, 62, .9);
    box-shadow: 0 10px 24px rgba(16, 43, 62, .2);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.home-card-hero {
    position: relative;
    overflow: hidden;
    min-height: 790px;
    color: var(--zuad-ink);
    background:
        radial-gradient(circle at 8% 88%, rgba(59, 85, 215, .1), transparent 28%),
        linear-gradient(118deg, #fff 0%, #fff 48%, #f0f4f8 71%, #e8eef3 100%);
    isolation: isolate;
}

.home-card-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .96) 39%, rgba(255, 255, 255, .38) 59%, transparent 73%);
    content: "";
    pointer-events: none;
}

.home-card-hero::after {
    position: absolute;
    right: -180px;
    bottom: -430px;
    z-index: 1;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(59, 85, 215, .2);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.home-card-hero-person {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 64%;
    overflow: hidden;
    clip-path: ellipse(76% 82% at 77% 50%);
}

.home-card-hero-person::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .2) 38%, transparent 64%);
    content: "";
}

.home-card-hero-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}

.home-card-hero-container {
    position: relative;
    z-index: 2;
    padding-top: 205px;
    padding-bottom: 70px;
}

.home-card-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(510px, 1.02fr);
    gap: 30px;
    align-items: center;
    min-height: 515px;
}

.home-card-hero-copy {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.home-card-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--zuad-blue);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .08em;
}

.home-card-eyebrow::before {
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--zuad-orange);
    content: "";
}

.home-card-hero-copy h1 {
    max-width: 690px;
    margin: 0 0 22px;
    color: var(--zuad-ink);
    font-size: clamp(44px, 4vw, 62px);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -.035em;
}

.home-card-hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: #667985;
    font-size: 18px;
    line-height: 1.8;
}

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

.home-card-primary,
.home-card-secondary {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 13px 27px;
    border: 2px solid var(--zuad-blue);
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.home-card-primary {
    color: #fff !important;
    background: var(--zuad-blue);
    box-shadow: 0 14px 30px rgba(59, 85, 215, .22);
}

.home-card-secondary {
    color: var(--zuad-blue) !important;
    background: rgba(255, 255, 255, .82);
}

.home-card-primary:hover,
.home-card-secondary:hover {
    transform: translateY(-2px);
}

.home-card-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 690px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(59, 85, 215, .18);
}

.home-card-benefit {
    min-width: 0;
    padding-right: 18px;
}

.home-card-benefit + .home-card-benefit {
    padding-left: 18px;
    border-left: 1px solid rgba(59, 85, 215, .15);
}

.home-card-benefit strong,
.home-card-benefit span {
    display: block;
}

.home-card-benefit strong {
    margin-bottom: 4px;
    color: var(--zuad-blue);
    font-size: 17px;
}

.home-card-benefit span {
    color: #7b8c96;
    font-size: 13px;
    line-height: 1.5;
}

.home-card-hero-visual {
    position: relative;
    z-index: 3;
    min-height: 515px;
}

.home-card-phone {
    position: absolute;
    top: 4px;
    left: 6%;
    width: 225px;
    overflow: hidden;
    border: 8px solid #1a2025;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0 28px 64px rgba(28, 48, 61, .26);
    transform: rotate(-3deg);
}

.home-card-phone img {
    display: block;
    width: 100%;
}

.home-card-ui-label,
.home-card-proof {
    position: absolute;
    z-index: 4;
    border-radius: 999px;
    color: #fff;
    background: rgba(16, 43, 62, .9);
    box-shadow: 0 10px 24px rgba(16, 43, 62, .16);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.home-card-ui-label {
    top: 18px;
    left: 0;
    padding: 8px 12px;
}

.home-card-proof {
    right: 2%;
    bottom: 24px;
    padding: 10px 15px;
}

.home-card-owner-preview {
    position: absolute;
    right: 3%;
    bottom: 84px;
    z-index: 4;
    width: 190px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 20px 44px rgba(31, 52, 67, .18);
    backdrop-filter: blur(12px);
}

.home-card-owner-preview > span {
    display: block;
    margin-bottom: 8px;
    color: var(--zuad-ink);
    font-size: 12px;
    font-weight: 800;
}

.home-card-owner-preview > div {
    height: 150px;
    overflow: hidden;
    border: 1px solid #e3e8eb;
    border-radius: 9px;
    background: #fff;
}

.home-card-owner-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.card-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #78d8ef;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
}

.card-eyebrow::before {
    width: 28px;
    height: 2px;
    background: var(--zuad-orange);
    content: "";
}

.card-detail-hero h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(38px, 4.1vw, 62px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
}

.card-detail-hero .lead {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    line-height: 1.8;
}

.card-launch-actions,
.card-section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.card-primary-button,
.card-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
    cursor: pointer;
}

.card-primary-button {
    color: #102b3e !important;
    background: var(--zuad-orange);
    box-shadow: 0 12px 28px rgba(255, 132, 55, .24);
}

.card-secondary-button {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .06);
}

.card-primary-button:hover,
.card-secondary-button:hover {
    transform: translateY(-2px);
}

.home-card-perspectives {
    position: relative;
    clear: both;
    overflow: hidden;
    width: 100%;
    padding: 72px 0 78px;
    border-top: 1px solid #edf1f6;
    background: #fff;
}

.home-card-perspectives::after {
    position: absolute;
    right: -250px;
    bottom: -350px;
    width: 660px;
    height: 660px;
    border: 1px solid rgba(59, 85, 215, .12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.home-card-perspectives-layout {
    display: grid;
    grid-template-columns: minmax(440px, .95fr) minmax(0, 1.05fr);
    gap: 78px;
    align-items: center;
}

.home-card-perspectives-visual {
    position: relative;
    min-height: 520px;
}

.home-card-perspectives-visual::before {
    position: absolute;
    top: 24px;
    left: -42px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 32%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .5) 28%, transparent 29%),
        linear-gradient(145deg, rgba(59, 85, 215, .15), rgba(23, 169, 213, .06));
    content: "";
}

.home-card-perspectives-visual::after {
    position: absolute;
    top: 63px;
    left: -4px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(59, 85, 215, .2);
    border-radius: 50%;
    content: "";
}

.home-card-device {
    position: absolute;
    z-index: 2;
    margin: 0;
}

.home-card-device figcaption {
    position: absolute;
    top: -15px;
    z-index: 3;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(59, 85, 215, .94);
    box-shadow: 0 8px 20px rgba(59, 85, 215, .2);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.home-card-device-frame {
    overflow: hidden;
    border: 7px solid #1a2025;
    border-radius: 27px;
    background: #fff;
    box-shadow: 0 24px 52px rgba(25, 47, 65, .2);
}

.home-card-device-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.home-card-device-owner {
    top: 88px;
    left: 34px;
    width: 198px;
    transform: rotate(-5deg);
}

.home-card-device-owner figcaption {
    left: -14px;
}

.home-card-device-visitor {
    top: 12px;
    right: 18px;
    width: 232px;
    transform: rotate(3deg);
}

.home-card-device-visitor figcaption {
    right: -12px;
}

.home-card-perspectives-copy {
    position: relative;
    z-index: 2;
    max-width: 570px;
}

.home-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--zuad-blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .06em;
}

.home-section-kicker::before {
    width: 28px;
    height: 2px;
    background: var(--zuad-orange);
    content: "";
}

.home-card-perspectives-copy h2,
.home-workflow-heading h2 {
    margin: 0 0 16px;
    color: var(--zuad-blue);
    font-size: clamp(34px, 3.2vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.home-section-lead,
.home-workflow-heading > p {
    margin: 0;
    color: #7c858e;
    font-size: 17px;
    line-height: 1.8;
}

.home-audience-list {
    margin-top: 27px;
    border-top: 1px solid #e5e9ef;
    border-bottom: 1px solid #e5e9ef;
}

.home-audience-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 19px 0;
}

.home-audience-item + .home-audience-item {
    border-top: 1px solid #e5e9ef;
}

.home-audience-index {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 85, 215, .3);
    border-radius: 50%;
    color: var(--zuad-blue);
    background: #fff;
    font-size: 12px;
    font-weight: 800;
}

.home-audience-item h3 {
    margin: 0 0 5px;
    color: #1d3343;
    font-size: 19px;
    font-weight: 700;
}

.home-audience-item p {
    margin: 0;
    color: #808a92;
    font-size: 14px;
    line-height: 1.65;
}

.home-card-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--zuad-blue) !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    transition: gap .2s ease, color .2s ease;
}

.home-card-text-link:hover,
.home-card-text-link:focus {
    gap: 13px;
    color: var(--zuad-cyan) !important;
}

.home-workflow-section {
    position: relative;
    overflow: hidden;
    padding: 62px 0 66px;
    background:
        linear-gradient(115deg, rgba(59, 85, 215, .055), transparent 46%),
        #f7f8fb;
}

.home-workflow-layout {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.58fr);
    gap: 68px;
    align-items: center;
}

.home-workflow-heading h2 {
    font-size: clamp(30px, 2.65vw, 39px);
}

.home-workflow-content {
    min-width: 0;
}

.home-workflow-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.home-workflow-track::before {
    position: absolute;
    top: 30px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 85, 215, .3), rgba(23, 169, 213, .55));
    content: "";
}

.home-workflow-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-workflow-index {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid rgba(59, 85, 215, .55);
    border-radius: 50%;
    color: var(--zuad-blue);
    background: #fff;
    box-shadow: 0 8px 22px rgba(59, 85, 215, .1);
    font-size: 13px;
    font-weight: 800;
}

.home-workflow-step strong,
.home-workflow-step span {
    display: block;
}

.home-workflow-step strong {
    margin-bottom: 6px;
    color: #1d3343;
    font-size: 16px;
    font-weight: 700;
}

.home-workflow-step div > span {
    color: #858e96;
    font-size: 13px;
    line-height: 1.5;
}

.home-workflow-extension {
    margin: 28px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(59, 85, 215, .15);
    color: #7c858e;
    font-size: 14px;
    text-align: center;
}

.home-workflow-extension strong {
    margin-right: 7px;
    color: var(--zuad-blue);
}


.card-section {
    padding: 80px 0;
}

.card-section.card-section-soft {
    background: var(--zuad-paper);
}

.card-section.card-section-dark {
    color: #fff;
    background: var(--zuad-ink);
}

.card-section-heading {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.card-section-heading.is-left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.card-section-heading h2 {
    margin: 0 0 15px;
    color: var(--zuad-ink);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.2;
}

.card-section-dark .card-section-heading h2 {
    color: #fff;
}

.card-section-heading p {
    margin: 0;
    color: var(--zuad-muted);
    font-size: 17px;
    line-height: 1.8;
}

.card-section-dark .card-section-heading p {
    color: rgba(255, 255, 255, .68);
}

.card-value-grid,
.card-service-grid,
.card-deploy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

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

.card-value-item,
.card-service-item,
.card-deploy-item {
    min-height: 190px;
    padding: 28px;
    border: 1px solid var(--zuad-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(31, 62, 81, .06);
}

.card-value-index {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #fff;
    background: var(--zuad-blue);
    font-weight: 800;
}

.card-value-item h3,
.card-service-item h3,
.card-deploy-item h3 {
    margin: 0 0 12px;
    color: var(--zuad-ink);
    font-size: 21px;
    font-weight: 800;
}

.card-value-item p,
.card-service-item p,
.card-deploy-item p {
    margin: 0;
    color: var(--zuad-muted);
    font-size: 15px;
    line-height: 1.75;
}

.card-journey {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--zuad-line);
    border-radius: 16px;
    background: #fff;
}

.card-journey-step {
    position: relative;
    padding: 30px 22px;
    text-align: center;
}

.card-journey-step:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -8px;
    z-index: 2;
    color: var(--zuad-cyan);
    content: "›";
    font-size: 28px;
    transform: translateY(-50%);
}

.card-journey-step strong {
    display: block;
    margin-bottom: 7px;
    color: var(--zuad-ink);
    font-size: 18px;
}

.card-journey-step span {
    color: var(--zuad-muted);
    font-size: 14px;
}

.card-preview-layout,
.card-company-layout,
.site-contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    gap: 64px;
    align-items: center;
}

.card-preview-phones {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.card-preview-phone {
    width: 220px;
    overflow: hidden;
    border: 8px solid #1b2227;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(16, 43, 62, .18);
}

.card-preview-phone img {
    display: block;
    width: 100%;
}

.card-feature-list {
    display: grid;
    gap: 20px;
}

.card-feature-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
}

.card-feature-row .icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: var(--zuad-cyan);
    font-weight: 800;
}

.card-feature-row h3 {
    margin: 0 0 5px;
    color: var(--zuad-ink);
    font-size: 20px;
    font-weight: 800;
}

.card-feature-row p {
    margin: 0;
    color: var(--zuad-muted);
    line-height: 1.7;
}

.card-company-screen {
    overflow: hidden;
    border: 10px solid #1b2227;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(16, 43, 62, .18);
}

.card-company-screen img {
    display: block;
    width: 100%;
}

.card-platform-band {
    padding: 34px;
    border-radius: 16px;
    background: linear-gradient(135deg, #112f45, #164d69);
}

.card-platform-band h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.card-platform-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.card-platform-modules span {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.card-detail-hero {
    padding: 70px 0;
    color: #fff;
    background: linear-gradient(125deg, #0b283c, #174d69);
}

.card-detail-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 60px;
    align-items: center;
}

.card-detail-hero-visual {
    overflow: hidden;
    border: 9px solid rgba(255, 255, 255, .16);
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .25);
}

.card-detail-hero-visual img {
    display: block;
    width: 100%;
}

.card-logo-wall {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.card-logo-cell {
    display: flex;
    min-height: 120px;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border: 1px solid var(--zuad-line);
    border-radius: 12px;
    background: #fff;
}

.card-logo-cell.is-dark {
    background: #18232b;
}

.card-logo-cell.is-blue {
    background: #19768f;
}

.card-logo-cell.is-red {
    background: #e82334;
}

.card-logo-cell img {
    max-width: 86%;
    max-height: 64px;
    object-fit: contain;
}

.card-cta-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 38px 44px;
    border-radius: 18px;
    color: #fff;
    background: var(--zuad-ink);
}

.card-cta-band h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
}

.card-cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
}

.card-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    padding: 24px;
    align-items: center;
    justify-content: center;
    background: rgba(5, 20, 31, .78);
}

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

.card-modal-dialog {
    position: relative;
    width: min(420px, 100%);
    padding: 34px;
    border-radius: 18px;
    text-align: center;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.card-modal-dialog img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

.card-modal-dialog h2 {
    margin: 18px 0 8px;
    color: var(--zuad-ink);
    font-size: 26px;
}

.card-modal-dialog p {
    margin: 0;
    color: var(--zuad-muted);
}

.card-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: var(--zuad-ink);
    background: #eef3f5;
    font-size: 24px;
    cursor: pointer;
}

.card-modal-open {
    overflow: hidden;
}

.site-contact-panel {
    padding: 34px;
    border: 1px solid var(--zuad-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(16, 43, 62, .08);
}

.site-contact-form {
    display: grid;
    gap: 16px;
}

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

.site-contact-form label {
    display: grid;
    gap: 7px;
    color: var(--zuad-ink);
    font-weight: 700;
}

.site-contact-form input,
.site-contact-form textarea {
    width: 100%;
    border: 1px solid #cfdbe1;
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--zuad-ink);
    background: #fff;
}

.site-contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.site-contact-status {
    min-height: 24px;
    margin: 0;
    font-size: 14px;
}

.site-contact-status.is-error {
    color: #a63434;
}

.site-contact-status.is-success {
    color: #167348;
}

.home-card-static-hero {
    clear: both;
    overflow: hidden;
}

.home-card-static-copy {
    padding-bottom: 60px;
}

.card-static-visual {
    position: relative;
}

.card-static-visual > .card-static-person {
    display: block;
    width: 100%;
}

.card-static-phone {
    position: absolute;
    top: 27%;
    left: 4%;
    z-index: 3;
    width: 178px;
    margin: 0;
    overflow: hidden;
    border: 7px solid #1a2025;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 24px 50px rgba(16, 43, 62, .28);
    transform: rotate(-3deg);
}

.card-static-phone img {
    position: static !important;
    display: block;
    width: 100% !important;
    height: auto !important;
}

.card-static-badge {
    position: absolute;
    right: 4%;
    bottom: 13%;
    z-index: 3;
    max-width: 230px;
    padding: 10px 15px;
    border-radius: 999px;
    color: #fff;
    background: rgba(16, 43, 62, .9);
    box-shadow: 0 10px 24px rgba(16, 43, 62, .2);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.read_more_bt .home-card-detail-button .home-card-detail-icon {
    width: 60px;
    height: 60px;
    border: solid #3b55d7 3px;
    border-radius: 100%;
    line-height: 54px;
    color: #3b55d7;
    background: #fff;
    font-size: 20px;
    font-weight: 500;
}

.read_more_bt .home-card-detail-button .home-card-detail-label {
    position: static;
    display: inline;
    float: none;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: 50px;
}

.home-product-section,
.home-other-section {
    position: relative;
    clear: both;
    overflow: hidden;
    width: 100%;
}

.home-product-section {
    padding: 72px 0;
    background: #fff;
}

.home-visitor-section {
    background: #f7f8fb;
}

.home-product-section > .container,
.home-other-section > .container {
    padding-right: clamp(26px, 5vw, 72px);
    padding-left: clamp(26px, 5vw, 72px);
}

.home-product-section-layout {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
    gap: clamp(38px, 5vw, 68px);
    align-items: center;
}

.home-product-section.is-reversed .home-product-copy {
    order: 2;
}

.home-product-section.is-reversed .home-product-visual {
    order: 1;
}

.home-product-number {
    display: block;
    margin-bottom: 8px;
    color: rgba(59, 85, 215, .18);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
}

.home-product-copy {
    max-width: 500px;
}

.home-product-copy h2,
.home-other-heading h2 {
    margin: 0 0 18px;
    color: var(--zuad-blue);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.home-product-copy h2 {
    font-size: clamp(34px, 3.2vw, 46px);
}

.home-product-copy > p,
.home-other-heading > p {
    margin: 0;
    color: #7a858d;
    font-size: 16px;
    line-height: 1.8;
}

.home-product-points {
    display: grid;
    gap: 11px;
    margin: 25px 0 27px;
    padding: 0;
    list-style: none;
}

.home-product-points li {
    position: relative;
    padding-left: 23px;
    color: #344b5c;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.home-product-points li::before {
    position: absolute;
    top: .55em;
    left: 0;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--zuad-blue);
    box-shadow: 0 0 0 2px rgba(59, 85, 215, .16);
    content: "";
}

.home-section-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--zuad-blue) !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
}

.home-section-detail-link span:last-child {
    font-size: 21px;
    transition: transform .2s ease;
}

.home-section-detail-link:hover span:last-child {
    transform: translateX(4px);
}

.home-product-visual {
    position: relative;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    border-radius: 0 0 44% 0;
    background: #edf2f5;
    box-shadow: 0 24px 54px rgba(35, 58, 74, .14);
}

.home-product-section.is-reversed .home-product-visual {
    border-radius: 0 0 0 44%;
}

.home-product-visual::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.home-product-visual img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.home-meeting-visual img {
    object-position: center;
}

.home-visitor-visual img {
    object-position: right center;
}

.home-other-section {
    padding: 68px 0 74px;
    background: #fff;
}

.home-other-layout {
    display: grid;
    grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
    gap: clamp(42px, 6vw, 82px);
    align-items: start;
}

.home-other-heading {
    max-width: 430px;
}

.home-other-heading h2 {
    font-size: clamp(32px, 2.9vw, 42px);
}

.home-other-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    border-top: 1px solid #dfe6eb;
}

.home-other-item {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 99px;
    padding: 17px 2px;
    border-bottom: 1px solid #dfe6eb;
    color: var(--zuad-ink) !important;
    text-decoration: none !important;
    transition: color .2s ease, transform .2s ease;
}

.home-other-item:last-child {
    grid-column: 1 / -1;
}

.home-other-item:hover {
    color: var(--zuad-blue) !important;
    transform: translateX(3px);
}

.home-other-index {
    color: var(--zuad-blue);
    font-size: 13px;
    font-weight: 800;
}

.home-other-item strong,
.home-other-item small {
    display: block;
}

.home-other-item strong {
    margin-bottom: 4px;
    font-size: 17px;
    line-height: 1.35;
}

.home-other-item small {
    color: #7b8992;
    font-size: 13px;
    line-height: 1.55;
}

.home-other-item b {
    color: #9eabb4;
    font-size: 20px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .card-static-phone {
        top: 29%;
        width: 132px;
        border-width: 5px;
        border-radius: 19px;
    }

    .card-static-badge {
        right: 2%;
        bottom: 12%;
        max-width: 165px;
        padding: 7px 10px;
        font-size: 10px;
    }

    .home-product-section-layout,
    .home-other-layout {
        grid-template-columns: 1fr;
    }

    .home-product-section.is-reversed .home-product-copy,
    .home-product-section.is-reversed .home-product-visual {
        order: initial;
    }

    .home-product-copy,
    .home-other-heading {
        max-width: 720px;
    }

    .home-product-visual {
        min-height: 390px;
    }

    .home-product-visual img {
        height: 390px;
    }

    .card-carousel-phone {
        top: 29%;
        width: 132px;
        border-width: 5px;
        border-radius: 19px;
    }

    .card-carousel-badge {
        right: 2%;
        bottom: 12%;
        max-width: 165px;
        padding: 7px 10px;
        font-size: 10px;
    }

    .home-card-perspectives-layout,
    .home-workflow-layout {
        grid-template-columns: 1fr;
    }

    .home-card-perspectives-layout {
        gap: 38px;
    }

    .home-card-perspectives-visual {
        width: min(540px, 100%);
        margin: 0 auto;
    }

    .home-card-perspectives-copy {
        max-width: 720px;
        margin: 0 auto;
    }

    .home-workflow-layout {
        gap: 38px;
    }

    .home-workflow-heading {
        max-width: 760px;
    }

    .home-card-hero {
        min-height: auto;
    }

    .home-card-hero::before {
        background: linear-gradient(180deg, #fff 0%, #fff 48%, rgba(255, 255, 255, .62) 66%, transparent 84%);
    }

    .home-card-hero-person {
        top: 44%;
        width: 100%;
        height: 56%;
        clip-path: ellipse(74% 78% at 76% 54%);
    }

    .home-card-hero-person::after {
        background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .16) 38%, transparent 62%);
    }

    .home-card-hero-container {
        padding-top: 185px;
        padding-bottom: 52px;
    }

    .home-card-hero-layout,
    .card-detail-hero-layout,
    .card-preview-layout,
    .card-company-layout,
    .site-contact-layout {
        grid-template-columns: 1fr;
    }

    .home-card-hero-layout {
        gap: 28px;
        min-height: auto;
    }

    .home-card-hero-copy {
        max-width: 720px;
    }

    .home-card-hero-visual {
        width: min(680px, 100%);
        min-height: 490px;
        margin: 0 auto;
    }

    .home-card-phone {
        left: 10%;
        width: 210px;
    }

    .home-card-owner-preview {
        right: 8%;
    }

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

    .card-journey {
        grid-template-columns: 1fr;
    }

    .card-journey-step:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -15px;
        transform: rotate(90deg) translateY(-50%);
    }

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

@media (max-width: 767px) {
    .zuad-admin-link {
        margin: 10px 16px 14px;
    }

    .home_page .header_1 .logo {
        padding: 9px 0 8px;
    }

    .home_page .header_1 .logo img {
        height: 42px;
    }

    .home_page .header_1 #main_menu #menu-button {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 24px;
    }

    .home_page .header_1 #main_menu #menu-button::before {
        top: 13px;
    }

    .home_page .header_1 #main_menu #menu-button::after {
        top: 19px;
    }

    .home_page .header_1 .search_section a.search_icon {
        margin-top: 3px;
    }

    .home-card-static-hero.slider_section {
        padding: 108px 0 30px;
        background: #fff;
    }

    .home-card-static-hero .conSize {
        padding-right: 17px;
        padding-left: 17px;
    }

    .home-card-static-hero .row {
        margin-right: 0;
        margin-left: 0;
    }

    .home-card-static-hero .row > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

    .home-card-static-hero .slider_contant {
        width: 100%;
        margin-top: 0;
        padding: 19px 3px 23px;
        background-image: none;
    }

    .home-card-static-copy {
        padding-bottom: 23px;
    }

    .home-card-static-copy h2 {
        margin: 0 0 11px;
        color: var(--zuad-blue);
        font-size: 40px;
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .home-card-static-copy p.large {
        margin: 0;
        color: #687984;
        font-size: 15px;
        line-height: 1.72;
    }

    .home-card-static-copy .read_more_bt {
        display: flex;
        margin-top: 19px;
    }

    .home-card-static-hero .cloSize {
        display: block !important;
    }

    .home-card-static-hero .card-static-visual {
        height: 260px;
        overflow: hidden;
        border-radius: 0 0 38% 0;
        background:
            radial-gradient(circle at 18% 20%, rgba(59, 85, 215, .12), transparent 34%),
            #edf2f6;
        box-shadow: 0 18px 38px rgba(34, 58, 74, .13);
    }

    .home-card-static-hero .card-static-person {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100% !important;
        height: 100%;
        object-fit: cover;
        object-position: 64% 38%;
    }

    .home-card-static-hero .card-static-phone {
        top: 18%;
        left: 5%;
        width: 105px;
        border-width: 4px;
        border-radius: 16px;
        box-shadow: 0 14px 28px rgba(16, 43, 62, .28);
    }

    .home-card-static-hero .card-static-badge {
        right: 3%;
        bottom: 7%;
        max-width: 175px;
        padding: 7px 10px;
        font-size: 9px;
    }

    .read_more_bt .home-card-detail-button .home-card-detail-icon {
        width: 50px;
        height: 50px;
        line-height: 44px;
    }

    .read_more_bt .home-card-detail-button .home-card-detail-label {
        font-size: 15px !important;
        line-height: 50px;
    }

    .home-product-section,
    .home-other-section {
        padding: 44px 0;
    }

    .home-product-section > .container,
    .home-other-section > .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-product-section-layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 25px;
    }

    .home-other-layout {
        gap: 27px;
    }

    .home-product-number {
        margin-bottom: 5px;
        font-size: 39px;
    }

    .home-product-copy {
        width: 100%;
    }

    .home-product-copy h2 {
        margin-bottom: 14px;
        font-size: 29px;
        line-height: 1.28;
    }

    .home-other-heading h2 {
        margin-bottom: 13px;
        font-size: 29px;
        line-height: 1.28;
    }

    .home-product-copy > p,
    .home-other-heading > p {
        color: #687984;
        font-size: 14px;
        line-height: 1.72;
    }

    .home-product-points {
        gap: 8px;
        margin: 18px 0 20px;
    }

    .home-product-points li {
        padding-left: 20px;
        font-size: 14px;
    }

    .home-section-detail-link {
        font-size: 14px;
    }

    .home-product-visual,
    .home-product-section.is-reversed .home-product-visual {
        width: 100%;
        min-height: 230px;
        border-radius: 0 0 30% 0;
        box-shadow: 0 16px 34px rgba(35, 58, 74, .13);
    }

    .home-product-visual img {
        height: 230px;
    }

    .home-meeting-visual img {
        object-position: 62% center;
    }

    .home-visitor-visual img {
        object-position: 46% center;
    }

    .home-other-grid {
        grid-template-columns: 1fr;
    }

    .home-other-item:last-child {
        grid-column: auto;
    }

    .home-other-item {
        min-height: 78px;
        padding: 13px 2px;
    }

    .home-other-item strong {
        font-size: 16px;
    }

    .home-other-item small {
        font-size: 12px;
        line-height: 1.5;
    }

    .home-card-perspectives {
        padding: 54px 0 58px;
    }

    .home-card-perspectives-visual {
        min-height: 440px;
    }

    .home-card-perspectives-visual::before {
        top: 28px;
        left: 50%;
        width: 410px;
        height: 410px;
        transform: translateX(-50%);
    }

    .home-card-perspectives-visual::after {
        top: 58px;
        left: 50%;
        width: 350px;
        height: 350px;
        transform: translateX(-50%);
    }

    .home-card-device-owner {
        top: 76px;
        left: 8%;
        width: 164px;
    }

    .home-card-device-visitor {
        top: 8px;
        right: 7%;
        width: 188px;
    }

    .home-card-device-frame {
        border-width: 5px;
        border-radius: 22px;
    }

    .home-card-perspectives-copy h2,
    .home-workflow-heading h2 {
        font-size: 33px;
    }

    .home-section-lead,
    .home-workflow-heading > p {
        font-size: 15px;
    }

    .home-workflow-section {
        padding: 52px 0 56px;
    }

    .home-workflow-track {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-workflow-track::before {
        top: 24px;
        bottom: 24px;
        left: 24px;
        width: 2px;
        height: auto;
    }

    .home-workflow-step {
        display: grid;
        grid-template-columns: 50px 1fr;
        gap: 16px;
        align-items: center;
        padding: 9px 0;
        text-align: left;
    }

    .home-workflow-index {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }

    .home-workflow-extension {
        text-align: left;
    }

    .card-detail-hero {
        padding: 124px 0 48px;
    }

    .home-card-hero-person {
        top: 53%;
        height: 47%;
        clip-path: ellipse(88% 70% at 80% 58%);
    }

    .home-card-hero-container {
        padding-top: 166px;
        padding-bottom: 34px;
    }

    .home-card-hero-copy h1,
    .card-detail-hero h1 {
        font-size: 38px;
    }

    .home-card-hero-copy > p,
    .card-detail-hero .lead {
        font-size: 16px;
    }

    .home-card-actions {
        margin-top: 24px;
    }

    .home-card-primary,
    .home-card-secondary {
        min-height: 50px;
        padding: 11px 20px;
    }

    .home-card-benefits {
        margin-top: 30px;
        padding-top: 18px;
    }

    .home-card-benefit {
        padding-right: 9px;
    }

    .home-card-benefit + .home-card-benefit {
        padding-left: 9px;
    }

    .home-card-benefit strong {
        font-size: 15px;
    }

    .home-card-benefit span {
        font-size: 11px;
    }

    .home-card-hero-visual {
        min-height: 405px;
    }

    .home-card-phone {
        top: 12px;
        left: 0;
        width: 178px;
        border-width: 6px;
        border-radius: 24px;
    }

    .home-card-owner-preview {
        right: 0;
        bottom: 58px;
        width: 148px;
        padding: 9px;
    }

    .home-card-owner-preview > div {
        height: 105px;
    }

    .home-card-proof {
        right: 0;
        bottom: 8px;
        padding: 8px 11px;
    }

    .card-section {
        padding: 56px 0;
    }

    .card-value-grid,
    .card-service-grid,
    .card-deploy-grid,
    .card-logo-wall {
        grid-template-columns: 1fr;
    }

    .card-value-grid.card-value-grid-two {
        grid-template-columns: 1fr;
    }

    .card-preview-layout,
    .card-company-layout {
        gap: 36px;
    }

    .card-preview-phones {
        gap: 10px;
    }

    .card-preview-phone {
        width: 48%;
        border-width: 5px;
        border-radius: 20px;
    }

    .card-cta-band {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }

    .site-contact-form .field-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .home-product-copy h2,
    .home-other-heading h2 {
        font-size: 29px;
    }

    .home-other-item {
        grid-template-columns: 31px minmax(0, 1fr) auto;
    }

    .home-card-perspectives-visual {
        min-height: 385px;
    }

    .home-card-device-owner {
        left: 2%;
        width: 142px;
    }

    .home-card-device-visitor {
        right: 2%;
        width: 164px;
    }

    .home-card-device figcaption {
        padding: 6px 9px;
        font-size: 10px;
    }

    .home-card-perspectives-copy h2,
    .home-workflow-heading h2 {
        font-size: 30px;
    }

    .home-card-hero-copy h1 {
        font-size: 35px;
    }

    .home-card-actions,
    .card-launch-actions,
    .card-section-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-card-primary,
    .home-card-secondary,
    .card-primary-button,
    .card-secondary-button {
        width: 100%;
    }

    .home-card-hero-visual {
        min-height: 380px;
    }

    .home-card-phone {
        width: 158px;
    }

    .home-card-owner-preview {
        width: 132px;
    }
}
