:root {
    --deep-blue: #0A2540;
    --core-blue: #1E3A8A;
    --accent-blue: #00AEEF;
    --light-grey: #F5F7FA;
    --slate: #6B7280;
    --charcoal: #1A1A1A;
    --white: #FFFFFF;
    --line: #DCE6F2;
    --shadow: 0 18px 48px rgba(10, 37, 64, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    color: var(--white);
    background: rgba(10, 37, 64, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    color: inherit;
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    color: var(--accent-blue);
}

.brand-mark svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.brand-mark polygon,
.brand-mark path {
    fill: none;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 4;
}

.brand-mark circle {
    fill: currentColor;
}

.brand strong,
.brand small {
    display: block;
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1;
    text-transform: uppercase;
}

.brand strong {
    font-size: 1rem;
    letter-spacing: 0;
}

.brand small {
    margin-top: 5px;
    color: var(--accent-blue);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.42em;
}

nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.4vw, 28px);
    font-size: 0.92rem;
    font-weight: 700;
}

nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

nav a:hover {
    color: var(--white);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: calc(100vh - 72px);
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(10, 37, 64, 0.96) 0%, rgba(10, 37, 64, 0.91) 48%, rgba(30, 58, 138, 0.72) 100%),
        url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=80") center/cover;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image:
        linear-gradient(30deg, transparent 45%, rgba(0, 174, 239, 0.18) 46%, transparent 47%),
        radial-gradient(circle at 82% 22%, rgba(0, 174, 239, 0.22) 0 2px, transparent 3px);
    background-size: 88px 88px, 34px 34px;
}

.hero-inner {
    position: relative;
    width: min(1080px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(84px, 13vh, 148px) 0 180px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--deep-blue);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 840px;
    color: var(--white);
    font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.hero-copy {
    max-width: 690px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 2vw, 1.24rem);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

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

.button.secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
    position: absolute;
    right: clamp(18px, 4vw, 56px);
    bottom: 34px;
    left: clamp(18px, 4vw, 56px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.hero-panel div {
    padding: 22px;
    color: var(--deep-blue);
}

.hero-panel div + div {
    border-left: 1px solid var(--line);
}

.hero-panel span {
    color: var(--accent-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
}

.hero-panel strong {
    display: block;
    margin-top: 4px;
    font-family: "Montserrat", Arial, sans-serif;
}

.hero-panel p {
    margin: 7px 0 0;
    color: var(--slate);
    font-size: 0.92rem;
}

.section {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(70px, 9vw, 112px) 0;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2,
.contact h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(32px, 6vw, 84px);
    align-items: start;
}

.intro-copy {
    display: grid;
    gap: 18px;
    color: #334155;
    font-size: 1.06rem;
}

.intro-copy p {
    margin: 0;
}

.services,
.fit {
    border-top: 1px solid var(--line);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.service-card {
    min-height: 280px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.service-card h3,
.fit-list h3 {
    margin-top: 22px;
    font-size: 1.12rem;
}

.service-card p,
.fit-list p,
.approach-step p {
    margin: 12px 0 0;
    color: #475569;
}

.icon {
    display: block;
    width: 46px;
    height: 46px;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent 46%, var(--accent-blue) 47% 53%, transparent 54%),
        linear-gradient(0deg, transparent 46%, var(--accent-blue) 47% 53%, transparent 54%);
}

.icon.cloud {
    border-radius: 24px 24px 10px 10px;
}

.icon.build {
    background:
        linear-gradient(135deg, transparent 43%, var(--accent-blue) 44% 55%, transparent 56%),
        linear-gradient(45deg, transparent 43%, var(--accent-blue) 44% 55%, transparent 56%);
}

.icon.code {
    background:
        linear-gradient(120deg, transparent 38%, var(--accent-blue) 39% 48%, transparent 49%),
        linear-gradient(60deg, transparent 52%, var(--accent-blue) 53% 62%, transparent 63%);
}

.icon.support {
    border-radius: 50%;
}

.approach {
    width: 100%;
    max-width: none;
    padding-right: clamp(18px, 4vw, 56px);
    padding-left: clamp(18px, 4vw, 56px);
    color: var(--white);
    background: var(--deep-blue);
}

.approach .section-heading {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.approach h2 {
    color: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: min(1120px, 100%);
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
}

.approach-step {
    padding: 30px;
    background: rgba(255, 255, 255, 0.06);
}

.approach-step span {
    color: var(--accent-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.approach-step p {
    color: rgba(255, 255, 255, 0.78);
}

.fit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 36px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.fit-list article {
    padding: 30px;
    background: var(--light-grey);
}

.proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.proof div {
    padding: clamp(28px, 5vw, 52px);
    background: var(--white);
    text-align: center;
}

.proof strong {
    display: block;
    color: var(--core-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
}

.proof span {
    display: block;
    max-width: 280px;
    margin: 12px auto 0;
    color: var(--slate);
}

.contact {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(32px, 6vw, 78px);
    align-items: start;
}

.contact-copy p:not(.eyebrow) {
    color: #475569;
    font-size: 1.05rem;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--light-grey);
}

label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    border: 1px solid #C8D4E3;
    border-radius: 6px;
    padding: 13px 14px;
    color: var(--charcoal);
    font: inherit;
    background: var(--white);
}

textarea {
    resize: vertical;
}

.form-note {
    margin: 0;
    color: var(--slate);
    font-size: 0.92rem;
}

.form-note a {
    color: var(--core-blue);
    font-weight: 800;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px clamp(18px, 4vw, 56px);
    color: var(--white);
    background: var(--deep-blue);
}

.site-footer p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    text-align: right;
}

@media (max-width: 940px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding-bottom: 34px;
    }

    .hero-panel,
    .intro,
    .contact {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        grid-template-columns: 1fr;
    }

    .hero-panel {
        width: min(100% - 36px, 1120px);
        margin: 0 auto 28px;
    }

    .service-grid,
    .approach-grid,
    .fit-list,
    .proof {
        grid-template-columns: 1fr;
    }

    .hero-panel div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }
}

@media (max-width: 620px) {
    .site-header {
        padding: 12px 18px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand small {
        letter-spacing: 0.3em;
    }

    .hero-inner {
        width: min(100% - 28px, 1080px);
        padding-top: 60px;
    }

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

    .section {
        width: min(100% - 28px, 1120px);
    }

    .service-card,
    .fit-list article,
    .approach-step,
    .contact-form {
        padding: 22px;
    }

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

    .site-footer p {
        text-align: left;
    }
}

/* Modern concept pages */
.concept {
    --deep-blue: #0A2540;
    --core-blue: #1E3A8A;
    --accent-blue: #00AEEF;
    --light-grey: #F5F7FA;
    --slate: #607086;
    --charcoal: #142033;
    background: var(--white);
}

.concept .nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 58px);
    color: var(--white);
    background: rgba(10, 37, 64, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.concept .nav.light {
    color: var(--deep-blue);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
}

.concept .nav.light nav a {
    color: var(--deep-blue);
}

.concept .nav a {
    text-decoration: none;
}

.concept .nav nav {
    display: flex;
    gap: 22px;
    font-size: 0.92rem;
}

.hero-modern {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(34px, 7vw, 92px);
    align-items: center;
    min-height: calc(100vh - 78px);
    padding: clamp(48px, 7vw, 92px) clamp(18px, 6vw, 78px);
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(10, 37, 64, 0.98), rgba(15, 42, 77, 0.94) 52%, rgba(30, 58, 138, 0.82)),
        url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-modern.final-hero {
    grid-template-columns: minmax(0, 900px);
    min-height: 76vh;
    align-content: center;
    padding-top: clamp(52px, 8vw, 96px);
    padding-bottom: clamp(52px, 8vw, 96px);
}

.hero-copy-block h1 {
    max-width: 860px;
    color: var(--white);
    font-size: clamp(2.6rem, 4.8vw, 4.55rem);
}

.hero-copy-block p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
}

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

.button.ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.moodle-dashboard {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

.dash-head {
    display: flex;
    gap: 8px;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dash-head span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-blue);
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 22px;
}

.dash-card,
.dash-pill {
    border-radius: 14px;
    padding: 18px;
    color: var(--deep-blue);
    background: rgba(255, 255, 255, 0.94);
}

.dash-card.wide {
    grid-column: span 2;
}

.dash-card strong {
    display: block;
    color: var(--core-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 2.2rem;
}

.dash-line {
    grid-column: span 2;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-blue), rgba(255, 255, 255, 0.3));
}

.dash-line.short {
    width: 72%;
}

.dash-pill {
    padding: 10px 12px;
    color: var(--white);
    background: rgba(0, 174, 239, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.concept-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px clamp(18px, 6vw, 78px);
    background: var(--light-grey);
    border-bottom: 1px solid var(--line);
}

.concept-switch a {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--deep-blue);
    background: var(--white);
    font-weight: 800;
    text-decoration: none;
}

.concept-switch a.active {
    color: var(--white);
    background: var(--core-blue);
    border-color: var(--core-blue);
}

.split-intro,
.image-story,
.contact-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(30px, 7vw, 84px);
    align-items: center;
}

.concept-one .section {
    padding-top: clamp(58px, 7vw, 88px);
    padding-bottom: clamp(58px, 7vw, 88px);
}

.concept-one .service-suite article {
    min-height: 260px;
}

.concept-one .pricing-section {
    padding-top: clamp(62px, 7vw, 92px);
    padding-bottom: clamp(62px, 7vw, 92px);
}

.split-intro h2,
.process-band h2,
.image-story h2,
.contact-panel h2,
.narrative h2,
.ops-detail h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.split-intro > p,
.image-story p,
.contact-panel p,
.narrative p,
.ops-detail p {
    color: #475569;
    font-size: 1.08rem;
}

.service-suite {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.service-suite article {
    min-height: 310px;
    padding: clamp(26px, 4vw, 44px);
    background: var(--white);
}

.mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: var(--white);
    background: var(--accent-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
}

.service-suite h3 {
    margin-top: 24px;
    font-size: 1.22rem;
}

.service-suite p {
    color: var(--slate);
}

.pricing-section {
    width: 100%;
    max-width: none;
    padding-right: clamp(18px, 6vw, 78px);
    padding-left: clamp(18px, 6vw, 78px);
    background: var(--light-grey);
}

.pricing-head {
    max-width: 880px;
}

.pricing-head h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.pricing-head p:not(.eyebrow) {
    color: #475569;
    font-size: 1.06rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.price-card {
    display: flex;
    flex-direction: column;
    min-height: 470px;
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(10, 37, 64, 0.08);
}

.price-card.featured {
    border-color: rgba(0, 174, 239, 0.46);
    box-shadow: 0 22px 60px rgba(0, 174, 239, 0.16);
}

.plan-label {
    margin: 0 0 14px;
    color: var(--accent-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.price-card h3 {
    color: var(--core-blue);
    font-size: clamp(2.1rem, 4vw, 3rem);
}

.price-card h3 span {
    display: block;
    margin-top: 8px;
    color: var(--slate);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.plan-fit {
    min-height: 58px;
    color: #475569;
}

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

.price-card li {
    position: relative;
    padding-left: 24px;
    color: #334155;
}

.price-card li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-blue);
    transform: translateY(-50%);
}

.pricing-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.pricing-note strong,
.pricing-note span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
}

.pricing-note strong {
    color: var(--deep-blue);
}

.pricing-note span {
    color: #475569;
}

.partner-positioning {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(30px, 6vw, 78px);
    align-items: center;
    border-top: 1px solid var(--line);
}

.partner-positioning h2,
.comparison-intro h2,
.sme-proof h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.partner-positioning p {
    color: #475569;
    font-size: 1.06rem;
}

.position-cards {
    display: grid;
    gap: 16px;
}

.position-cards article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--light-grey);
}

.position-cards strong {
    color: var(--core-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.1rem;
}

.concept-four {
    background: #FAFBFC;
}

.button.outline-dark {
    color: var(--deep-blue);
    border-color: rgba(10, 37, 64, 0.24);
    background: rgba(255, 255, 255, 0.72);
}

.sme-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(34px, 7vw, 88px);
    align-items: center;
    min-height: calc(100vh - 78px);
    padding: clamp(42px, 7vw, 86px) clamp(18px, 6vw, 78px);
    background:
        linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.7)),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.sme-hero h1 {
    max-width: 980px;
    font-size: clamp(2.55rem, 4.8vw, 4.75rem);
}

.sme-hero p:not(.eyebrow) {
    max-width: 760px;
    color: #43546B;
    font-size: 1.1rem;
}

.sme-stack {
    display: grid;
    gap: 14px;
}

.sme-stack article {
    padding: 24px;
    border: 1px solid rgba(10, 37, 64, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 54px rgba(10, 37, 64, 0.1);
}

.sme-stack span {
    color: var(--accent-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
}

.sme-stack strong {
    display: block;
    margin-top: 6px;
    color: var(--deep-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.2rem;
}

.sme-stack p {
    margin-bottom: 0;
    color: var(--slate);
}

.comparison-section {
    width: 100%;
    max-width: none;
    padding-right: clamp(18px, 6vw, 78px);
    padding-left: clamp(18px, 6vw, 78px);
    background: var(--deep-blue);
}

.comparison-intro {
    max-width: 920px;
}

.comparison-section h2 {
    color: var(--white);
}

.comparison-intro p:not(.eyebrow) {
    color: rgba(255,255,255,0.76);
    font-size: 1.06rem;
}

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

.compare-grid article {
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.07);
}

.compare-grid article.featured {
    color: var(--deep-blue);
    background: var(--white);
}

.compare-grid h3 {
    color: inherit;
    font-size: 1.5rem;
}

.compare-grid ul {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding-left: 20px;
}

.sme-proof {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(30px, 6vw, 78px);
}

.proof-grid {
    display: grid;
    gap: 16px;
}

.proof-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 14px 38px rgba(10, 37, 64, 0.07);
}

.proof-grid strong {
    color: var(--core-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.12rem;
}

.proof-grid p {
    margin-bottom: 0;
    color: var(--slate);
}

.pricing-section.compact {
    padding-top: clamp(58px, 8vw, 92px);
}

.service-catalog,
.sme-service-menu {
    border-top: 1px solid var(--line);
}

.catalog-head {
    max-width: 900px;
}

.catalog-head h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.catalog-head p:not(.eyebrow) {
    color: #475569;
    font-size: 1.06rem;
}

.catalog-grid,
.service-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.catalog-grid article,
.service-menu-grid article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(10, 37, 64, 0.06);
}

.catalog-grid strong,
.service-menu-grid strong {
    display: block;
    color: var(--deep-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.02rem;
    line-height: 1.25;
}

.catalog-grid p,
.service-menu-grid p {
    margin: 10px 0 0;
    color: var(--slate);
    font-size: 0.95rem;
}

.service-menu-grid span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.exclusion-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.exclusion-note strong,
.exclusion-note span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 999px;
}

.exclusion-note strong {
    color: var(--deep-blue);
    background: var(--light-grey);
}

.exclusion-note span {
    color: #475569;
    background: #EEF3F8;
}

.exclusion-note.light strong,
.exclusion-note.light span {
    border: 1px solid var(--line);
    background: var(--white);
}

.process-band {
    width: 100%;
    max-width: none;
    padding-right: clamp(18px, 6vw, 78px);
    padding-left: clamp(18px, 6vw, 78px);
    color: var(--white);
    background: var(--deep-blue);
}

.process-band h2 {
    max-width: 760px;
    color: var(--white);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.timeline article {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.07);
}

.timeline strong {
    color: var(--accent-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.35rem;
}

.timeline p {
    color: rgba(255, 255, 255, 0.74);
}

.image-story img,
.editorial-hero img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.contact-panel {
    margin-bottom: 54px;
    padding: clamp(34px, 6vw, 58px);
    border-radius: 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--deep-blue), var(--core-blue));
}

.final-footer {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: clamp(28px, 6vw, 84px);
    padding: clamp(38px, 6vw, 68px) clamp(18px, 6vw, 78px);
    color: rgba(255, 255, 255, 0.74);
    background: #071B2F;
}

.final-footer .brand {
    color: var(--white);
}

.final-footer p {
    max-width: 560px;
    margin: 20px 0 0;
}

.final-footer h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
}

.final-footer a,
.final-footer span {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.final-footer a:hover {
    color: var(--accent-blue);
}

.contact-panel h2,
.contact-panel p {
    color: var(--white);
}

.contact-panel .button {
    justify-self: end;
}

.editorial-hero {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(36px, 7vw, 88px);
    align-items: center;
    padding: clamp(56px, 9vw, 112px) clamp(18px, 6vw, 78px);
    background: #F8FAFC;
}

.editorial-hero h1 {
    font-size: clamp(2.5rem, 5.4vw, 5.2rem);
}

.editorial-hero p:not(.eyebrow) {
    color: #475569;
    font-size: 1.1rem;
}

.quiet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.quiet-grid article {
    padding: clamp(28px, 5vw, 54px);
    background: var(--white);
}

.quiet-grid h2 {
    font-size: 1.5rem;
}

.narrative {
    max-width: 900px;
}

.ops-hero {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(34px, 7vw, 88px);
    align-items: center;
    padding: clamp(58px, 9vw, 116px) clamp(18px, 6vw, 78px);
    color: var(--white);
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 174, 239, 0.22), transparent 30%),
        linear-gradient(135deg, #071B2F, #0A2540 54%, #1E3A8A);
}

.ops-hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5.5vw, 5.2rem);
}

.ops-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

.terminal-card {
    overflow: hidden;
    border: 1px solid rgba(0, 174, 239, 0.32);
    border-radius: 18px;
    background: rgba(3, 12, 25, 0.82);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.term-top {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.term-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-blue);
}

.terminal-card pre {
    margin: 0;
    padding: 28px;
    color: #BFEFFF;
    font: 700 1rem/1.8 Consolas, monospace;
    white-space: pre-wrap;
}

.ops-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #06182A;
}

.ops-metrics article {
    padding: 34px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ops-metrics strong {
    display: block;
    color: var(--accent-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 2rem;
}

.ops-detail {
    max-width: 940px;
}

.plugins-hero {
    padding: clamp(64px, 10vw, 132px) clamp(18px, 6vw, 78px);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(10, 37, 64, 0.96), rgba(30, 58, 138, 0.88)),
        url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.plugins-hero h1 {
    max-width: 980px;
    color: var(--white);
    font-size: clamp(2.5rem, 5.4vw, 5.5rem);
}

.plugins-hero p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.12rem;
}

.plugin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: clamp(32px, 6vw, 78px);
    background: var(--light-grey);
}

.plugin-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 36px rgba(10, 37, 64, 0.08);
}

.plugin-grid span {
    color: var(--accent-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
}

.plugin-grid h2 {
    margin-top: 18px;
    font-size: 1.28rem;
}

.plugin-grid p,
.plugin-grid li {
    color: var(--slate);
}

.plugin-grid ul {
    padding-left: 18px;
}

@media (max-width: 980px) {
    .hero-modern,
    .split-intro,
    .partner-positioning,
    .image-story,
    .contact-panel,
    .editorial-hero,
    .ops-hero,
    .sme-hero,
    .sme-proof {
        grid-template-columns: 1fr;
    }

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

    .service-suite,
    .pricing-grid,
    .catalog-grid,
    .service-menu-grid,
    .timeline,
    .compare-grid,
    .quiet-grid,
    .ops-metrics,
    .plugin-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-panel .button {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .concept .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 18px;
    }

    .concept .nav nav {
        width: 100%;
        overflow-x: auto;
        gap: 16px;
        white-space: nowrap;
    }

    .hero-modern,
    .editorial-hero,
    .ops-hero,
    .plugins-hero {
        padding-right: 18px;
        padding-left: 18px;
    }

    .actions,
    .actions .button,
    .contact-panel .button {
        width: 100%;
    }

    .service-suite,
    .pricing-grid,
    .catalog-grid,
    .service-menu-grid,
    .timeline,
    .compare-grid,
    .quiet-grid,
    .ops-metrics,
    .plugin-grid {
        grid-template-columns: 1fr;
    }

    .image-story img,
    .editorial-hero img {
        min-height: 280px;
    }
}
