:root {
    --ink: hsl(222, 47%, 11%);
    --ink-lighter: hsl(222, 47%, 17%);
    --muted: hsl(215, 19%, 35%);
    --line: hsl(214, 32%, 91%);
    --panel: hsl(210, 40%, 98%);
    --panel-darker: hsl(215, 19%, 92%);
    --accent: hsl(221, 83%, 53%);
    --accent-dark: hsl(224, 76%, 48%);
    --white: hsl(0, 0%, 100%);
    --green: hsl(142, 71%, 45%);
    --shadow: 0 24px 70px hsla(222, 47%, 11%, 0.14);
    --sectionPaddingx: clamp(20px, 5vw, 72px);
    --sectionPaddingY: clamp(58px, 8vw, 110px);
    --cardRadius: 24px;
    --buttonRadius: 999px;

    /* Text size */
    --text-7px: clamp(5px, 0.1vw, 8px);
    --text-9px: clamp(8px, 0.3vw, 10px);
    --text-11px: clamp(10px, 0.5vw, 12px);
    --text-13px: clamp(12px, 0.7vw, 14px);
    --text-15px: clamp(14px, 0.9vw, 16px);
    --text-18px: clamp(16px, 1.1vw, 20px);
    --text-21px: clamp(18px, 1.4vw, 24px);
    --title-30px: clamp(24px, 2vw, 36px);
    --title-36px: clamp(27px, 3vw, 44px);
    --title-41px: clamp(30px, 4vw, 52px);
    --title-62px: clamp(42px, 7vw, 82px);
    --headerHeight: 90px;
}

/* ********** Global ********** */
main[id] {
    scroll-margin-top: var(--headerHeight);
}

section[id] {
    scroll-margin-top: calc(var(--headerHeight) - 30px);
}

* {
    box-sizing: content-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Aptos, Segoe UI, Arial, sans-serif;
    color: var(--ink);
    font-size: var(--text-15px);
    background: var(--white);
    line-height: 1.5;
}

a {
    color: inherit;
}

.sectionPadding {
    padding: var(--sectionPaddingY) var(--sectionPaddingx);
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: var(--text-18px);
    font-weight: 800;
    margin: 0 0 var(--text-11px) !important;
}

.dark {
    background: var(--ink);
    color: var(--white);
}

.dark .eyebrow {
    color: #93c5fd;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--title-41px);
    padding: 2px var(--text-21px);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    text-decoration: none;
}

.navButton {
    padding: var(--text-9px) var(--text-21px);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border-width: 1px;
    border-color: var(--panel);
    border-style: solid;
}

.inkButton {
    color: var(--white) !important;
    background: var(--ink);
    font-weight: 680;
}

.inkButton:hover {
    color: var(--white) !important;
    background: var(--ink-lighter);
}

.accentButton {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(37, 99, 235, .25);
}

.accentButton:hover {
    background: var(--accent-dark);
}

.whiteButton {
    border-width: 1px;
    border-color: var(--line);
    color: var(--ink);
    background: var(--white);
}

.whiteButton:hover {
    color: var(--ink-lighter);
    background: var(--panel);
}

.cardsGrid {
    gap: var(--text-18px);
    display: flex;
    flex-wrap: wrap;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--cardRadius);
    padding: var(--text-21px);
    background: var(--white);
    flex: 1 1 280px;
}

.card h3 {
    margin-top: 0;
    font-size: var(--text-21px);
    line-height: 1.15;
}

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

/* ********** Site Header ********** */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line) !important;
    align-items: center;
    justify-content: space-between;
    padding: 8px var(--sectionPaddingx) 8px var(--sectionPaddingx);
}

.site-header-image {
    flex-basis: 160px;
}

.site-header-logo {
    height: 80px;
    height: var(--title-62px);
    width: auto;
}

.site-header-nav {
    flex-basis: 300px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--text-21px);
}

/* ********** Hero ********** */
.hero {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sectionPaddingx);
    padding: var(--title-30px) var(--sectionPaddingx);
    background: radial-gradient(circle at 20% 25%, rgba(37, 99, 235, .12), transparent 28%),
	linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero h1 {
    font-size: var(--title-62px);
    line-height: .98;
    margin: var(--text-11px) 0  var(--text-21px);
    letter-spacing: -0.045em;
    text-align: left;
}

.hero-image {
    object-fit: fill;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex: 1 1 300px;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: fill;
    flex-shrink: 0;
}

.hero-content {
    flex: 2 1 500px;
}

.hero-text {
    max-width: 85%;
    font-size: var(--text-21px);
    color: var(--muted);
    padding-top: 16px;
    padding-bottom: 36px;
    text-align: justify;
}

.hero-actions {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

/* ********** Section Story ********** */
.sectionStory {
    padding-top: clamp(24px, 2vw, 55px);
    padding-bottom: clamp(24px, 2vw, 55px);
}

.story-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: var(--text-21px);
    box-shadow: var(--shadow);
}

.story-line span {
    display: block;
    color: var(--muted);
    font-size: var(--text-21px);
    margin-bottom: var(--text-11px);
}

.story-line strong {
    line-height: 1.1;
}

/* ********** Section Heading ********** */
/* ********** Global for Services, Situation & Method ********** */
.sectionHeading {
    margin-bottom: var(--title-30px);
}

.sectionHeading h2 {
    font-size: var(--title-41px);
    line-height: 1.2;
    letter-spacing: -0.035em;
    margin: 0;
    text-align: left;
}

/* ********** Section Services ********** */
.sectionServices {
}

/* ********** Section Situation ********** */
.sectionSituation {
    display: flex;
    flex-wrap: wrap;
    gap: var(--title-41px);
    border-radius: var(--title-41px);
    margin: 0 var(--sectionPaddingx);
    padding: var(--title-41px);
    justify-content: space-between;
}

.sectionHeadingSituation {
    flex: 1 1 300px;
}

.situation-list{
    flex: 1 1 300px;
    width: 75%;
    max-width: 720px;
}

.check-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: var(--text-11px);
}

.check-list li {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--text-18px);
    padding: var(--text-11px) var(--text-11px);
}

.check-list li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
    margin-right: var(--text-11px);
}

/* ********** Section Method ********** */
.step {
    background: var(--panel);
}

.step span {
    display: inline-grid;
    place-items: center;
    width: var(--title-36px);
    height: var(--title-36px);
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-weight: 900;
    margin-bottom: var(--text-15px);
}

.step h3 {
    margin: 0 0 var(--text-9px);
}

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

/* ********** Section Contact ********** */
.sectionContact {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--accent);
    color: var(--white);
    justify-content: space-around;
}

.contact-text {
    flex: 1 1 500px;
}

.contact-text h2 {
    font-size: var(--title-41px);
    line-height: 1.2;
    letter-spacing: -0.035em;
    margin: 0;
}

.contact-text p {
    color: rgba(255, 255, 255, .9);
    font-size: var(--text-18px);
    text-align: justify;
    margin-bottom: 0;
}

.contact-us {
    display: flex;
    justify-content: space-evenly;
    padding: var(--title-30px) 0;
}

.largeButton {
    padding: 2px var(--title-62px);
}

.contact-card {
    display: flex;
    flex-wrap: wrap;
    max-width: 75%;
    border: 1px solid var(--line);
    border-radius: var(--cardRadius);
    padding: 5px 15px 5px 15px;
    box-shadow: var(--shadow);
    background: var(--white);
    gap: 2em;
    justify-content: space-evenly;
}

.contact-card-text {
    display: flex;
    flex-basis: 300;
    padding: 20px;
    gap: 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.contact-card a {
    display: flex;
    flex-wrap: wrap;
    color: var(--accent);
    font-weight: 800;
    font-size: clamp(18px, 2vw, 30px);
}

.contact-card a:hover {
    color: var(--accent-dark);
}

.contact-card p {
    color: var(--muted);
    font-size: clamp(12px, 1.2vw, 24px);
    display: flex;
    margin-top: 0em;
    margin-bottom: 0em;
    white-space: nowrap;
    justify-self: stretch;
}

.contact-card strong {
    color: var(--muted);
    font-size: clamp(24px, 2.2vw, 36px);
    justify-content: start;
    display: flex;
}

.contact-card-image {
    flex-basis: 300;
}

.contact-card-logo {
    min-width: 180px;
    width: 100%;
    max-width: 280px;
    height: auto;
    align-items: center;
}

.small {
    font-size: 13px !important;
    color: var(--muted);
}

.footer {
    padding: 26px var(--sectionPaddingx);
    border-top: 1px solid var(--line);
    display: flex;
    color: var(--muted);
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: var(--text-21px);
}

@media (max-width: 980px) {
    .hero,
    	.intro,
    	.split {
        grid-template-columns: 1fr;
    }

    .grid.cards,
    	.steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        display: none;
    }

    .hero {
        min-height: auto;
    }

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

@media (max-width: 620px) {
    .grid.cards,
    	.steps {
        grid-template-columns: 1fr;
    }

    .brand-logo {
        height: 36px;
    }

    .split {
        margin: 0 12px;
        border-radius: var(--cardRadius);
    }

    .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-logo {
        margin: auto;
    }
}