:root {
    --svh-bg: #ffffff;
    --svh-primary: #0a2540;
    --svh-primary-2: #12385f;
    --svh-accent: #2563eb;
    --svh-cta: #10b981;
    --svh-cta-dark: #0ea371;
    --svh-text: #1f2937;
    --svh-muted: #64748b;
    --svh-line: #e2e8f0;
    --svh-soft: #f8fafc;
    --svh-card-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
    --svh-card-shadow-strong: 0 22px 52px rgba(15, 23, 42, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--svh-text);
    background: var(--svh-bg);
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--svh-primary);
    font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
}

h1:focus {
    outline: none;
}

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

:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.42);
    outline-offset: 3px;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--svh-bg);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(226, 232, 240, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}

.site-nav {
    width: min(1120px, calc(100% - 40px));
    min-height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 190px;
    height: 58px;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(10, 37, 64, 0.12);
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    margin: 4px auto;
    background: var(--svh-primary);
    border-radius: 999px;
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-links a,
.nav-cta,
.primary-action,
.secondary-action {
    border-radius: 8px;
    font-weight: 700;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-links a {
    padding: 10px 11px;
    color: var(--svh-primary);
    font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--svh-accent);
    background: rgba(37, 99, 235, 0.08);
}

.nav-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--svh-cta);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.22);
}

.nav-cta:hover,
.primary-action:hover {
    transform: translateY(-1px);
    background: var(--svh-cta-dark);
}

main {
    flex: 1;
}

.app-loading {
    min-height: 100vh;
    display: grid;
    place-items: center;
    color: var(--svh-primary);
    background: #f8fafc;
    font-weight: 800;
}

.hero-section {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.48) 72%, rgba(255, 255, 255, 0.28) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 37, 64, 0.14)),
        url("/images/svh-hero-workspace.png") center / cover no-repeat;
    border-bottom: 1px solid var(--svh-line);
}

.hero-inner {
    padding: 96px 0 104px;
}

.hero-content {
    max-width: 840px;
}

.hero-brand,
.section-kicker {
    margin: 0 0 18px;
    color: var(--svh-accent);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.96;
    font-weight: 800;
}

.hero-copy {
    max-width: 720px;
    margin: 30px 0 0;
    color: var(--svh-muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-action,
.secondary-action {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
}

.primary-action {
    color: #ffffff;
    background: var(--svh-cta);
}

.secondary-action {
    color: var(--svh-primary);
    border: 1px solid rgba(10, 37, 64, 0.18);
    background: #ffffff;
}

.secondary-action:hover {
    color: var(--svh-accent);
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.premium-hero {
    position: relative;
    overflow: hidden;
    padding: 112px 0 104px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 50%, rgba(239, 246, 255, 0.92) 100%),
        radial-gradient(circle at 74% 18%, rgba(37, 99, 235, 0.18), transparent 30%);
    border-bottom: 1px solid var(--svh-line);
}

.premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
    pointer-events: none;
}

.premium-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 58px;
}

.premium-hero-copy h1 {
    max-width: 780px;
    color: #081f3a;
    font-size: clamp(3.2rem, 7vw, 6.2rem);
    line-height: 0.98;
    font-weight: 800;
}

.premium-hero-copy p:not(.section-kicker) {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--svh-muted);
    font-size: clamp(1.14rem, 2vw, 1.42rem);
    line-height: 1.65;
}

.hero-proof {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-proof span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    color: var(--svh-primary);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    font-size: 0.92rem;
}

.hero-proof strong {
    color: var(--svh-accent);
}

.cloud-visual {
    position: relative;
    min-height: 470px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 18px;
    background:
        radial-gradient(circle at 40% 40%, rgba(37, 99, 235, 0.15), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.88)),
        repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0 1px, transparent 1px 56px),
        repeating-linear-gradient(0deg, rgba(37, 99, 235, 0.08) 0 1px, transparent 1px 56px);
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.12);
    animation: heroFloat 8s ease-in-out infinite;
}

.visual-card {
    position: absolute;
    z-index: 2;
    width: min(58%, 260px);
    padding: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: 14px;
    box-shadow: var(--svh-card-shadow);
}

.visual-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--svh-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.visual-card strong {
    display: block;
    color: var(--svh-primary);
    font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
    font-size: 1.08rem;
    line-height: 1.28;
}

.visual-card-primary {
    top: 30px;
    left: 26px;
}

.visual-card-secondary {
    right: 26px;
    bottom: 34px;
}

.visual-card-tertiary {
    left: 44px;
    bottom: 88px;
}

.cloud-node {
    position: absolute;
    min-width: 86px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: var(--svh-primary);
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    font-weight: 800;
    z-index: 1;
}

.node-primary {
    top: 42%;
    left: 50%;
    min-width: 124px;
    min-height: 72px;
    transform: translate(-50%, -50%);
    color: #ffffff;
    background: var(--svh-primary);
}

.node-aws {
    top: 18%;
    left: 14%;
}

.node-dotnet {
    top: 16%;
    right: 14%;
}

.node-devops {
    bottom: 18%;
    left: 18%;
}

.node-sql {
    right: 18%;
    bottom: 20%;
}

.cloud-line {
    position: absolute;
    height: 1px;
    background: rgba(37, 99, 235, 0.28);
    transform-origin: left center;
}

.line-one {
    top: 35%;
    left: 31%;
    width: 38%;
}

.line-two {
    top: 54%;
    left: 26%;
    width: 48%;
    transform: rotate(20deg);
}

.line-three {
    top: 54%;
    left: 30%;
    width: 42%;
    transform: rotate(-20deg);
}

.logo-strip {
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.logo-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.logo-strip span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: var(--svh-muted);
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
}

.home-section {
    padding: 86px 0 98px;
    background: #ffffff;
}

.section-soft {
    background: #f8fafc;
}

.home-section-heading {
    max-width: 780px;
    margin-bottom: 44px;
}

.home-section-heading h2,
.split-section h2,
.cta-panel h2 {
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 800;
}

.section-copy {
    max-width: 660px;
    margin: 20px 0 0;
    color: var(--svh-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.premium-card-grid {
    display: grid;
    gap: 28px;
}

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

.premium-card {
    min-height: 100%;
    padding: 32px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.section-reveal .premium-card,
.section-reveal .trust-list article,
.testimonial-card,
.cta-panel {
    animation: sectionRise 600ms ease both;
}

.section-reveal .premium-card:nth-child(2) {
    animation-delay: 80ms;
}

.section-reveal .premium-card:nth-child(3) {
    animation-delay: 160ms;
}

.section-reveal .premium-card:nth-child(4) {
    animation-delay: 220ms;
}

.section-reveal .premium-card:nth-child(5) {
    animation-delay: 280ms;
}

.section-reveal .premium-card:nth-child(6) {
    animation-delay: 340ms;
}

.premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.premium-card-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--svh-primary);
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 16px;
    font-weight: 800;
}

.premium-card h3 {
    color: #111827;
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 800;
}

.premium-card p {
    margin: 12px 0 0;
    color: var(--svh-muted);
    line-height: 1.65;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-stack span {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    color: var(--svh-primary);
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
    font-weight: 800;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 48px;
}

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

.service-area-list {
    display: grid;
    gap: 18px;
}

.service-area-list article {
    padding: 26px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-area-list h3 {
    color: #111827;
    font-size: 1.18rem;
}

.service-area-list p {
    margin: 10px 0 0;
    color: var(--svh-muted);
    line-height: 1.65;
}

.trust-list article,
.case-study-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.trust-list h3 {
    color: #111827;
    font-size: 1.18rem;
}

.trust-list p {
    margin: 10px 0 0;
    color: var(--svh-muted);
    line-height: 1.6;
}

.testimonial-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonial-card {
    padding: 48px;
    text-align: center;
    color: #ffffff;
    background: var(--svh-primary);
    border-radius: 18px;
}

.stars {
    margin: 0 0 18px;
    color: #fbbf24;
    font-size: 1.3rem;
}

.testimonial-card blockquote {
    max-width: 820px;
    margin: 0 auto;
    font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.22;
}

.cta-section {
    padding: 80px 0;
    background: #f8fafc;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.case-study-list {
    display: grid;
    gap: 28px;
}

.case-study-card h2 {
    max-width: 840px;
    color: #111827;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
}

.case-study-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.case-study-grid section {
    padding: 22px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 12px;
}

.case-study-grid h3 {
    color: #111827;
    font-size: 1.08rem;
}

.case-study-grid p {
    margin: 10px 0 0;
    color: var(--svh-muted);
    line-height: 1.65;
}

.services-preview,
.about-preview {
    padding: 78px 0;
}

.services-preview {
    background: #ffffff;
}

.about-preview {
    background: var(--svh-soft);
    border-top: 1px solid var(--svh-line);
}

.preview-grid,
.about-preview .section-inner {
    display: grid;
    gap: 18px;
}

.services-preview h2,
.about-preview h2 {
    max-width: 680px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    font-weight: 800;
}

.about-list {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-list span {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--svh-line);
    border-radius: 8px;
    color: var(--svh-primary);
    background: #ffffff;
    font-weight: 700;
}

.about-page-section,
.contact-page-section {
    padding: 92px 0 104px;
    background: #f8fafc;
}

.about-page-grid,
.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
    gap: 48px;
}

.about-profile,
.contact-intro,
.contact-form,
.about-highlight {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-profile,
.contact-intro {
    padding: 46px;
}

.about-profile h1,
.contact-intro h1 {
    color: #111827;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1;
    font-weight: 800;
}

.about-role {
    margin: 18px 0 0;
    color: var(--svh-accent);
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    font-weight: 800;
    line-height: 1.5;
}

.about-copy {
    margin-top: 34px;
    display: grid;
    gap: 20px;
}

.about-copy p,
.contact-intro p {
    margin: 0;
    color: var(--svh-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-highlight {
    padding: 30px;
    display: grid;
    gap: 12px;
}

.about-highlight > span {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    color: var(--svh-primary);
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 10px;
    font-weight: 800;
}

.about-highlight-icon {
    width: 24px;
    display: inline-flex;
    justify-content: center;
    flex: 0 0 auto;
}

.contact-intro {
    position: sticky;
    top: 112px;
}

.contact-intro p {
    margin-top: 24px;
}

.conversion-actions {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.contact-panel {
    display: grid;
    gap: 22px;
}

.contact-form {
    padding: 34px;
    display: grid;
    gap: 20px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-checkbox {
    display: flex !important;
    align-items: flex-start;
    grid-template-columns: auto 1fr;
    gap: 12px !important;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 10px;
}

.contact-checkbox input {
    width: 18px !important;
    height: 18px;
    margin-top: 3px;
    flex: 0 0 auto;
}

.contact-checkbox span {
    color: var(--svh-text);
    font-weight: 700;
    line-height: 1.45;
}

.contact-form span {
    color: var(--svh-primary);
    font-weight: 800;
}

.contact-form .required-marker {
    color: #dc2626;
}

.contact-form .validation-message {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(203, 213, 225, 0.95);
    border-radius: 10px;
    padding: 14px 15px;
    color: var(--svh-text);
    background: #ffffff;
    font: inherit;
    line-height: 1.4;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.72);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-form button {
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: var(--svh-cta);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease;
}

.contact-form button:hover {
    transform: translateY(-1px);
    background: #0ea371;
}

.contact-details {
    padding: 28px;
    display: grid;
    gap: 18px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-details div {
    display: grid;
    gap: 6px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--svh-line);
}

.contact-details div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-details span {
    color: var(--svh-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-details a,
.contact-details p {
    margin: 0;
    color: var(--svh-primary);
    font-weight: 800;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-details a:hover {
    color: var(--svh-accent);
}

.contact-success {
    display: grid;
    gap: 4px;
    padding: 16px;
    color: #065f46;
    text-align: center;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 10px;
    line-height: 1.45;
}

.contact-success strong {
    color: #064e3b;
}

.thank-you-section {
    min-height: 620px;
    padding: 92px 0 104px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96) 54%, rgba(239, 246, 255, 0.9)),
        radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.16), transparent 32%);
}

.thank-you-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: stretch;
    gap: 32px;
}

.thank-you-panel,
.thank-you-next-steps {
    padding: 42px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: 18px;
    box-shadow: var(--svh-card-shadow-strong);
}

.thank-you-panel h1 {
    color: #081f3a;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 800;
}

.thank-you-panel p:not(.section-kicker) {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--svh-muted);
    font-size: 1.18rem;
    line-height: 1.7;
}

.thank-you-next-steps h2 {
    color: #111827;
    font-size: 1.6rem;
}

.thank-you-next-steps ol {
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
    counter-reset: next-steps;
}

.thank-you-next-steps li {
    position: relative;
    min-height: 52px;
    padding: 14px 14px 14px 48px;
    color: var(--svh-primary);
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 12px;
    font-weight: 700;
    line-height: 1.45;
    counter-increment: next-steps;
}

.thank-you-next-steps li::before {
    content: counter(next-steps);
    position: absolute;
    top: 14px;
    left: 14px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--svh-accent);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.thank-you-links {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.thank-you-links a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: var(--svh-primary);
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.14);
    border-radius: 8px;
    font-weight: 800;
    transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.thank-you-links a:hover {
    color: var(--svh-accent);
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.services-section {
    padding: 86px 0 98px;
    background: #f8fafc;
}

.why-choose-section {
    padding: 86px 0 98px;
    background: #ffffff;
}

.industries-section {
    padding: 86px 0 98px;
    background: #f8fafc;
}

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

.services-heading .section-kicker {
    margin-bottom: 14px;
}

.services-heading h1 {
    color: #111827;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    font-weight: 800;
}

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

.service-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.service-card-image {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
}

.service-card-symbol {
    display: block;
    margin-bottom: 14px;
    font-size: 2rem;
    line-height: 1;
}

.service-card-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--svh-primary);
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 18px;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1;
}

.service-card h2 {
    margin-bottom: 15px;
    color: #111827;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.22;
    font-weight: 800;
}

.service-card p {
    margin: 0 0 26px;
    color: var(--svh-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.service-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--svh-accent);
    font-weight: 800;
    transition: color 180ms ease, transform 180ms ease;
}

.service-card-link:hover {
    color: #1d4ed8;
    transform: translateX(2px);
}

.service-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 96px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96) 56%, rgba(239, 246, 255, 0.9)),
        radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.16), transparent 32%);
    border-bottom: 1px solid var(--svh-line);
}

.service-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    pointer-events: none;
}

.service-detail-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 48px;
}

.service-detail-hero h1 {
    max-width: 820px;
    color: #081f3a;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 1;
    font-weight: 800;
}

.service-detail-hero p:not(.section-kicker) {
    max-width: 760px;
    margin: 26px 0 0;
    color: var(--svh-muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    line-height: 1.72;
}

.service-detail-summary {
    padding: 34px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: 18px;
    box-shadow: var(--svh-card-shadow-strong);
}

.service-detail-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--svh-primary);
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 18px;
    font-size: 1.9rem;
    font-weight: 800;
}

.service-detail-summary h2 {
    color: #111827;
    font-size: 1.45rem;
    line-height: 1.18;
    font-weight: 800;
}

.service-detail-summary p {
    margin: 14px 0 0;
    color: var(--svh-muted);
    line-height: 1.68;
}

.service-detail-section {
    padding: 82px 0;
    background: #ffffff;
}

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

.service-detail-panel {
    min-height: 100%;
    padding: 34px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 18px;
    box-shadow: var(--svh-card-shadow);
    animation: sectionRise 600ms ease both;
}

.service-detail-panel:nth-child(2) {
    animation-delay: 100ms;
}

.service-detail-panel h2 {
    color: #111827;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.12;
    font-weight: 800;
}

.service-detail-panel ul,
.service-detail-panel ol {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
}

.service-detail-panel li {
    position: relative;
    padding: 16px 16px 16px 44px;
    color: var(--svh-primary);
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.service-detail-panel li::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 18px;
    width: 10px;
    height: 10px;
    background: var(--svh-cta);
    border-radius: 999px;
}

.service-detail-panel ol {
    counter-reset: service-steps;
}

.service-detail-panel ol li {
    counter-increment: service-steps;
}

.service-detail-panel ol li::before {
    content: counter(service-steps);
    top: 15px;
    left: 14px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--svh-accent);
    font-size: 0.78rem;
    font-weight: 800;
}

.service-tech-stack {
    margin-top: 24px;
}

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

.industry-card {
    min-height: 100%;
    padding: 34px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.industry-card-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.industry-card-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--svh-primary);
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 16px;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.industry-card h2 {
    color: #111827;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.18;
    font-weight: 800;
}

.industry-card-description {
    margin: 0 0 22px;
    color: var(--svh-muted);
    font-size: 1rem;
    line-height: 1.65;
}

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

.industry-card li {
    padding: 13px 14px;
    color: var(--svh-primary);
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 10px;
    font-weight: 700;
    line-height: 1.35;
}

.site-footer {
    color: #dbeafe;
    background:
        linear-gradient(135deg, #071f38 0%, var(--svh-primary) 58%, var(--svh-primary-2) 100%);
}

.footer-inner {
    padding: 56px 0 34px;
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.65fr) minmax(220px, 0.8fr);
    align-items: start;
    gap: 42px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
}

.footer-brand img {
    width: 64px;
    height: 42px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 8px;
}

.footer-inner p {
    max-width: 430px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
}

.footer-column h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact span,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    line-height: 1.4;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 22px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.5;
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes sectionRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 860px) {
    .site-nav {
        min-height: 72px;
        padding: 10px 0;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .brand img {
        width: 164px;
        height: 50px;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-panel {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex: 1 0 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: max-height 240ms ease, opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .nav-panel.is-open {
        max-height: 560px;
        padding: 8px 0 10px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links {
        padding: 12px;
        justify-content: flex-start;
        gap: 6px;
        background: #ffffff;
        border: 1px solid rgba(226, 232, 240, 0.92);
        border-radius: 14px;
        box-shadow: var(--svh-card-shadow);
    }

    .nav-links a {
        flex: 1 1 calc(50% - 6px);
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .nav-cta {
        width: 100%;
    }

    .hero-section {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 54%, rgba(255, 255, 255, 0.72) 100%),
            url("/images/svh-hero-workspace.png") center / cover no-repeat;
    }

    .hero-inner {
        padding: 72px 0 82px;
    }

    .premium-hero {
        padding: 72px 0 76px;
    }

    .premium-hero-grid,
    .service-detail-hero-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .cloud-visual {
        min-height: 380px;
    }

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

    .hero-copy br {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-company {
        grid-column: 1 / -1;
    }

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

    .about-page-section,
    .contact-page-section {
        padding: 68px 0 76px;
    }

    .about-page-grid,
    .contact-page-grid,
    .thank-you-grid {
        grid-template-columns: 1fr;
    }

    .contact-intro {
        position: static;
    }

    .services-section {
        padding: 68px 0 76px;
    }

    .why-choose-section {
        padding: 68px 0 76px;
    }

    .industries-section {
        padding: 68px 0 76px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-hero {
        padding: 72px 0 78px;
    }

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

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

    .case-study-grid,
    .trust-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .section-inner,
    .site-nav {
        width: min(100% - 28px, 1120px);
    }

    .nav-links a {
        flex-basis: 100%;
        padding: 9px 10px;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .premium-hero-copy h1 {
        font-size: clamp(2.45rem, 13vw, 3.9rem);
    }

    .premium-hero-copy p:not(.section-kicker) {
        font-size: 1.08rem;
    }

    .hero-proof span,
    .logo-strip span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .primary-action,
    .secondary-action {
        width: 100%;
    }

    .home-section,
    .testimonial-section,
    .cta-section {
        padding: 62px 0;
    }

    .three-columns {
        grid-template-columns: 1fr;
    }

    .premium-card,
    .testimonial-card,
    .cta-panel,
    .case-study-card {
        padding: 28px 22px;
    }

    .cta-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .cloud-visual {
        min-height: 430px;
        animation: none;
    }

    .cloud-node {
        min-width: 68px;
        min-height: 42px;
        padding: 0 12px;
        font-size: 0.84rem;
    }

    .node-primary {
        top: 45%;
    }

    .node-aws {
        top: 24%;
        left: 8%;
    }

    .node-dotnet {
        top: 24%;
        right: 8%;
    }

    .node-devops {
        bottom: 22%;
        left: 8%;
    }

    .node-sql {
        right: 8%;
        bottom: 22%;
    }

    .visual-card {
        width: calc(100% - 36px);
        left: 18px;
        right: auto;
        padding: 14px;
    }

    .visual-card-primary {
        top: 18px;
    }

    .visual-card-tertiary {
        bottom: 78px;
    }

    .visual-card-secondary {
        bottom: 18px;
    }

    .about-profile,
    .contact-intro,
    .contact-form,
    .contact-details,
    .about-highlight,
    .thank-you-panel,
    .thank-you-next-steps {
        padding: 28px 22px;
    }

    .thank-you-section {
        min-height: auto;
        padding: 62px 0;
    }

    .thank-you-panel h1 {
        font-size: clamp(2.25rem, 12vw, 3.5rem);
    }

    .services-heading {
        margin-bottom: 36px;
    }

    .services-heading h1,
    .about-profile h1,
    .contact-intro h1 {
        font-size: clamp(2rem, 12vw, 3rem);
        line-height: 1.08;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-detail-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.55rem);
    }

    .service-detail-summary,
    .service-detail-panel {
        padding: 28px 22px;
    }

    .service-detail-section {
        padding: 62px 0;
    }

    .service-card-image {
        width: 112px;
        height: 112px;
    }

    .industry-card {
        padding: 28px 22px;
    }

    .industry-card-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding-top: 42px;
        gap: 30px;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}
