:root {
    --ink: #102033;
    --muted: #64748b;
    --line: rgba(37, 99, 235, 0.14);
    --blue: #2563eb;
    --cyan: #06b6d4;
    --green: #10b981;
    --gold: #f59e0b;
    --navy: #0f2742;
    --soft: #f4fbff;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #2563eb, #06b6d4 52%, #10b981);
    --shadow: 0 24px 70px rgba(15, 39, 66, 0.13);
    --shadow-strong: 0 34px 95px rgba(15, 39, 66, 0.2);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: "Kanit", "Segoe UI", sans-serif;
    line-height: 1.65;
}

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

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

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-cta .icon,
.primary-action .icon,
.secondary-action .icon {
    width: 1.05rem;
    height: 1.05rem;
}

.landing-nav {
    position: fixed;
    z-index: 50;
    top: 16px;
    left: 50%;
    width: min(1160px, calc(100% - 28px));
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 55px rgba(15, 39, 66, 0.13);
    backdrop-filter: blur(20px);
    transform: translateX(-50%);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 800;
    white-space: nowrap;
}

.landing-brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.landing-brand strong {
    color: var(--blue);
}

.landing-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(15, 39, 66, 0.72);
    font-weight: 600;
}

.landing-links a:hover {
    color: var(--blue);
}

.nav-cta,
.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-cta,
.primary-action {
    color: #ffffff;
    background: var(--gradient);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25);
}

.secondary-action {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 39, 66, 0.12);
}

.secondary-action.light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

.nav-cta:hover,
.primary-action:hover,
.secondary-action:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.hero-carousel {
    min-height: 100vh;
    background: var(--navy);
}

.hero-slide {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(246, 251, 255, 0.96) 0%, rgba(239, 249, 255, 0.86) 42%, rgba(15, 39, 66, 0.7) 100%),
        radial-gradient(circle at 20% 22%, rgba(6, 182, 212, 0.22), transparent 28rem);
}

.hero-content {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 42px;
    padding-top: 118px;
    padding-bottom: 70px;
}

.hero-copy {
    max-width: 780px;
}

.eyebrow,
.section-heading span,
.final-cta span,
.landing-footer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-heading span::before,
.final-cta span::before {
    width: 34px;
    height: 2px;
    border-radius: 99px;
    background: var(--gradient);
    content: "";
}

.hero-copy h1 {
    margin: 18px 0 18px;
    color: var(--navy);
    font-size: clamp(2.6rem, 6vw, 5.8rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 680px;
    margin: 0;
    color: rgba(15, 39, 66, 0.76);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

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

.hero-panel {
    display: grid;
    gap: 9px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 22px;
    color: #ffffff;
    background: rgba(15, 39, 66, 0.58);
    box-shadow: 0 26px 70px rgba(15, 39, 66, 0.24);
    backdrop-filter: blur(14px);
}

.hero-panel strong {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
}

.hero-panel span {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.25;
}

.hero-panel small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
}

.carousel-indicators {
    bottom: 28px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 42px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 39, 66, 0.35);
}

.carousel-indicators .active {
    background: var(--blue);
}

.carousel-control-prev,
.carousel-control-next {
    width: 7%;
}

.velypos-hero {
    overflow: hidden;
    background: #eaf5ef;
}

.velypos-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(7, 17, 13, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 17, 13, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 78% 22%, rgba(16, 185, 129, 0.18), transparent 32rem),
        linear-gradient(180deg, #e9f5ef, #f3fbf7);
    background-size: 34px 34px, 34px 34px, auto, auto;
}

.velypos-hero-content {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: 44px;
    padding-top: 118px;
    padding-bottom: 70px;
}

.velypos-copy {
    position: relative;
    z-index: 2;
}

.velypos-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(7, 17, 13, 0.1);
    border-radius: 999px;
    color: #087a46;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(7, 17, 13, 0.08);
    font-weight: 900;
}

.velypos-eyebrow .icon {
    width: 20px;
    height: 20px;
}

.velypos-copy h1 {
    max-width: 820px;
    margin: 26px 0 18px;
    color: #07110d;
    font-size: clamp(3rem, 5.8vw, 6.4rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
}

.velypos-copy p {
    max-width: 760px;
    margin: 0;
    color: #2f5043;
    font-size: clamp(1.08rem, 1.55vw, 1.45rem);
    font-weight: 700;
    line-height: 1.75;
}

.velysoft-link {
    color: #087a46;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.velysoft-link:hover {
    color: #0a8a51;
}

.velypos-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.velypos-points div {
    min-height: 82px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(7, 17, 13, 0.1);
    border-radius: 18px;
    color: #092018;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 32px rgba(7, 17, 13, 0.08);
    font-size: 1.08rem;
    font-weight: 900;
}

.velypos-points .icon {
    width: 22px;
    height: 22px;
    color: #0ba45f;
    stroke-width: 2.4;
}

.velypos-primary {
    background: #0a8a51;
    box-shadow: 0 16px 34px rgba(10, 138, 81, 0.28);
}

.velypos-secondary {
    color: #0d4d33;
    border-color: rgba(13, 125, 73, 0.2);
    background: rgba(255, 255, 255, 0.92);
}

.velypos-stage {
    position: relative;
    min-height: min(640px, calc(100vh - 160px));
}

.velypos-photo {
    position: absolute;
    inset: 0 0 auto auto;
    width: min(760px, 100%);
    height: min(560px, calc(100vh - 180px));
    min-height: 410px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 34px;
    background: #dff2e8;
    box-shadow: 0 34px 90px rgba(7, 17, 13, 0.2);
}

.velypos-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 76% center;
}

.velypos-photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(247, 250, 248, 0.66), transparent 38%),
        linear-gradient(180deg, transparent 62%, rgba(7, 17, 13, 0.16));
}

.velypos-device {
    position: absolute;
    left: 14px;
    bottom: 2px;
    width: min(420px, 58%);
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: #0b1513;
    box-shadow: 0 26px 60px rgba(7, 17, 13, 0.3);
    transform: rotate(-1deg);
}

.velypos-device-top {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9fb4ab;
}

.velypos-device-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ecc71;
}

.velypos-device-top span:nth-child(2) {
    background: #f59e0b;
}

.velypos-device-top span:nth-child(3) {
    background: #ec4899;
}

.velypos-device-top strong {
    margin-left: auto;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.velypos-screen {
    display: grid;
    gap: 12px;
    min-height: 314px;
    padding: 18px;
    border: 1px solid rgba(151, 247, 181, 0.16);
    border-radius: 22px;
    color: #eafff2;
    background: #101c1a;
}

.velypos-screen h3 {
    margin: 0 0 2px;
    color: #97f7b5;
    font-size: 1.35rem;
    font-weight: 900;
}

.velypos-product {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.velypos-product:last-child {
    border-bottom: 0;
}

.velypos-product div {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #97f7b5;
    background: #223d35;
}

.velypos-product strong,
.velypos-product small {
    display: block;
}

.velypos-product strong {
    color: #f4fff8;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.35;
}

.velypos-product small {
    color: rgba(234, 255, 242, 0.68);
    font-weight: 700;
}

.velypos-product b {
    padding: 6px 12px;
    border: 1px solid rgba(46, 204, 113, 0.34);
    border-radius: 999px;
    color: #a7f3c5;
    background: rgba(46, 204, 113, 0.14);
    font-weight: 900;
}

.velypos-receipt {
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: min(300px, 40%);
    padding: 20px;
    border-radius: 24px;
    color: #14231c;
    background: #ffffff;
    box-shadow: 0 26px 55px rgba(7, 17, 13, 0.22);
    transform: rotate(3deg);
}

.velypos-receipt strong {
    display: block;
    margin-bottom: 14px;
    font-size: 1.1rem;
    font-weight: 900;
}

.velypos-receipt > span {
    display: block;
    height: 9px;
    margin: 9px 0;
    border-radius: 999px;
    background: #e1eee7;
}

.velypos-receipt > span:nth-of-type(2) {
    width: 72%;
}

.velypos-receipt div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 13px;
    border-top: 1px solid #d7e5dd;
    font-weight: 900;
}

.velypos-receipt small {
    color: #385449;
    font-size: 1rem;
    font-weight: 900;
}

.trust-strip {
    padding: 28px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

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

.trust-grid div {
    min-height: 100px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f3fbff);
}

.trust-grid strong {
    color: var(--blue);
    font-size: 2rem;
    line-height: 1;
}

.trust-grid span {
    color: var(--muted);
    font-weight: 600;
}

.section-pad {
    padding: 96px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

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

.section-heading h2,
.final-cta h2 {
    margin: 12px 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
}

.section-heading p,
.final-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

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

.solution-grid article,
.product-card {
    min-height: 260px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.solution-grid article:hover,
.product-card:hover,
.work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.solution-grid .icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 18px;
    color: var(--blue);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.13));
    stroke-width: 1.8;
}

.solution-grid h3,
.product-card h3,
.workflow h3,
.work-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
}

.solution-grid p,
.product-card p,
.workflow p,
.work-card p {
    margin: 0;
    color: var(--muted);
}

.product-section,
.work-section {
    background:
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.13), transparent 28rem),
        linear-gradient(180deg, #eef8ff, #ffffff);
}

.product-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 18px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card.highlight {
    color: #ffffff;
    background: linear-gradient(135deg, #0f2742, #2563eb);
}

.product-card.highlight h3,
.product-card.highlight p {
    color: #ffffff;
}

.product-media {
    height: 190px;
    margin: -26px -26px 24px;
    overflow: hidden;
    background: #dbeafe;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.product-card.highlight .product-media {
    height: 260px;
    background: #dff2e8;
}

.product-card.highlight .product-media img {
    object-position: center;
}

.product-card:hover .product-media img {
    transform: scale(1.05);
}

.product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.product-top span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(37, 99, 235, 0.09);
    font-weight: 800;
}

.highlight .product-top span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.product-top .icon {
    width: 30px;
    height: 30px;
    color: var(--cyan);
}

.product-card a {
    margin-top: auto;
    padding-top: 22px;
    color: var(--blue);
    font-weight: 800;
}

.product-card.highlight a {
    color: #ffffff;
}

.product-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 6px;
}

.product-feature-list span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #eafff4;
    background: rgba(255, 255, 255, 0.13);
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.25;
}

.workflow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.workflow div {
    min-height: 220px;
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.workflow strong {
    display: block;
    margin-bottom: 30px;
    color: rgba(37, 99, 235, 0.2);
    font-size: 3rem;
    line-height: 1;
}

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

.work-card {
    overflow: hidden;
    display: flex;
    min-height: 360px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.work-card.featured {
    grid-column: span 2;
}

.work-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: top center;
    background: #dbeafe;
    transition: transform 0.45s ease;
}

.work-card.featured img {
    height: 300px;
}

.work-card:hover img {
    transform: scale(1.04);
}

.work-card div {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.work-card span {
    width: max-content;
    margin-bottom: 12px;
    padding: 5px 11px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(37, 99, 235, 0.08);
    font-size: 0.8rem;
    font-weight: 800;
}

.work-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
}

.work-card p {
    margin: 0;
    color: var(--muted);
}

.final-cta {
    padding: 86px 0;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(15, 39, 66, 0.98), rgba(37, 99, 235, 0.92)),
        url("/images/bg/photo-1451187580459-43490279c0fa.avif") center / cover;
}

.final-cta .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
}

.final-cta span,
.final-cta h2,
.final-cta p {
    color: #ffffff;
}

.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.landing-footer {
    padding: 42px 0;
    color: rgba(255, 255, 255, 0.78);
    background: #07182a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

.landing-footer img {
    width: 58px;
    margin-bottom: 12px;
}

.landing-footer strong {
    display: block;
    color: #ffffff;
    font-size: 1.3rem;
}

.landing-footer span {
    color: #ffffff;
    margin-bottom: 10px;
}

.landing-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 8px;
}

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 55;
    display: grid;
    gap: 10px;
}

.floating-contact a {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gradient);
    box-shadow: 0 18px 38px rgba(15, 39, 66, 0.22);
    transition: transform 0.2s ease;
}

.floating-contact a:hover {
    transform: translateY(-4px) scale(1.04);
}

.floating-contact .icon {
    width: 22px;
    height: 22px;
}

@media (max-width: 1100px) {
    .landing-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .velypos-hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 108px;
    }

    .velypos-copy h1,
    .velypos-copy p {
        max-width: 820px;
    }

    .velypos-stage {
        min-height: 510px;
    }

    .velypos-photo {
        position: relative;
        width: 100%;
        height: 430px;
        min-height: 430px;
    }

    .velypos-device {
        left: 18px;
        bottom: 8px;
    }

    .hero-panel {
        max-width: 480px;
    }

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

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

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

    .work-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 760px) {
    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-slide {
        min-height: 900px;
    }

    .landing-nav {
        top: 10px;
        width: calc(100% - 18px);
        min-height: 58px;
        gap: 10px;
        padding: 8px 10px;
        border-radius: 20px;
    }

    .landing-brand span {
        display: inline;
        max-width: 155px;
        overflow: hidden;
        font-size: 0.92rem;
        line-height: 1.1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .landing-brand {
        min-width: 0;
        gap: 8px;
    }

    .landing-brand img {
        width: 40px;
        height: 40px;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        min-width: 46px;
        min-height: 46px;
        padding: 0;
    }

    .hero-content {
        min-height: 900px;
        align-content: center;
        padding-top: 98px;
        padding-bottom: 82px;
    }

    .hero-copy h1 {
        font-size: clamp(2.05rem, 9.4vw, 2.85rem);
        line-height: 1.05;
    }

    .hero-copy p {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .velypos-hero-content {
        min-height: 900px;
        align-content: center;
        padding-top: 98px;
        padding-bottom: 82px;
    }

    .velypos-eyebrow {
        max-width: 100%;
        padding: 8px 12px;
        border-radius: 16px;
        font-size: 0.88rem;
        line-height: 1.35;
    }

    .velypos-copy h1 {
        margin-top: 20px;
        font-size: clamp(2.2rem, 10.6vw, 3.15rem);
        line-height: 1.04;
    }

    .velypos-copy p {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .velypos-points {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .velypos-points div {
        min-height: 58px;
        align-items: center;
        padding: 13px 16px;
        border-radius: 15px;
        font-size: 0.98rem;
    }

    .velypos-stage {
        min-height: auto;
        display: none;
    }

    .velypos-photo {
        height: 340px;
        min-height: 340px;
        border-radius: 24px;
    }

    .velypos-device {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 14px;
        transform: none;
    }

    .velypos-screen {
        min-height: 0;
    }

    .velypos-receipt {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
        transform: none;
    }

    .hero-panel {
        display: none;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .trust-grid,
    .solution-grid,
    .product-grid,
    .workflow,
    .work-showcase,
    .footer-grid,
    .final-cta .container {
        grid-template-columns: 1fr;
    }

    .work-card {
        min-height: 0;
    }

    .work-card img,
    .work-card.featured img {
        height: 220px;
    }

    .section-pad {
        padding: 72px 0;
    }

    .final-actions {
        justify-content: flex-start;
    }

    .floating-contact {
        right: 12px;
        bottom: 15px;
        gap: 8px;
    }

    .floating-contact a {
        width: 48px;
        height: 48px;
    }
}
