@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

:root {
    --blue-950: #031a3d;
    --blue-900: #062452;
    --blue-800: #082f6c;
    --blue-700: #064bc4;
    --blue-600: #0b5fe9;
    --blue-500: #1b72ff;
    --cyan: #12b8ff;
    --ink: #0b1835;
    --text: #35415b;
    --muted: #6d7890;
    --line: #dfe6f0;
    --soft: #f4f8ff;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(5, 37, 86, 0.12);
    --shadow-soft: 0 14px 40px rgba(5, 37, 86, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 82px;
    background: var(--white);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
.button {
    border-radius: 8px;
    cursor: pointer;
}

svg {
    width: 1.25em;
    height: 1.25em;
}

.site-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.site-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(6, 36, 82, 0.08);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(4, 34, 78, 0.08);
}

.nav-row {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 28px;
}

.brand {
    display: block;
    flex: 0 0 auto;
}

.brand img {
    width: 285px;
    height: 54px;
    object-fit: contain;
    object-position: left center;
}

.site-navigation {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 30px;
}

.site-navigation a {
    position: relative;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.site-navigation a::after {
    position: absolute;
    right: 0;
    bottom: -13px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    background: var(--blue-600);
    content: "";
    transition: transform 0.2s ease;
}

.site-navigation a:hover,
.site-navigation a.is-active {
    color: var(--blue-600);
}

.site-navigation a:hover::after,
.site-navigation a.is-active::after {
    transform: scaleX(1);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
}

.menu-close-icon {
    display: none;
}

.mobile-menu-button.is-open .menu-open-icon {
    display: none;
}

.mobile-menu-button.is-open .menu-close-icon {
    display: block;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 21px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(11, 95, 233, 0.24);
}

.button-primary:hover {
    box-shadow: 0 16px 34px rgba(11, 95, 233, 0.32);
}

.button-outline {
    border-color: #9cbcf4;
    background: var(--white);
    color: var(--blue-700);
}

.button-white {
    background: var(--white);
    color: var(--blue-800);
}

.nav-cta {
    min-height: 44px;
    padding: 10px 18px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 78px;
    background:
        radial-gradient(circle at 82% 10%, rgba(27, 114, 255, 0.14), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f6f9ff 52%, #eef5ff 100%);
}

.hero::before {
    position: absolute;
    top: -160px;
    right: -100px;
    width: 470px;
    height: 470px;
    border: 55px solid rgba(11, 95, 233, 0.07);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    align-items: center;
    gap: 55px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.eyebrow {
    padding: 8px 12px;
    border: 1px solid #cbdcff;
    border-radius: 999px;
    background: #edf4ff;
}

.section-kicker::before {
    width: 34px;
    height: 3px;
    background: currentColor;
    content: "";
}

.section-kicker.light {
    color: #68b7ff;
}

.hero h1,
.page-hero h1,
.section-content h2,
.section-heading h2,
.why-intro h2,
.contact-information h2,
.contact-form-card h2,
.info-panel h3,
.solution-row h2,
.service-detail h2,
.not-found h1 {
    margin: 0;
    color: var(--ink);
    font-family: "Manrope", "Inter", sans-serif;
    font-weight: 800;
    letter-spacing: -1.6px;
}

.hero h1 {
    max-width: 680px;
    margin-top: 22px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
}

.hero h1 span {
    display: block;
    color: var(--blue-600);
}

.hero-content > p {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--text);
    font-size: 17px;
}

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

.hero-trust {
    display: grid;
    margin-top: 35px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-trust > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.hero-trust svg {
    width: 26px;
    height: 26px;
    color: var(--blue-600);
}

.hero-trust strong {
    display: block;
    color: var(--ink);
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-visual::before {
    position: absolute;
    top: 30px;
    right: -20px;
    bottom: -20px;
    left: 35px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(11, 95, 233, 0.22), rgba(18, 184, 255, 0.08));
    content: "";
}

.hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 34px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-security-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    background: rgba(3, 26, 61, 0.86);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.hero-security-badge svg {
    width: 38px;
    height: 38px;
    color: #52c7ff;
}

.hero-security-badge strong,
.hero-security-badge span {
    display: block;
}

.hero-security-badge strong {
    font-size: 15px;
}

.hero-security-badge span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.section {
    padding: 90px 0;
}

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

.split-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.83fr) minmax(0, 1.17fr);
    align-items: center;
    gap: 62px;
}

.image-card {
    position: relative;
}

.image-card img {
    width: 100%;
    min-height: 470px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.floating-note {
    position: absolute;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.floating-note svg {
    width: 36px;
    height: 36px;
    color: var(--blue-600);
}

.section-content h2,
.section-heading h2,
.contact-information h2 {
    margin-top: 14px;
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.12;
}

.section-content p,
.section-heading p {
    color: var(--muted);
}

.section-content p {
    margin: 20px 0 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading.centered .section-kicker {
    justify-content: center;
}

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

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 12px 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.check-list svg {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--blue-600);
}

.check-list.compact li {
    margin: 8px 0;
}

.text-link {
    display: inline-flex;
    margin-top: 24px;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-size: 14px;
    font-weight: 800;
}

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

.service-card,
.feature-card {
    position: relative;
    padding: 29px 25px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #a9c7ff;
    box-shadow: var(--shadow);
}

.service-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8f1ff, #d7ebff);
    color: var(--blue-600);
}

.service-icon svg {
    width: 29px;
    height: 29px;
}

.service-card h3,
.feature-card h3,
.why-items h3,
.process-grid h3 {
    margin: 19px 0 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.3;
}

.service-card p,
.feature-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.service-card > a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    margin-top: 18px;
    align-items: center;
    justify-content: center;
    border: 1px solid #b9cdf1;
    border-radius: 50%;
    color: var(--blue-600);
}

.why-us {
    background:
        radial-gradient(circle at 80% 15%, rgba(27, 114, 255, 0.22), transparent 32%),
        linear-gradient(135deg, var(--blue-950), var(--blue-900));
}

.why-grid {
    display: grid;
    grid-template-columns: 0.68fr 1.32fr;
    gap: 58px;
}

.why-intro h2 {
    margin-top: 14px;
    color: var(--white);
    font-size: clamp(31px, 3.4vw, 44px);
    line-height: 1.1;
}

.why-intro p {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.7);
}

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

.why-items article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 15px;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.why-items > article:nth-child(odd) {
    border-left: 0;
}

.why-items svg {
    width: 34px;
    height: 34px;
    color: #68b7ff;
}

.why-items h3 {
    margin: 0;
    color: var(--white);
    font-size: 16px;
}

.why-items p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.contact-cta {
    padding: 42px 0;
    background:
        radial-gradient(circle at 8% 50%, rgba(255, 255, 255, 0.18), transparent 24%),
        linear-gradient(135deg, #0864ef, #0041b8);
    color: var(--white);
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr auto;
    align-items: center;
    gap: 36px;
}

.contact-cta h2 {
    margin: 9px 0 0;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: clamp(25px, 2.5vw, 34px);
    line-height: 1.15;
}

.contact-cta p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.contact-cta-details {
    display: grid;
    gap: 12px;
}

.contact-cta-details a {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 700;
}

.contact-cta-details svg {
    width: 24px;
    height: 24px;
}

.site-footer {
    padding: 70px 0 24px;
    background: #021433;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.65fr 1fr 0.9fr;
    gap: 46px;
}

.footer-brand img {
    width: 285px;
    height: auto;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 340px;
    margin: 20px 0 0;
}

.footer-tagline {
    margin-top: 22px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.7px;
}

.footer-tagline span,
.footer-bottom span {
    color: #4fa5ff;
}

.site-footer h3 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 16px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin: 9px 0;
    font-size: 14px;
}

.site-footer a:hover {
    color: #7cc4ff;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list svg {
    flex: 0 0 auto;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    margin-top: 48px;
    padding-top: 22px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at 82% 30%, rgba(38, 124, 255, 0.26), transparent 30%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.page-hero::after {
    position: absolute;
    top: -170px;
    right: -80px;
    width: 430px;
    height: 430px;
    border: 50px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.page-hero .eyebrow {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #7dc7ff;
}

.page-hero h1 {
    margin-top: 22px;
    color: var(--white);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
}

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

.info-panel {
    padding: 42px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 90% 5%, rgba(44, 139, 255, 0.34), transparent 35%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
    color: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow);
}

.info-panel h3 {
    margin-top: 16px;
    color: var(--white);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.info-panel p {
    margin: 18px 0 0;
}

.info-panel .button {
    margin-top: 25px;
}

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

.service-detail {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.service-detail h2 {
    margin-top: 6px;
    font-size: 27px;
    line-height: 1.2;
}

.service-detail p {
    margin: 12px 0 0;
    color: var(--muted);
}

.solution-stack {
    display: grid;
    gap: 24px;
}

.solution-row {
    display: grid;
    grid-template-columns: 70px 70px 1fr;
    align-items: start;
    gap: 24px;
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.solution-number {
    color: #c6d7f4;
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.solution-row h2 {
    margin-top: 8px;
    font-size: 30px;
    line-height: 1.2;
}

.solution-row p {
    margin: 12px 0 0;
    color: var(--muted);
}

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

.process-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
}

.process-grid article > span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue-600);
    color: var(--white);
    font-weight: 800;
}

.process-grid h3 {
    margin-top: 18px;
}

.process-grid p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
    gap: 50px;
}

.contact-information h2 {
    margin-top: 14px;
}

.contact-information > p {
    margin-top: 20px;
    color: var(--muted);
}

.contact-cards {
    display: grid;
    margin-top: 32px;
    gap: 16px;
}

.contact-cards > a {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.contact-cards small,
.contact-cards strong {
    display: block;
}

.contact-cards small {
    color: var(--muted);
}

.contact-cards strong {
    margin-top: 3px;
    color: var(--ink);
}

.contact-form-card {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-form-card h2 {
    font-size: 34px;
}

.contact-form-card > p {
    margin: 10px 0 26px;
    color: var(--muted);
}

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

.form-field {
    display: grid;
    gap: 7px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cfd9e8;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
    height: 50px;
    padding: 0 13px;
}

.form-field textarea {
    min-height: 145px;
    padding: 13px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(27, 114, 255, 0.11);
}

.contact-form .button {
    margin-top: 22px;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
}

.form-alert {
    margin-bottom: 20px;
    padding: 13px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.form-alert.success {
    border: 1px solid #96dec0;
    background: #ecfbf4;
    color: #13613f;
}

.form-alert.error {
    border: 1px solid #efb1b9;
    background: #fff1f3;
    color: #8b1e2c;
}

.not-found {
    display: flex;
    min-height: 650px;
    align-items: center;
    padding: 80px 0;
    background: var(--soft);
}

.not-found-content {
    text-align: center;
}

.not-found-content > span {
    color: var(--blue-600);
    font-family: "Manrope", sans-serif;
    font-size: 110px;
    font-weight: 800;
    line-height: 1;
}

.not-found h1 {
    margin-top: 15px;
    font-size: 48px;
}

.not-found p {
    margin: 14px 0 26px;
    color: var(--muted);
}

@media (max-width: 1080px) {
    .nav-row {
        gap: 18px;
    }

    .brand img {
        width: 235px;
    }

    .site-navigation {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.9fr;
        gap: 38px;
    }

    .hero h1 {
        font-size: 54px;
    }
}

@media (max-width: 900px) {
    .nav-row {
        position: relative;
        min-height: 74px;
    }

    .brand img {
        width: 225px;
        height: 48px;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .site-navigation {
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        display: none;
        margin: 0;
        padding: 15px;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        border: 1px solid var(--line);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-navigation.is-open {
        display: flex;
    }

    .site-navigation a {
        padding: 12px 10px;
    }

    .site-navigation a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero-grid,
    .split-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 500px;
    }

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

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

    .contact-cta-grid > .button {
        justify-self: start;
    }

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

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .site-container {
        width: min(100% - 28px, 1180px);
    }

    .brand img {
        width: 200px;
        height: 44px;
    }

    .hero {
        padding: 55px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-content > p,
    .page-hero p {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

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

    .hero-visual {
        min-height: 390px;
    }

    .hero-security-badge {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .section {
        padding: 66px 0;
    }

    .page-hero {
        padding: 70px 0;
    }

    .page-hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .split-grid {
        gap: 36px;
    }

    .image-card img {
        min-height: 360px;
    }

    .check-columns,
    .service-grid,
    .three-card-grid,
    .why-items,
    .contact-cta-grid,
    .footer-grid,
    .form-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .why-items article {
        border-left: 0;
    }

    .contact-cta-details {
        margin-top: 4px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-detail,
    .solution-row {
        grid-template-columns: 1fr;
    }

    .service-detail {
        padding: 27px 22px;
    }

    .solution-row {
        padding: 28px 22px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .form-field.full {
        grid-column: auto;
    }
}


/* ---------------------------------------------------------------
   AJAX progress, toast messages, and contact-form loading state
--------------------------------------------------------------- */

.ajax-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2000;
    height: 3px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ajax-progress span {
    display: block;
    width: 38%;
    height: 100%;
    transform: translateX(-120%);
    background: linear-gradient(
        90deg,
        #0b5fe9,
        #12b8ff
    );
}

.ajax-progress.is-active {
    opacity: 1;
}

.ajax-progress.is-active span {
    animation: cyvorix-progress 1.05s ease-in-out infinite;
}

@keyframes cyvorix-progress {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(360%);
    }
}

.toast-container {
    position: fixed;
    top: 94px;
    right: 22px;
    z-index: 1900;
    display: grid;
    width: min(390px, calc(100% - 44px));
    gap: 10px;
}

.site-toast {
    display: grid;
    grid-template-columns: 38px 1fr 28px;
    align-items: start;
    gap: 11px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(3, 26, 61, 0.2);
    animation: cyvorix-toast-in 0.25s ease both;
}

.site-toast.success {
    border-color: #91dfbd;
}

.site-toast.error {
    border-color: #efafb7;
}

.site-toast-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eafaf3;
    color: #168052;
    font-weight: 800;
}

.site-toast.error .site-toast-icon {
    background: #fff0f2;
    color: #b42335;
}

.site-toast strong,
.site-toast span {
    display: block;
}

.site-toast strong {
    color: var(--ink);
    font-size: 14px;
}

.site-toast span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.site-toast-close {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

@keyframes cyvorix-toast-in {
    from {
        transform: translateY(-12px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-submit-button {
    min-width: 180px;
}

.button-loading {
    display: none;
    align-items: center;
    gap: 9px;
}

.contact-submit-button.is-loading .button-label,
.contact-submit-button.is-loading .button-arrow {
    display: none;
}

.contact-submit-button.is-loading .button-loading {
    display: inline-flex;
}

.button-spinner {
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255, 255, 255, 0.48);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: cyvorix-spin 0.75s linear infinite;
}

@keyframes cyvorix-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-submit-button:disabled {
    cursor: wait;
    opacity: 0.78;
}

.form-alert[hidden] {
    display: none;
}

.form-alert {
    display: block;
}

@media (max-width: 640px) {
    .toast-container {
        top: 82px;
        right: 14px;
        width: calc(100% - 28px);
    }
}


/* ---------------------------------------------------------------
   Fixed header and floating quick-action buttons
--------------------------------------------------------------- */

.site-header {
    width: 100%;
}

.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 12px;
}

.floating-action {
    position: relative;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(3, 26, 61, 0.22);
    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        visibility 0.2s ease,
        box-shadow 0.2s ease;
}

.floating-action:hover,
.floating-action:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(3, 26, 61, 0.3);
}

.floating-action svg {
    width: 28px;
    height: 28px;
}

.whatsapp-action {
    background: #25d366;
    color: #ffffff;
}

.whatsapp-action:hover,
.whatsapp-action:focus-visible {
    background: #1fbd5a;
    color: #ffffff;
}

.scroll-top-action {
    transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    background: linear-gradient(
        135deg,
        var(--blue-700),
        var(--blue-500)
    );
    color: #ffffff;
    pointer-events: none;
}

.scroll-top-action.is-visible {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-action.is-visible:hover,
.scroll-top-action.is-visible:focus-visible {
    transform: translateY(-3px);
}

.floating-action-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    width: max-content;
    max-width: 180px;
    padding: 7px 10px;
    transform: translate(7px, -50%);
    border-radius: 6px;
    background: var(--blue-950);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.floating-action:hover .floating-action-tooltip,
.floating-action:focus-visible .floating-action-tooltip {
    transform: translate(0, -50%);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    body {
        padding-top: 74px;
    }
}

@media (max-width: 640px) {
    .floating-actions {
        right: 15px;
        bottom: 16px;
        gap: 10px;
    }

    .floating-action {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .floating-action svg {
        width: 26px;
        height: 26px;
    }

    .floating-action-tooltip {
        display: none;
    }
}


/* ---------------------------------------------------------------
   Project portfolio listing and project detail pages
--------------------------------------------------------------- */

.projects-page-hero {
    background:
        radial-gradient(
            circle at 78% 22%,
            rgba(37, 122, 255, 0.32),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--blue-950),
            #063d8a
        );
}

.projects-section {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f6f9ff 100%
        );
}

.projects-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 38px;
}

.projects-intro h2 {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.projects-intro > p {
    margin: 0;
    color: var(--muted);
}

.projects-toolbar {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.project-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-filter {
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.project-filter:hover,
.project-filter.is-active {
    border-color: var(--blue-600);
    background: var(--blue-600);
    color: #ffffff;
}

.project-search {
    display: flex;
    width: min(330px, 100%);
    height: 46px;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #ffffff;
    color: var(--muted);
}

.project-search svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}

.project-search input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--ink);
    outline: none;
}

.project-search input::placeholder {
    color: #97a4b7;
}

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

.project-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: #a8c6f6;
    box-shadow: var(--shadow);
}

.project-card[hidden] {
    display: none;
}

.project-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #dfeaf8;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.035);
}

.project-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.project-image-overlay {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    transform: translateY(12px);
    border-radius: 8px;
    background: rgba(3, 26, 61, 0.88);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
    backdrop-filter: blur(10px);
}

.project-card:hover .project-image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-card-body {
    padding: 27px;
}

.project-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.project-card h2 {
    margin: 12px 0 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: -0.7px;
}

.project-card h2 a:hover {
    color: var(--blue-600);
}

.project-card-body > p {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.project-card-tags {
    display: flex;
    margin-top: 19px;
    flex-wrap: wrap;
    gap: 8px;
}

.project-card-tags span,
.project-technology-list span {
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid #d7e4f5;
    border-radius: 999px;
    background: #f4f8fe;
    color: #385476;
    font-size: 11px;
    font-weight: 700;
}

.project-card-actions {
    display: flex;
    margin-top: 23px;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
}

.project-card-actions .text-link {
    margin: 0;
}

.project-live-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.project-live-link:hover {
    color: var(--blue-600);
}

.project-live-link svg {
    width: 16px;
    height: 16px;
}

.projects-empty-state {
    padding: 65px 20px;
    text-align: center;
}

.projects-empty-state .service-icon {
    margin: 0 auto;
}

.projects-empty-state h2 {
    margin: 18px 0 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 28px;
}

.projects-empty-state p {
    margin: 9px 0 0;
    color: var(--muted);
}

.project-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 70px;
    background:
        radial-gradient(
            circle at 80% 22%,
            rgba(39, 127, 255, 0.28),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--blue-950),
            var(--blue-800)
        );
}

.project-detail-hero::after {
    position: absolute;
    top: -220px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 60px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.project-detail-hero > .site-container {
    position: relative;
    z-index: 1;
}

.project-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
}

.project-back-link:hover {
    color: #ffffff;
}

.project-back-link svg {
    width: 18px;
    height: 18px;
}

.project-detail-heading {
    display: grid;
    margin-top: 38px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 50px;
}

.project-detail-heading .eyebrow {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #7bc8ff;
}

.project-detail-heading h1 {
    max-width: 900px;
    margin: 22px 0 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -2px;
}

.project-detail-heading p {
    max-width: 850px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
}

.project-detail-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
}

.project-contact-button {
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #ffffff;
}

.project-contact-button:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--blue-800);
}

.project-detail-meta {
    display: grid;
    margin-top: 55px;
    padding-top: 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.project-detail-meta span,
.project-detail-meta strong {
    display: block;
}

.project-detail-meta span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.project-detail-meta strong {
    margin-top: 6px;
    color: #ffffff;
    font-size: 15px;
}

.project-gallery-section {
    padding: 60px 0 0;
    background: #ffffff;
}

.project-gallery {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 20px;
}

.project-gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: #dfe9f7;
    cursor: zoom-in;
    box-shadow: var(--shadow-soft);
}

.project-gallery-primary {
    min-height: 520px;
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.project-gallery-item:hover img {
    transform: scale(1.025);
}

.project-gallery-item > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 9px 12px;
    border-radius: 7px;
    background: rgba(3, 26, 61, 0.88);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transition: opacity 0.2s ease;
    backdrop-filter: blur(8px);
}

.project-gallery-item:hover > span {
    opacity: 1;
}

.project-content-section {
    background: #ffffff;
}

.project-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.55fr);
    align-items: start;
    gap: 60px;
}

.project-main-content {
    display: grid;
    gap: 58px;
}

.project-content-block {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
}

.project-content-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.project-content-block h2,
.project-sidebar-card h2 {
    margin: 14px 0 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.16;
    letter-spacing: -1px;
}

.project-content-block > p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

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

.project-results-grid article {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8faff;
}

.project-results-grid article > span {
    color: var(--blue-600);
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.project-results-grid p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.project-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 22px;
}

.project-sidebar-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.project-sidebar-card h2 {
    font-size: 26px;
}

.project-technology-list {
    display: flex;
    margin-top: 22px;
    flex-wrap: wrap;
    gap: 9px;
}

.project-enquiry-card {
    border: 0;
    background:
        radial-gradient(
            circle at 86% 10%,
            rgba(52, 145, 255, 0.34),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            var(--blue-950),
            var(--blue-800)
        );
    color: rgba(255, 255, 255, 0.72);
}

.project-enquiry-card h2 {
    color: #ffffff;
}

.project-enquiry-card p {
    margin: 14px 0 0;
}

.project-enquiry-card .button {
    margin-top: 22px;
}

.project-navigation-section {
    padding: 35px 0;
    border-top: 1px solid var(--line);
    background: #f6f9ff;
}

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

.project-navigation-item {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.project-navigation-item:hover {
    transform: translateY(-3px);
    border-color: #a9c7f6;
    box-shadow: var(--shadow-soft);
}

.project-navigation-item.next {
    text-align: right;
}

.project-navigation-item span,
.project-navigation-item strong {
    display: block;
}

.project-navigation-item span {
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.project-navigation-item strong {
    margin-top: 5px;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 17px;
}

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2400;
    display: flex;
    padding: 45px;
    align-items: center;
    justify-content: center;
    background: rgba(1, 13, 34, 0.94);
    backdrop-filter: blur(10px);
}

.project-lightbox[hidden] {
    display: none;
}

.project-lightbox img {
    max-width: min(1200px, 92vw);
    max-height: 86vh;
    border-radius: 14px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.project-lightbox-close {
    position: absolute;
    top: 22px;
    right: 24px;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    font-size: 30px;
}

body.project-lightbox-open {
    overflow: hidden;
}

@media (max-width: 1000px) {
    .projects-intro,
    .project-detail-heading,
    .project-content-grid {
        grid-template-columns: 1fr;
    }

    .project-detail-actions {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .project-sidebar {
        position: static;
    }
}

@media (max-width: 820px) {
    .projects-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .project-search {
        width: 100%;
    }

    .project-grid,
    .project-results-grid {
        grid-template-columns: 1fr;
    }

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

    .project-gallery {
        grid-template-columns: 1fr;
    }

    .project-gallery-primary,
    .project-gallery-item {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .projects-intro {
        gap: 20px;
    }

    .project-filter-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-filter {
        width: 100%;
    }

    .project-card-body {
        padding: 22px 19px;
    }

    .project-card-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-detail-hero {
        padding: 48px 0 56px;
    }

    .project-detail-heading {
        margin-top: 28px;
        gap: 30px;
    }

    .project-detail-heading h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .project-detail-actions {
        display: grid;
        width: 100%;
    }

    .project-detail-actions .button {
        width: 100%;
    }

    .project-detail-meta {
        grid-template-columns: 1fr 1fr;
    }

    .project-gallery-section {
        padding-top: 35px;
    }

    .project-gallery-primary,
    .project-gallery-item {
        min-height: 250px;
    }

    .project-navigation {
        grid-template-columns: 1fr;
    }

    .project-navigation-item.next {
        text-align: left;
    }

    .project-lightbox {
        padding: 16px;
    }
}


/* ---------------------------------------------------------------
   Refined heading scale
--------------------------------------------------------------- */

.section-content h2,
.section-heading h2,
.contact-information h2 {
    font-size: clamp(30px, 3.4vw, 42px);
}

.page-hero h1 {
    max-width: 900px;
    font-size: clamp(38px, 5vw, 58px);
}

.projects-intro h2 {
    font-size: clamp(30px, 3.4vw, 42px);
}

.project-detail-heading h1 {
    font-size: clamp(38px, 5vw, 58px);
}

.contact-cta h2 {
    font-size: clamp(25px, 2.5vw, 34px);
}

.why-intro h2 {
    font-size: clamp(31px, 3.4vw, 44px);
}

@media (max-width: 640px) {
    .page-hero h1,
    .project-detail-heading h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .section-content h2,
    .section-heading h2,
    .projects-intro h2 {
        font-size: 30px;
        line-height: 1.16;
    }

    .contact-cta h2 {
        font-size: 28px;
    }
}


/* E-Result Portal gallery supports multiple real screenshots. */

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

.project-gallery-primary {
    grid-column: 1 / -1;
    min-height: 520px;
}

.project-gallery-item:not(.project-gallery-primary) {
    min-height: 300px;
}

@media (max-width: 820px) {
    .project-gallery {
        grid-template-columns: 1fr;
    }

    .project-gallery-primary {
        grid-column: auto;
    }
}


/* ---------------------------------------------------------------
   Refined project-detail heading sizes
--------------------------------------------------------------- */

.project-content-block h2 {
    max-width: 760px;
    font-size: clamp(25px, 2.6vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.7px;
}

.project-sidebar-card h2 {
    font-size: clamp(23px, 2.3vw, 30px);
    line-height: 1.22;
    letter-spacing: -0.5px;
}

.project-content-block > p {
    max-width: 850px;
    font-size: 15px;
    line-height: 1.8;
}

.project-detail-heading h1 {
    max-width: 820px;
    font-size: clamp(35px, 4.4vw, 52px);
    line-height: 1.08;
}

.projects-intro h2 {
    max-width: 720px;
    font-size: clamp(28px, 3vw, 38px);
}

@media (max-width: 640px) {
    .project-content-block h2 {
        font-size: 25px;
        line-height: 1.22;
    }

    .project-sidebar-card h2 {
        font-size: 23px;
    }

    .project-detail-heading h1 {
        font-size: 34px;
    }
}


/* Cyvorix Assistant chat popup */
.cyvorix-chat-widget{position:fixed;right:24px;bottom:102px;z-index:1300}.cyvorix-chat-launcher{display:inline-flex;min-width:132px;height:54px;padding:0 17px;align-items:center;justify-content:center;gap:9px;border:0;border-radius:14px;background:linear-gradient(135deg,var(--blue-700),var(--blue-500));color:#fff;cursor:pointer;font-size:13px;font-weight:800;box-shadow:0 15px 38px rgba(3,26,61,.25);transition:transform .2s ease,box-shadow .2s ease}.cyvorix-chat-launcher:hover,.cyvorix-chat-launcher:focus-visible{transform:translateY(-3px);box-shadow:0 20px 46px rgba(3,26,61,.34)}.cyvorix-chat-launcher svg{width:23px;height:23px}.chat-launcher-close-icon{display:none}.cyvorix-chat-widget.is-open .chat-launcher-open-icon,.cyvorix-chat-widget.is-open .chat-launcher-label{display:none}.cyvorix-chat-widget.is-open .chat-launcher-close-icon{display:block}.cyvorix-chat-widget.is-open .cyvorix-chat-launcher{min-width:54px;width:54px;padding:0;border-radius:50%}.cyvorix-chat-panel{position:absolute;right:0;bottom:68px;display:flex;width:min(390px,calc(100vw - 32px));height:min(585px,calc(100vh - 145px));overflow:hidden;transform:translateY(18px) scale(.97);visibility:hidden;flex-direction:column;border:1px solid #d7e2f0;border-radius:20px;background:#fff;opacity:0;box-shadow:0 28px 80px rgba(3,26,61,.28);transform-origin:bottom right;transition:transform .22s ease,opacity .22s ease,visibility .22s ease}.cyvorix-chat-widget.is-open .cyvorix-chat-panel{transform:translateY(0) scale(1);visibility:visible;opacity:1}.cyvorix-chat-header{display:grid;grid-template-columns:48px 1fr 34px;align-items:center;gap:12px;padding:17px;background:radial-gradient(circle at 85% 10%,rgba(55,150,255,.35),transparent 38%),linear-gradient(135deg,var(--blue-950),var(--blue-800));color:#fff}.cyvorix-chat-avatar{display:inline-flex;width:48px;height:48px;align-items:center;justify-content:center;border-radius:14px;background:linear-gradient(135deg,#0b5fe9,#12b8ff);color:#fff;font-size:14px;font-weight:800;box-shadow:0 8px 22px rgba(0,0,0,.18)}.cyvorix-chat-header strong,.cyvorix-chat-header span{display:block}.cyvorix-chat-header strong{font-size:15px}.cyvorix-chat-header span{margin-top:2px;color:#b9dcff;font-size:11px}.cyvorix-chat-close{display:inline-flex;width:34px;height:34px;align-items:center;justify-content:center;border:0;border-radius:50%;background:rgba(255,255,255,.1);color:#fff;cursor:pointer;font-size:24px}.cyvorix-chat-messages{flex:1;overflow-y:auto;padding:18px;background:linear-gradient(180deg,#f7faff 0%,#fff 100%);scrollbar-width:thin}.chat-message{display:flex;margin-bottom:12px}.chat-message.user{justify-content:flex-end}.chat-message-bubble{max-width:84%;padding:11px 13px;border-radius:15px;font-size:13px;line-height:1.58;box-shadow:0 7px 20px rgba(3,26,61,.07)}.chat-message.assistant .chat-message-bubble{border:1px solid #dbe6f4;border-bottom-left-radius:5px;background:#fff;color:var(--text)}.chat-message.user .chat-message-bubble{border-bottom-right-radius:5px;background:linear-gradient(135deg,var(--blue-700),var(--blue-500));color:#fff}.chat-message.typing .chat-message-bubble{display:inline-flex;align-items:center;gap:5px}.chat-message.typing i{display:block;width:7px;height:7px;border-radius:50%;background:#8ba1bd;animation:cyvorix-chat-typing 1.1s infinite ease-in-out}.chat-message.typing i:nth-child(2){animation-delay:.15s}.chat-message.typing i:nth-child(3){animation-delay:.3s}@keyframes cyvorix-chat-typing{0%,60%,100%{transform:translateY(0);opacity:.45}30%{transform:translateY(-4px);opacity:1}}.chat-quick-actions{display:flex;margin:6px 0 14px;flex-wrap:wrap;gap:7px}.chat-quick-actions button{min-height:34px;padding:7px 10px;border:1px solid #bad1f2;border-radius:999px;background:#edf5ff;color:var(--blue-700);cursor:pointer;font-size:11px;font-weight:800}.chat-quick-actions button:hover{border-color:var(--blue-600);background:var(--blue-600);color:#fff}.cyvorix-chat-form{display:grid;grid-template-columns:1fr 44px;gap:9px;padding:13px;border-top:1px solid #dfe7f2;background:#fff}.cyvorix-chat-form input{width:100%;height:44px;padding:0 13px;border:1px solid #ccd8e8;border-radius:10px;background:#fff;color:var(--ink);outline:none}.cyvorix-chat-form input:focus{border-color:var(--blue-500);box-shadow:0 0 0 4px rgba(27,114,255,.1)}.cyvorix-chat-form button{display:inline-flex;width:44px;height:44px;align-items:center;justify-content:center;border:0;border-radius:10px;background:linear-gradient(135deg,var(--blue-700),var(--blue-500));color:#fff;cursor:pointer}.cyvorix-chat-form button svg{width:20px;height:20px}.cyvorix-chat-footer-note{padding:0 13px 12px;background:#fff;color:#8492a6;font-size:10px;text-align:center}@media(max-width:640px){.cyvorix-chat-widget{right:15px;bottom:82px}.cyvorix-chat-launcher{min-width:54px;width:54px;padding:0;border-radius:50%}.chat-launcher-label{display:none}.cyvorix-chat-panel{position:fixed;right:12px;bottom:145px;left:12px;width:auto;height:min(560px,calc(100vh - 170px));transform-origin:bottom center}}


/* ---------------------------------------------------------------
   AI chat contact actions
--------------------------------------------------------------- */

.chat-message-text {
    line-height: inherit;
}

.chat-message-actions {
    display: grid;
    margin-top: 11px;
    gap: 7px;
}

.chat-message-action {
    display: inline-flex;
    min-height: 36px;
    padding: 8px 11px;
    align-items: center;
    justify-content: center;
    border: 1px solid #b6cef0;
    border-radius: 8px;
    background: #edf5ff;
    color: var(--blue-700);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.chat-message-action:hover,
.chat-message-action:focus-visible {
    border-color: var(--blue-600);
    background: var(--blue-600);
    color: #ffffff;
}

.cyvorix-chat-widget {
    bottom: 94px;
}

.floating-actions {
    bottom: 24px;
}

@media (max-width: 640px) {
    .cyvorix-chat-widget {
        bottom: 80px;
    }

    .cyvorix-chat-panel {
        bottom: 142px;
    }
}


/* OpenAI assistant loading state */

.cyvorix-chat-form input:disabled {
    background: #f1f4f8;
    color: #7d899a;
    cursor: wait;
}

.cyvorix-chat-form button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.cyvorix-chat-form button.is-loading svg {
    animation:
        cyvorix-ai-send-pulse
        0.85s
        ease-in-out
        infinite
        alternate;
}

@keyframes cyvorix-ai-send-pulse {
    from {
        transform:
            translateY(0)
            scale(0.92);
        opacity: 0.55;
    }

    to {
        transform:
            translateY(-2px)
            scale(1);
        opacity: 1;
    }
}
