:root {
    --navy: #071923;
    --teal: #127681;
    --deep: #1D4ED8;
    --mint: #EAF7F3;
    --cream: #FAFCFF;
    --coral: #C2410C;
    --coral2: #9A3412;
    --muted: #536B78;
    --border: #DDE8EF;
    --shadow: 0 22px 70px rgba(6, 43, 63, .12);
    --scroll-progress: 0;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: Georgia, "Times New Roman", serif;
    --font-mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6
}

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

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

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

.narrow {
    max-width: 820px
}

.center {
    text-align: center
}

.eyebrow {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 700;
    font-size: 12px;
    color: var(--teal);
    margin: 0 0 14px
}

.center.eyebrow,
.eyebrow.center {
    text-align: center
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.02;
    margin: 0 0 18px;
    color: var(--navy)
}

h1 {
    font-size: clamp(44px, 5.4rem, 86px)
}

h2 {
    font-size: clamp(34px, 3.5rem, 56px);
    text-align: center
}

h3 {
    font-size: 28px
}

p {
    color: var(--muted)
}

.btn {
    border: 0;
    border-radius: 16px;
    padding: 15px 22px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: .22s ease
}

.btn-primary {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 18px 45px rgba(255, 90, 79, .24)
}

.btn-primary:hover {
    background: var(--coral2);
    transform: translateY(-1px)
}

.btn-secondary {
    border: 1.5px solid var(--navy);
    background: #fff;
    color: var(--navy)
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, .45)
}

.btn-ghost.light {
    color: #fff
}

.wide {
    width: 100%
}

.text-link {
    font-weight: 800;
    color: var(--teal)
}

.breadcrumbs {
    background: rgba(255, 255, 255, .82);
    border-bottom: 1px solid rgba(6, 43, 63, .08);
    padding: 12px 0;
    font-size: 13px;
    font-weight: 800
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted)
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: rgba(96, 120, 135, .6)
}

.breadcrumbs a {
    color: var(--teal)
}

.breadcrumbs span {
    color: var(--navy)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 248, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(6, 43, 63, .08);
    transition: .2s
}

.site-header.is-scrolled {
    box-shadow: 0 10px 35px rgba(6, 43, 63, .08)
}

.nav-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: .9
}

.brand span {
    font-family: var(--font-display);
    color: var(--coral);
    font-size: 38px;
    font-style: italic
}

.brand small {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 900;
    font-size: 12px;
    color: var(--navy)
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 800;
    font-size: 14px
}

.main-nav>a,
.drop-trigger {
    padding: 24px 0
}

.main-nav a:hover {
    color: var(--teal)
}

.nav-dropdown {
    position: relative
}

/* ARROW */
.arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);

    transform: rotate(45deg);
    transition: transform 0.28s cubic-bezier(.4, 0, .2, 1);

    margin-top: 2px; /* micro adjustment */
}

/* Rotate arrow on hover */
.nav-dropdown:hover .arrow {
    transform: rotate(-135deg);
}


/* DROPDOWN ANIMATION */
.dropdown-panel {
    position: absolute;
    top: calc(100% + 8px); /* small gap */
    left: -18px;
    min-width: 260px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);

    padding: 14px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);

    transition: 
        opacity 0.2s ease,
        transform 0.25s cubic-bezier(.4, 0, .2, 1);
}

/* Show smoothly */
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown {
    position: relative;
    padding-bottom: 12px;
}

.dropdown-panel a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.dropdown-panel a:hover {
    background: var(--mint);
    transform: translateX(3px);
}

.drop-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


.mobile-toggle {
    display: none;
    border: 0;
    background: var(--mint);
    border-radius: 10px;
    padding: 10px;
    font-size: 22px
}

.mobile-menu {
    display: none
}

.hero {
    min-height: calc(100vh - 76px);
    background: linear-gradient(135deg, var(--mint), #fff 55%, #FDF7EE);
    display: flex;
    align-items: center;
    padding: 70px 0
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.hero h1 span {
    color: var(--coral)
}

.hero-copy p:not(.eyebrow),
.subhero p {
    font-size: 19px;
    max-width: 590px
}

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

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700
}

.hero-art {
    position: relative
}

.hero-art img,
.subhero-img {
    border-radius: 34px;
    box-shadow: var(--shadow);
    background: #fff
}

.floating-stat {
    position: absolute;
    left: 6%;
    top: 12%;
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 900;
    color: var(--teal);
    box-shadow: var(--shadow);
    animation: float 5s ease-in-out infinite
}

.floating-dot {
    position: absolute;
    right: 10%;
    bottom: 20%;
    width: 18px;
    height: 18px;
    background: var(--coral);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite
}

.section {
    padding: 90px 0
}

@supports (content-visibility: auto) {
    .section {
        content-visibility: auto;
        contain-intrinsic-size: 900px
    }
}

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

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

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px 18px;
    min-height: 300px;
    box-shadow: 0 8px 28px rgba(6, 43, 63, .05);
    transition: .25s ease
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.service-card span {
    font-family: var(--font-mono);
    color: var(--muted);
    font-size: 12px
}

.service-card img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 18px;
    margin: 18px 0
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1.1
}

.service-card p {
    font-size: 15px
}

.about-split,
.process,
.reviews {
    background: var(--mint)
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px
}

.split>img {
    border-radius: 34px;
    box-shadow: var(--shadow)
}

.founder-mini {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    margin-top: 14px
}

.founder-mini span {
    display: block;
    color: var(--muted);
    font-size: 14px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 38px 0
}

.stats-grid div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(6, 43, 63, .05)
}

.stats-grid strong {
    display: block;
    color: var(--teal);
    font-size: 34px
}

.stats-grid span {
    font-weight: 700;
    color: var(--muted)
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 38px
}

.trust-testimonials {
    align-items: stretch
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.testimonial-head {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center
}

.testimonial-head img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mint);
    box-shadow: 0 10px 28px rgba(6, 43, 63, .1)
}

.testimonial-head strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
    margin-top: 3px
}

.testimonial-head small {
    display: block;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.35
}

.testimonial-card p {
    margin: 0;
    flex: 1
}

.trust-result {
    align-self: flex-start;
    border-radius: 999px;
    background: var(--mint);
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
    padding: 8px 12px
}

.testimonials article,
.case-card,
.blog-card,
.contact-card,
.generic-page .container,
.feature-grid div,
.process-grid div,
.founder-grid article,
.contact-grid article {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 8px 28px rgba(6, 43, 63, .05)
}

.subhero {
    padding: 130px 0 80px;
    background: linear-gradient(135deg, #fff, var(--mint));
    min-height: 520px;
    display: flex;
    align-items: center
}

.subhero.dark {
    background: var(--navy)
}

.subhero.dark h1,
.subhero.dark p {
    color: #fff
}

.subhero-img {
    max-height: 430px;
    object-fit: contain
}

.subhero-img.wide {
    width: 100%;
    object-fit: cover
}

.service-list {
    display: grid;
    gap: 26px;
    margin-top: 42px
}

.service-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(6, 43, 63, .05)
}

.service-row>img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    background: var(--navy)
}

.service-row>div {
    padding: 34px
}

.service-row ul,
.feature-grid ul {
    padding-left: 0;
    list-style: none;
    columns: 2
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.case-hero .subhero-img {
    min-height: 360px
}

.proof-strip {
    background: #fff
}

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

.case-snapshot-grid div {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    background: var(--cream);
    box-shadow: 0 8px 28px rgba(6, 43, 63, .05)
}

.case-snapshot-grid strong {
    display: block;
    color: var(--teal);
    font-size: 34px;
    line-height: 1
}

.case-snapshot-grid span {
    display: block;
    color: var(--muted);
    font-weight: 800;
    margin-top: 10px
}

.case-library {
    background: linear-gradient(180deg, var(--mint), #fff)
}

.case-study-list {
    display: grid;
    gap: 34px;
    margin-top: 44px
}

.case-study-panel {
    display: grid;
    grid-template-columns: minmax(280px, .86fr) 1.14fr;
    gap: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 55px rgba(6, 43, 63, .08)
}

.case-media {
    position: relative;
    min-height: 100%
}

.case-media img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: contain;
    background: linear-gradient(135deg, var(--mint), #fff)
}

.case-number {
    position: absolute;
    left: 18px;
    top: 18px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--teal);
    font-family: var(--font-mono);
    font-weight: 800;
    box-shadow: var(--shadow)
}

.case-body {
    padding: 34px
}

.case-kicker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.case-kicker span {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase
}

.case-body h3 {
    font-size: 36px
}

.case-metrics {
    margin: 22px 0
}

.case-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 24px
}

.case-detail-grid section,
.case-work,
.case-outcome {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    background: var(--cream)
}

.case-detail-grid h4,
.case-work h4,
.case-outcome strong {
    display: block;
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase
}

.case-detail-grid p,
.case-outcome p {
    margin: 0
}

.case-work {
    margin-top: 18px
}

.case-work ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    list-style: none;
    padding: 0;
    margin: 0
}

.case-work li {
    color: var(--muted);
    font-weight: 700
}

.case-work li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--coral);
    margin-right: 8px
}

.case-outcome {
    margin-top: 18px;
    background: var(--mint)
}

.case-method {
    background: #fff
}

.case-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 38px;
    counter-reset: case-step
}

.case-timeline div {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    background: var(--cream);
    box-shadow: 0 8px 28px rgba(6, 43, 63, .05)
}

.case-timeline div::before {
    counter-increment: case-step;
    content: counter(case-step, decimal-leading-zero);
    display: block;
    color: var(--coral);
    font-family: var(--font-mono);
    font-weight: 900;
    margin-bottom: 14px
}

.case-timeline span {
    color: var(--navy);
    font-weight: 900;
    font-size: 18px
}

.case-timeline p {
    margin-bottom: 0
}

.pricing-section {
    background: #fff
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
    align-items: stretch
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 10px 34px rgba(6, 43, 63, .06)
}

.pricing-card.is-featured {
    background: #fff;
    border-color: rgba(37,99,235,.34);
    box-shadow: 0 24px 70px rgba(37,99,235,.14)
}

.package-badge {
    align-self: flex-start;
    border-radius: 999px;
    background: var(--mint);
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    padding: 7px 11px;
    text-transform: uppercase
}

.pricing-card h3 {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 0
}

.package-price {
    display: block;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.15
}

.pricing-card p {
    margin: 0
}

.pricing-card ul {
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
    flex: 1
}

.pricing-card li {
    color: var(--muted);
    font-weight: 750
}

.pricing-card li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--teal);
    margin-right: 9px;
    transform: translateY(-1px)
}

.mini-metrics {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.mini-metrics span,
.pill-row span {
    background: var(--mint);
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--teal);
    font-weight: 800;
    font-size: 13px
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.blog-hub-hero .hero-grid {
    align-items: center
}

.topic-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px
}

.topic-nav a {
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-weight: 900;
    padding: 9px 13px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(6, 43, 63, .05)
}

.topic-nav a:hover {
    border-color: rgba(245, 158, 11, .45);
    color: #B45309
}

.center-topic-nav {
    justify-content: center
}

.blog-feature-section {
    background: #fff
}

.featured-post {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 34px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(135deg, #F8FAFC, #ECFDF5);
    padding: 24px;
    box-shadow: 0 22px 65px rgba(6, 43, 63, .08)
}

.featured-post h2 {
    text-align: left;
    font-size: 42px;
    line-height: 1.05
}

.featured-post h2 a {
    color: inherit;
    text-decoration: none
}

.featured-media,
.featured-media img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 8px;
    object-fit: cover
}

.post-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0
}

.post-signals span {
    border-radius: 999px;
    background: rgba(37, 99, 235, .09);
    color: #1D4ED8;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 10px
}

.blog-library h2,
.topic-section h2 {
    margin-bottom: 34px
}

.blog-card img {
    border-radius: 18px;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 20px
}

.blog-card h3 {
    line-height: 1.18
}

.blog-card .card-link {
    color: inherit;
    text-decoration: none
}

.blog-idea-card {
    border-style: dashed
}

.topic-section {
    background: #fff
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.topic-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--cream);
    padding: 20px
}

.topic-card h3 {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.2
}

.single-post-page {
    padding-top: 130px
}

.single-post h1 {
    text-align: left
}

.single-featured-image img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 8px;
    margin: 28px 0
}

.entry-content {
    color: #263D4A;
    font-size: 18px;
    line-height: 1.8
}

.entry-content p,
.entry-content li {
    color: #263D4A
}

.entry-content a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: .18em;
    transition: color .18s ease, text-decoration-color .18s ease
}

.entry-content a:hover,
.entry-content a:focus-visible {
    color: var(--teal);
    text-decoration-color: currentColor
}

.entry-content strong {
    color: var(--navy)
}

.entry-content h2,
.entry-content h3 {
    text-align: left;
    margin-top: 34px
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.founder-grid img {
    height: 300px;
    object-fit: contain;
    margin: auto
}

.values {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 30px
}

.contact-hero .hero-grid {
    grid-template-columns: .9fr 1.1fr
}

.pill-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px
}

.service-resource {
    background: linear-gradient(180deg, #F4FFFB, #F8FBFF);
    border-block: 1px solid var(--border)
}

.service-resource h2 {
    text-align: left
}

.service-resource p {
    color: #263D4A;
    max-width: 720px
}

.service-depth {
    background: #fff
}

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

.service-depth-card,
.service-outcome {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(180deg, #FFFFFF, #F8FBFF);
    box-shadow: 0 16px 45px rgba(7,25,35,.07)
}

.service-depth-card {
    padding: 28px
}

.service-depth-card h2 {
    text-align: left;
    margin-bottom: 16px
}

.service-depth-card ul,
.service-depth-card ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
    color: #263D4A;
    line-height: 1.65
}

.service-depth-card li::marker {
    color: var(--teal);
    font-weight: 900
}

.service-outcome {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding: 24px 28px;
    border-left: 4px solid var(--teal)
}

.service-outcome strong {
    color: var(--navy);
    font-size: 18px
}

.service-outcome p {
    color: #263D4A;
    margin: 0;
    line-height: 1.7
}

.global-reach {
    background: linear-gradient(180deg, #F4FFFB, #F8FBFF);
    border-block: 1px solid var(--border)
}

.global-reach-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
    gap: 34px;
    align-items: center
}

.global-reach h2 {
    text-align: left;
    margin-bottom: 14px
}

.global-reach p {
    color: #263D4A;
    max-width: 760px
}

.market-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end
}

.market-pills span,
.footer-global {
    color: #DDEBFF
}

.market-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(37,99,235,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(7,25,35,.06)
}

.contact-card h2 {
    text-align: left;
    font-size: 38px
}

.lead-form {
    display: grid;
    gap: 16px
}

.quote-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 4px
}

.quote-progress span {
    height: 7px;
    border-radius: 999px;
    background: var(--border);
    font-size: 0
}

.quote-progress span.is-active {
    background: linear-gradient(90deg, var(--deep), var(--teal))
}

.quote-step {
    display: grid;
    border: 0;
    margin: 0;
    padding: 0;
    gap: 16px
}

.has-motion-js .quote-step {
    display: none
}

.quote-step.is-active {
    display: grid
}

.quote-step legend {
    color: var(--navy);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 2px
}

.service-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.service-checks label {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 10px 12px
}

.service-checks input {
    width: auto;
    margin: 0
}

.service-checks span {
    line-height: 1.25
}

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

.sts-hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.lead-form label {
    font-weight: 800;
    font-size: 13px;
    color: var(--navy)
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 6px;
    font: inherit;
    background: #fff;
    color: var(--navy)
}

textarea {
    resize: vertical
}

.check-label {
    display: flex;
    align-items: center;
    gap: 8px
}

.check-label input {
    width: auto
}

.privacy-note {
    text-align: center;
    color: var(--muted)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.lead-magnet-section {
    background: #fff
}

.lead-magnet-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--mint), #fff);
    padding: 30px;
    box-shadow: 0 18px 55px rgba(6, 43, 63, .08)
}

.lead-magnet-panel h2 {
    text-align: left;
    font-size: 40px
}

.lead-magnet-form {
    display: grid;
    gap: 12px
}

.lead-magnet-fields {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: end
}

.lead-magnet-fields input {
    margin-top: 0
}

.lead-magnet-form .check-label {
    font-size: 12px;
    color: var(--muted)
}

.final-cta {
    background: #fff;
    padding: 50px 0 0
}

.cta-inner {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border-radius: 28px 28px 0 0;
    padding: 28px 34px;
    display: grid;
    grid-template-columns: 170px 1fr auto;
    gap: 26px;
    align-items: center;
    color: #fff
}

.cta-inner img {
    height: 120px;
    width: 170px;
    object-fit: cover;
    border-radius: 22px
}

.cta-inner h2 {
    text-align: left;
    color: #fff;
    font-size: 38px
}

.cta-inner p {
    color: rgba(255, 255, 255, .8)
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.cta-actions .btn {
    min-width: 172px;
    justify-content: center
}

.site-footer {
    background: var(--navy);
    color: #fff;
    padding: 50px 0 26px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px
}

.footer-grid h3 {
    margin: 0 0 12px
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, .72);
    margin: 6px 0
}

.footer-grid p {
    color: rgba(255, 255, 255, .72)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 18px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .7);
    font-size: 13px
}

.footer-brand span {
    color: var(--coral)
}

.scroll-guide {
    position: fixed;
    right: 28px;
    top: 108px;
    height: calc(100vh - 170px);
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

.scroll-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border)
}

.scroll-fill {
    width: 3px;
    background: var(--coral);
    height: calc(var(--scroll-progress) * 100%)
}

.scroll-guide a {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid var(--cream)
}

.scroll-guide a:after {
    content: attr(data-label);
    position: absolute;
    left: 22px;
    top: -5px;
    font-weight: 900;
    font-size: 13px;
    color: #000 !important;
    white-space: nowrap
}

.scroll-character {
    position: absolute;
    right: -25px;
    top: 10%;
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    transition: top .2s linear
}

.consult-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000
}

.consult-modal.open {
    display: block
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 43, 63, .58);
    backdrop-filter: blur(5px)
}

.modal-card {
    position: relative;
    background: #fff;
    max-width: 760px;
    max-height: 90vh;
    overflow: auto;
    margin: 5vh auto;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28)
}

.modal-card h2 {
    text-align: left;
    font-size: 42px
}

.booking-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 20px 0 24px;
    padding: 16px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(239, 246, 255, .96), rgba(236, 253, 245, .9))
}

.booking-option div {
    display: grid;
    gap: 5px
}

.booking-option strong {
    color: var(--navy);
    font-size: 16px
}

.booking-option span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 14px;
    border: 0;
    background: var(--mint);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 26px;
    cursor: pointer
}

.generic-page {
    padding-top: 130px;
    min-height: 60vh
}

.generic-page h1 {
    text-align: center
}

.legal-page {
    padding-top: 70px
}

.legal-page .container {
    padding: 34px;
    border-radius: 8px
}

.legal-page h2 {
    margin-top: 32px;
    text-align: left
}

.legal-page p,
.legal-page li {
    color: #263D4A;
    font-size: 17px;
    line-height: 1.75
}

.post-meta {
    color: var(--muted);
    margin-bottom: 25px
}

.inline-cta {
    background: var(--mint);
    border-radius: 24px;
    padding: 25px;
    margin-top: 35px
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@media(max-width:768px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .scroll-guide {
        display: none
    }

    .main-nav {
        gap: 16px
    }

    .nav-wrap>.btn {
        display: none
    }
}

@media(max-width:860px) {
    h1 {
        font-size: 44px
    }

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

    .hero {
        padding-top: 40px
    }

    .main-nav {
        display: none
    }

    .mobile-toggle {
        display: block
    }

    .mobile-menu.open {
        display: grid;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        z-index: 999;
        padding: 16px 24px;
        box-shadow: var(--shadow)
    }

    .mobile-menu a {
        padding: 9px 0;
        font-weight: 800
    }

    .mobile-menu .indent {
        padding-left: 20px;
        color: var(--teal)
    }

    .service-grid,
    .stats-grid,
    .testimonials,
    .case-grid,
    .blog-grid,
    .founder-grid,
    .contact-grid,
    .feature-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .service-row {
        grid-template-columns: 1fr
    }

    .global-reach-inner {
        grid-template-columns: 1fr
    }

    .service-depth-grid {
        grid-template-columns: 1fr
    }

    .market-pills {
        justify-content: flex-start
    }

    .service-row ul {
        columns: 1
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .cta-inner h2 {
        text-align: center
    }

    .cta-inner img {
        margin: auto
    }

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

    .form-grid {
        grid-template-columns: 1fr
    }

    .service-checks {
        grid-template-columns: 1fr
    }

    .quote-actions .btn {
        width: 100%
    }

    .cookie-consent {
        left: 14px;
        right: 14px;
        bottom: 14px;
        grid-template-columns: 1fr
    }

    .cookie-actions .btn {
        flex: 1
    }

    .lead-magnet-panel,
    .lead-magnet-fields {
        grid-template-columns: 1fr
    }

    .lead-magnet-panel {
        padding: 22px
    }

    .lead-magnet-panel h2 {
        font-size: 32px
    }

    .subhero {
        padding-top: 110px
    }

    .site-header .brand span {
        font-size: 30px
    }
}

.scroll-guide a {
    position: relative;
    z-index: 2;
}

.scroll-guide a::after {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    z-index: 999;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
}

.scroll-character {
    z-index: 1;
}

.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-outline {
    border: 1px solid #000;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 14px;
}

/* Modern trust layer: SEO-friendly UI, motion, and navigation polish */
:root {
    --blue: #2563EB;
    --emerald: #10B981;
    --gold: #F59E0B;
    --surface: #FFFFFF;
    --glass: rgba(255,255,255,.78);
    --shadow: 0 24px 70px rgba(7,25,35,.13)
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: 14px;
    z-index: 3000;
    transform: translateY(-160%);
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #fff;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;
    padding: 10px 16px;
    box-shadow: 0 18px 42px rgba(7,25,35,.2);
    font-weight: 800;
    transition: opacity .18s ease, transform .18s ease
}

.skip-link:focus-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto
}

body.modal-open {
    overflow: hidden
}

.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2200;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 18px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(7,25,35,.18);
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease
}

.cookie-consent[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.cookie-consent strong {
    display: block;
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 4px
}

.cookie-consent p {
    margin: 0;
    font-size: 14px
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.site-header {
    background: rgba(250,252,255,.88)
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.94)
}

.brand span {
    color: var(--blue)
}

.brand small,
.eyebrow,
.stars {
    letter-spacing: 0
}

.btn,
.service-card,
.case-card,
.blog-card,
.contact-card,
.testimonials article,
.feature-grid div,
.process-grid div,
.founder-mini,
.stats-grid div {
    border-radius: 8px
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 18px 42px rgba(37,99,235,.22)
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1D4ED8, var(--teal))
}

.btn-secondary:hover,
.text-link:hover {
    color: var(--blue)
}

.mobile-toggle {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    transition: transform .22s ease, opacity .22s ease
}

.mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.mobile-toggle.is-open span:nth-child(2) {
    opacity: 0
}

.mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 12%, rgba(37,99,235,.16), transparent 30%),
        radial-gradient(circle at 86% 24%, rgba(16,185,129,.16), transparent 27%),
        linear-gradient(135deg, #F8FBFF 0%, #EAF7F3 48%, #FFF8EF 100%)
}

.hero::before {
    content: "";
    position: absolute;
    inset: 10% -20% auto auto;
    width: 55%;
    height: 50%;
    background: repeating-linear-gradient(120deg, rgba(37,99,235,.08) 0 1px, transparent 1px 18px);
    transform: rotate(-8deg);
    pointer-events: none
}

.hero-grid {
    position: relative;
    z-index: 1
}

.hero h1 span {
    color: var(--blue)
}

.hero-art img,
.subhero-img {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.9)
}

.floating-stat {
    display: grid;
    min-width: 138px;
    background: var(--glass);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.8);
    color: var(--blue)
}

.floating-stat strong {
    font-size: 30px;
    line-height: 1
}

.floating-stat small {
    color: var(--muted);
    font-weight: 800
}

.floating-dot {
    background: var(--gold);
    box-shadow: 0 0 0 10px rgba(245,158,11,.16)
}

.trust-row span,
.service-row li {
    position: relative;
    padding-left: 22px
}

.trust-row span::before,
.service-row li::before,
.feature-grid div::before {
    content: "\2713";
    position: absolute;
    color: var(--emerald);
    font-weight: 900
}

.trust-row span::before,
.service-row li::before {
    left: 0
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr))
}

.service-card,
.service-row,
.stats-grid div,
.testimonials article,
.process-grid div {
    position: relative;
    overflow: hidden
}

.service-card::after,
.stats-grid div::after,
.process-grid div::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--blue), var(--emerald), var(--gold));
    opacity: 0;
    transition: opacity .22s ease
}

.service-card:hover::after,
.stats-grid div:hover::after,
.process-grid div:hover::after {
    opacity: 1
}

.service-card:hover,
.service-row:hover,
.testimonials article:hover {
    transform: translateY(-5px);
    border-color: rgba(37,99,235,.25)
}

.service-card,
.service-row,
.testimonials article {
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease
}

.service-row li {
    break-inside: avoid
}

.feature-grid div {
    position: relative;
    padding-left: 54px
}

.feature-grid div::before {
    left: 28px;
    top: 30px
}

.subhero.dark {
    background:
        radial-gradient(circle at 18% 18%, rgba(37,99,235,.26), transparent 28%),
        linear-gradient(135deg, #071923, #12364A)
}

.cta-inner {
    background:
        radial-gradient(circle at 8% 28%, rgba(245,158,11,.22), transparent 25%),
        linear-gradient(135deg, var(--blue), var(--navy))
}

.stars {
    color: var(--gold);
    font-weight: 900
}

.scroll-guide {
    right: 24px;
    width: 116px;
    pointer-events: none
}

.scroll-line {
    border-radius: 999px;
    overflow: hidden;
    background: rgba(7,25,35,.12)
}

.scroll-fill {
    background: linear-gradient(180deg, var(--blue), var(--emerald), var(--gold))
}

.scroll-guide a {
    pointer-events: auto;
    background: #fff;
    border: 2px solid rgba(37,99,235,.45);
    box-shadow: 0 8px 24px rgba(7,25,35,.12);
    transition: transform .2s ease, background .2s ease, border-color .2s ease
}

.scroll-guide a.is-active {
    transform: scale(1.25);
    background: var(--blue);
    border-color: #fff
}

.scroll-guide a.is-hidden {
    opacity: 0;
    pointer-events: none
}

.scroll-guide a::after {
    color: var(--navy) !important;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(7,25,35,.08)
}

.scroll-character {
    right: 34px;
    border: 3px solid #fff;
    transition: top .2s linear, opacity .16s ease, transform .16s ease
}

.scroll-character.is-switching {
    opacity: .25;
    transform: scale(.9) rotate(-4deg)
}

.modal-card {
    width: min(760px, calc(100% - 32px));
    border-radius: 12px
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    min-height: 48px
}

.lead-form button {
    min-height: 52px
}

.reveal,
.service-card,
.service-row,
.stats-grid div,
.testimonials article {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease
}

.reveal.is-visible,
.service-card.is-visible,
.service-row.is-visible,
.stats-grid div.is-visible,
.testimonials article.is-visible {
    opacity: 1;
    transform: translateY(0)
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
    /* Keep the decorative marquee scrolling at a calm, normal pace */
    .sts-marquee-track {
        animation-duration: 24s !important;
    }
}

@media(max-width:1100px) {
    .process-grid,
    .stats-grid,
    .testimonials,
    .case-grid,
    .case-snapshot-grid,
    .case-timeline,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .case-study-panel {
        grid-template-columns: 1fr
    }

    .case-media img {
        min-height: 320px;
        max-height: 420px
    }
}

@media(max-width:860px) {
    .mobile-toggle {
        display: flex
    }

    .mobile-menu.open {
        display: grid;
        gap: 2px
    }
}

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

    .hero {
        min-height: auto;
        padding: 42px 0 64px
    }

    .hero-actions,
    .cta-actions {
        display: grid
    }

    .btn {
        width: 100%;
        border-radius: 10px
    }

    .service-grid,
    .stats-grid,
    .testimonials,
    .case-grid,
    .case-snapshot-grid,
    .case-timeline,
    .pricing-grid,
    .blog-grid,
    .feature-grid,
    .process-grid {
        grid-template-columns: 1fr
    }

    .case-body {
        padding: 24px
    }

    .case-body h3 {
        font-size: 30px
    }

    .case-detail-grid,
    .case-work ul {
        grid-template-columns: 1fr
    }

    .service-card {
        min-height: auto
    }

    .modal-card {
        padding: 26px 18px;
        margin: 3vh auto
    }

    .modal-card h2 {
        font-size: 34px
    }
}

/* Keep content visible without JavaScript; animate only when JS is active. */
.reveal,
.service-card,
.service-row,
.stats-grid div,
.testimonials article {
    opacity: 1;
    transform: none
}

.has-motion-js .reveal,
.has-motion-js .service-card,
.has-motion-js .service-row,
.has-motion-js .stats-grid div,
.has-motion-js .testimonials article {
    opacity: 0;
    transform: translateY(18px)
}

.has-motion-js .reveal.is-visible,
.has-motion-js .service-card.is-visible,
.has-motion-js .service-row.is-visible,
.has-motion-js .stats-grid div.is-visible,
.has-motion-js .testimonials article.is-visible {
    opacity: 1;
    transform: translateY(0)
}

/* Premium tuning: aligned menu, smoother scroller, softer glass UI */
.site-header {
    background: rgba(255,255,255,.74);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
    border-bottom: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 14px 38px rgba(7,25,35,.05)
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.84);
    box-shadow: 0 18px 52px rgba(7,25,35,.09)
}

.main-nav {
    height: 76px;
    align-items: stretch
}

.main-nav > a,
.nav-dropdown,
.drop-trigger {
    height: 76px;
    display: inline-flex;
    align-items: center
}

.main-nav > a,
.drop-trigger {
    padding: 0
}

.nav-dropdown {
    padding-bottom: 0
}

.arrow {
    margin-top: 0
}

.dropdown-panel {
    top: calc(100% - 6px);
    background: rgba(255,255,255,.82);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255,255,255,.78);
    box-shadow: 0 24px 70px rgba(7,25,35,.14);
    transform: translateY(10px) scale(.985);
    transition: opacity .28s ease, transform .34s cubic-bezier(.16,1,.3,1), visibility .28s ease
}

.dropdown-panel a {
    transition: background .24s ease, transform .24s ease, color .24s ease
}

.dropdown-panel a:hover {
    background: rgba(37,99,235,.08);
    color: var(--blue);
    transform: translateX(4px)
}

.hero-art img,
.subhero-img,
.service-card,
.service-row,
.case-card,
.blog-card,
.contact-card,
.testimonials article,
.stats-grid div,
.process-grid div,
.founder-mini,
.values,
.modal-card {
    background: rgba(255,255,255,.76);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid rgba(255,255,255,.74);
    box-shadow: 0 20px 60px rgba(7,25,35,.09)
}

.service-card:hover,
.service-row:hover,
.case-card:hover,
.blog-card:hover,
.testimonials article:hover {
    box-shadow: 0 28px 80px rgba(7,25,35,.14)
}

.floating-stat,
.scroll-character,
.scroll-guide a::after {
    background: rgba(255,255,255,.78);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255,255,255,.82)
}

.scroll-guide {
    right: 30px
}

.scroll-guide a {
    background: rgba(255,255,255,.72);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    border-color: rgba(37,99,235,.32);
    transition: transform .42s cubic-bezier(.16,1,.3,1), background .42s ease, border-color .42s ease, box-shadow .42s ease
}

.scroll-guide a.is-active {
    transform: scale(1.18);
    background: linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 14px 38px rgba(37,99,235,.25)
}

.scroll-character {
    box-shadow: 0 18px 48px rgba(7,25,35,.15);
    transition: top .72s cubic-bezier(.16,1,.3,1), opacity .28s ease, transform .42s cubic-bezier(.16,1,.3,1), box-shadow .42s ease
}

.scroll-character.is-switching {
    opacity: .48;
    transform: scale(.94) rotate(-2deg);
    box-shadow: 0 12px 34px rgba(7,25,35,.1)
}

.floating-stat {
    animation-duration: 7.5s
}

.floating-dot {
    animation-duration: 6.5s
}

@media(max-width:860px) {
    .main-nav,
    .main-nav > a,
    .nav-dropdown,
    .drop-trigger {
        height: auto
    }
}

/* Logo and hero graphic polish */
.brand {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: max-content
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.34), rgba(255,255,255,.08)),
        linear-gradient(135deg, var(--blue), var(--teal));
    color: #fff !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-style: normal !important;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: 0 14px 36px rgba(37,99,235,.26), inset 0 1px 0 rgba(255,255,255,.42);
    position: relative;
    overflow: hidden
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 8px
}

.brand-copy {
    display: grid;
    gap: 1px;
    line-height: 1
}

.brand-copy span,
.brand span:not(.brand-mark):not(.brand-copy) {
    font-family: var(--font-body);
    color: var(--navy);
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0
}

.brand-copy small,
.brand small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase
}

.footer-brand .brand-copy span {
    color: #fff
}

.footer-brand .brand-copy small {
    color: rgba(255,255,255,.68)
}

.hero-art {
    isolation: isolate
}

.hero-art::after {
    content: "";
    position: absolute;
    inset: 8% 6% auto auto;
    width: 30%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(245,158,11,.16), transparent 62%);
    filter: blur(3px);
    z-index: 1;
    pointer-events: none
}

.hero-art img {
    width: 100%;
    object-fit: cover;
    transform: translateZ(0)
}

.floating-stat {
    left: clamp(12px, 3.8%, 26px);
    top: clamp(14px, 6%, 34px);
    z-index: 3;
    min-width: 0;
    width: clamp(118px, 23%, 148px);
    padding: clamp(12px, 2.4vw, 18px);
    border-radius: 16px;
    pointer-events: none;
    animation: premiumFloat 10s cubic-bezier(.45,0,.2,1) infinite;
    will-change: transform
}

.floating-stat strong {
    font-size: clamp(24px, 3.1vw, 36px);
    letter-spacing: 0
}

.floating-stat small {
    font-size: clamp(12px, 1.2vw, 14px)
}

.floating-dot {
    right: clamp(34px, 9%, 68px);
    bottom: clamp(44px, 18%, 92px);
    width: 16px;
    height: 16px;
    z-index: 2;
    pointer-events: none;
    animation: premiumGlow 9s cubic-bezier(.45,0,.2,1) infinite;
    box-shadow: 0 0 0 12px rgba(245,158,11,.14), 0 18px 42px rgba(245,158,11,.2)
}

@keyframes premiumFloat {
    0%, 100% {
        transform: translate3d(0,0,0)
    }

    50% {
        transform: translate3d(0,-7px,0)
    }
}

@keyframes premiumGlow {
    0%, 100% {
        transform: translate3d(0,0,0) scale(1);
        opacity: .92
    }

    50% {
        transform: translate3d(-5px,-7px,0) scale(1.04);
        opacity: 1
    }
}

@media(max-width:980px) {
    .floating-stat {
        width: 128px;
        top: 18px;
        left: 18px
    }

    .floating-dot {
        right: 14%;
        bottom: 20%
    }
}

@media(max-width:560px) {
    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 10px
    }

    .brand-copy span {
        font-size: 18px
    }

    .floating-stat {
        width: 112px;
        padding: 10px 12px;
        border-radius: 12px
    }

    .floating-stat strong {
        font-size: 22px
    }
}

.sts-chatbot {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    font-family: var(--font-body);
    color: var(--ink)
}

.sts-chatbot-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    padding: 10px 18px 10px 10px;
    background: linear-gradient(135deg, #2563eb, #0f7f8c);
    color: #fff;
    box-shadow: 0 18px 38px rgba(11, 31, 51, .22);
    font-weight: 900;
    cursor: pointer
}

.sts-chatbot-toggle-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-weight: 900
}

.sts-chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 70px;
    display: none;
    width: min(380px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(15, 127, 140, .18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(11, 31, 51, .24)
}

.sts-chatbot[data-open="true"] .sts-chatbot-panel {
    display: block
}

.sts-chatbot-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    background: #0b1f33;
    color: #fff
}

.sts-chatbot-header strong,
.sts-chatbot-header span {
    display: block
}

.sts-chatbot-header span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px
}

.sts-chatbot-close {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer
}

.sts-chatbot-messages {
    display: grid;
    gap: 10px;
    max-height: 290px;
    overflow-y: auto;
    padding: 14px;
    background: #f6fbfb
}

.sts-chatbot-message {
    max-width: 88%;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.45;
    white-space: pre-wrap
}

.sts-chatbot-message.bot {
    justify-self: start;
    background: #fff;
    border: 1px solid rgba(15, 127, 140, .14)
}

.sts-chatbot-message.user {
    justify-self: end;
    background: #2563eb;
    color: #fff
}

.sts-chatbot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 14px 0;
    background: #fff
}

.sts-chatbot-actions button,
.sts-chatbot-lead-actions button {
    border: 1px solid rgba(15, 127, 140, .2);
    border-radius: 999px;
    background: #fff;
    color: #0b1f33;
    padding: 7px 10px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer
}

.sts-chatbot-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 14px;
    background: #fff
}

.sts-chatbot-form textarea,
.sts-chatbot-lead input,
.sts-chatbot-lead textarea {
    width: 100%;
    border: 1px solid rgba(15, 127, 140, .2);
    border-radius: 8px;
    padding: 10px 11px;
    color: #0b1f33;
    font: inherit;
    resize: vertical
}

.sts-chatbot-form button,
.sts-chatbot-lead-actions button:last-child {
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb, #0f7f8c);
    color: #fff;
    padding: 0 14px;
    font-weight: 900;
    cursor: pointer
}

.sts-chatbot-lead {
    display: grid;
    gap: 10px;
    padding: 0 14px 14px;
    background: #fff
}

.sts-chatbot-lead[hidden] {
    display: none
}

.sts-chatbot-lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.sts-chatbot-lead textarea {
    min-height: 84px
}

.sts-chatbot-lead-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px
}

.sts-chatbot-form button:disabled,
.sts-chatbot-lead button:disabled,
.sts-chatbot-form textarea:disabled,
.sts-chatbot-lead input:disabled,
.sts-chatbot-lead textarea:disabled {
    opacity: .62;
    cursor: wait
}

@media(max-width:560px) {
    .sts-chatbot {
        right: 14px;
        bottom: 14px
    }

    .sts-chatbot-panel {
        bottom: 64px;
        width: calc(100vw - 28px)
    }

    .sts-chatbot-lead-grid {
        grid-template-columns: 1fr
    }
}

/* Final stability pass: no jitter on hero overlays and modern trust logo */
.brand {
    gap: 12px
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 0 !important;
    background:
        linear-gradient(145deg, rgba(255,255,255,.34), rgba(255,255,255,.06)),
        linear-gradient(145deg, #111827 0%, #2563EB 52%, #10B981 100%);
    box-shadow: 0 18px 42px rgba(37,99,235,.24), inset 0 1px 0 rgba(255,255,255,.45)
}

.brand-mark::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.92);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 7px;
    transform: rotate(45deg);
    z-index: 2
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: auto 8px 8px auto;
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: #F59E0B;
    box-shadow: 0 0 0 5px rgba(245,158,11,.18)
}

.brand-spark {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.9)
}

.brand-copy {
    gap: 2px
}

.brand-copy span {
    color: var(--navy);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap
}

.brand-copy small {
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    white-space: nowrap
}

.footer-brand .brand-copy span {
    color: #fff
}

.footer-brand .brand-copy small {
    color: rgba(255,255,255,.72)
}

.hero-art {
    overflow: visible
}

.hero-art img {
    border-radius: 18px;
    transform: none !important;
    backface-visibility: hidden
}

.floating-stat {
    animation: none !important;
    transform: none !important;
    will-change: auto;
    left: 22px;
    top: 22px;
    width: 132px;
    min-width: 0;
    padding: 13px 15px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,255,255,.66));
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 22px 56px rgba(7,25,35,.12), inset 0 1px 0 rgba(255,255,255,.85)
}

.floating-stat strong {
    font-size: 30px;
    line-height: .95;
    color: var(--blue);
    letter-spacing: 0
}

.floating-stat small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #526A78;
    line-height: 1.1
}

.floating-dot {
    animation: none !important;
    transform: none !important;
    right: 58px;
    bottom: 70px;
    width: 18px;
    height: 18px;
    border: 4px solid rgba(255,255,255,.85);
    background: #F59E0B;
    box-shadow: 0 0 0 13px rgba(245,158,11,.14), 0 18px 42px rgba(245,158,11,.2)
}

.floating-dot::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 999px;
    border: 1px solid rgba(245,158,11,.2)
}

@media(max-width:980px) {
    .featured-post,
    .topic-grid {
        grid-template-columns: 1fr
    }

    .featured-post h2 {
        font-size: 34px
    }

    .topic-grid {
        gap: 14px
    }

    .floating-stat {
        left: 18px;
        top: 18px;
        width: 124px
    }

    .floating-dot {
        right: 42px;
        bottom: 56px
    }
}

@media(max-width:560px) {
    .brand-mark {
        width: 40px;
        height: 40px
    }

    .brand-copy span {
        font-size: 17px
    }

    .brand-copy small {
        font-size: 9px
    }

    .floating-stat {
        width: 112px;
        padding: 10px 12px;
        left: 12px;
        top: 12px
    }

    .floating-stat strong {
        font-size: 24px
    }

    .floating-dot {
        right: 26px;
        bottom: 34px
    }
}

/* Final brand lockup: compact, readable, and consistent in header/footer */
.brand,
.footer-brand {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
    min-width: max-content;
    line-height: 1
}

.brand-mark {
    position: relative;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(145deg, #F97316 0%, #2563EB 52%, #10B981 100%);
    box-shadow: 0 14px 30px rgba(37,99,235,.22), inset 0 1px 0 rgba(255,255,255,.42)
}

.brand-mark::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 11px;
    width: 17px;
    height: 17px;
    border: 3px solid #fff;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 6px;
    transform: rotate(45deg)
}

.brand-mark::after {
    content: "";
    position: absolute;
    right: 9px;
    bottom: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FDE68A;
    box-shadow: 0 0 0 4px rgba(253,230,138,.25)
}

.brand-spark {
    position: absolute;
    left: 9px;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.9)
}

.brand-copy {
    display: grid;
    gap: 3px;
    line-height: 1
}

.brand-copy span {
    font-family: var(--font-body);
    color: #071923;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap
}

.brand-copy small {
    color: #2563EB;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap
}

.footer-brand .brand-copy span {
    color: #fff !important
}

.footer-brand .brand-copy small {
    color: #93C5FD !important
}

@media(max-width:560px) {
    .brand-mark {
        flex-basis: 38px;
        width: 38px;
        height: 38px
    }

    .brand-copy span {
        font-size: 17px
    }

    .brand-copy small {
        font-size: 9px
    }

    .booking-option {
        align-items: stretch;
        flex-direction: column
    }

    .booking-option .btn {
        width: 100%
    }

    .topic-nav {
        gap: 8px
    }

    .topic-nav a {
        font-size: 13px;
        padding: 8px 10px
    }

    .featured-post {
        padding: 16px
    }

    .featured-post h2 {
        font-size: 28px
    }

    .entry-content {
        font-size: 16px
    }
}

/* Final launch polish: remove injected skip link and keep legal/service pages tidy. */
.skip-link,
body > a[href="#content"],
body > a[href$="#content"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important
}

.subhero .container.center,
.subhero.dark .container.center,
.legal-hero .container.narrow {
    display: grid;
    justify-items: center;
    text-align: center
}

.subhero .container.center .eyebrow,
.subhero.dark .eyebrow,
.legal-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 auto 18px;
    text-align: center
}

.subhero.dark h1 {
    max-width: 1180px;
    margin-inline: auto;
    text-align: center
}

.subhero.dark p:not(.eyebrow) {
    max-width: 760px;
    margin-inline: auto;
    text-align: center
}

.legal-hero {
    min-height: 430px;
    padding: 108px 0 72px
}

.legal-hero .container.narrow h1 {
    max-width: 900px;
    margin-inline: auto;
    text-align: center
}

.legal-hero .container.narrow > p:not(.eyebrow) {
    max-width: 760px;
    margin-inline: auto;
    text-align: center
}

.legal-page .container > h2,
.generic-page.legal-page .container > h2 {
    text-align: left !important;
    font-family: var(--font-body);
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.22;
    margin-top: 34px;
    margin-bottom: 12px
}

.legal-page .container > p {
    text-align: left
}

.subhero .container.narrow h1 {
    max-width: 860px;
    margin-inline: auto;
    font-size: clamp(52px, 7vw, 88px);
    line-height: .98
}

.subhero .container.narrow > p:not(.eyebrow) {
    max-width: 720px;
    margin-inline: auto
}

@media(max-width:560px) {
    .subhero .container.narrow h1 {
        font-size: 44px
    }

    .legal-hero {
        min-height: auto;
        padding: 76px 0 52px
    }

    .legal-page .container {
        padding: 24px 18px
    }
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

.sts-chatbot {
    right: 24px;
    bottom: 24px;
    z-index: 120
}

.sts-chatbot-toggle {
    min-height: 54px;
    padding: 10px 18px 10px 11px;
    border: 1px solid rgba(255,255,255,.34);
    background: linear-gradient(135deg, #2563eb 0%, #0f7f8c 100%);
    box-shadow: 0 22px 52px rgba(15,31,55,.28);
    letter-spacing: 0
}

.sts-chatbot-toggle-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.24)
}

.sts-chatbot-panel {
    right: 76px;
    bottom: 78px;
    width: min(410px, calc(100vw - 120px));
    border: 1px solid rgba(11,31,51,.12);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
    box-shadow: 0 30px 90px rgba(11,31,51,.26)
}

.sts-chatbot-header {
    align-items: center;
    padding: 16px 16px 15px;
    background:
        linear-gradient(135deg, rgba(37,99,235,.22), rgba(15,127,140,.12)),
        #0b1f33
}

.sts-chatbot-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0
}

.sts-chatbot-avatar {
    flex: 0 0 auto;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    overflow: hidden;
    background: #e8fbf6;
    box-shadow: 0 10px 24px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.32)
}

.sts-chatbot-avatar svg {
    display: block;
    width: 100%;
    height: 100%
}

.sts-chatbot-header strong {
    font-size: 17px;
    line-height: 1.1
}

.sts-chatbot-header span {
    color: rgba(255,255,255,.78);
    font-size: 12.5px;
    line-height: 1.35
}

.sts-chatbot-close {
    flex: 0 0 auto;
    background: rgba(255,255,255,.08)
}

.sts-chatbot-messages {
    gap: 12px;
    max-height: 310px;
    min-height: 150px;
    padding: 16px;
    background:
        linear-gradient(180deg, rgba(232,251,246,.62), rgba(255,255,255,.84)),
        #f7fbfc
}

.sts-chatbot-message {
    max-width: 90%;
    border-radius: 14px;
    padding: 11px 13px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 8px 22px rgba(11,31,51,.06)
}

.sts-chatbot-message.bot {
    border-color: rgba(15,127,140,.16);
    border-top-left-radius: 4px
}

.sts-chatbot-message.user {
    border-bottom-right-radius: 4px;
    background: linear-gradient(135deg, #2563eb, #0f7f8c)
}

.sts-chatbot-actions {
    gap: 7px;
    padding: 13px 16px 4px;
    border-top: 1px solid rgba(11,31,51,.08)
}

.sts-chatbot-actions button,
.sts-chatbot-lead-actions button {
    min-height: 34px;
    border-color: rgba(37,99,235,.18);
    background: #f8fbff;
    color: #0b1f33
}

.sts-chatbot-form {
    grid-template-columns: 1fr 86px;
    align-items: stretch;
    gap: 9px;
    padding: 12px 16px 16px
}

.sts-chatbot-form textarea {
    min-height: 48px;
    max-height: 96px;
    border-radius: 12px;
    background: #fff
}

.sts-chatbot-form button {
    min-height: 48px;
    border-radius: 12px
}

.sts-chatbot-lead {
    padding: 8px 16px 16px
}

.sts-chatbot-lead input,
.sts-chatbot-lead textarea {
    border-radius: 10px;
    background: #fff
}

@media(max-width:780px) {
    .sts-chatbot-panel {
        right: 0;
        width: calc(100vw - 28px)
    }
}

/* v1.7.2 Slayla polish and desktop rail clearance */
.sts-chatbot {
    right: 92px;
    bottom: 24px;
    z-index: 140
}

.sts-chatbot-panel {
    right: 0;
    bottom: 76px;
    width: min(420px, calc(100vw - 132px));
    max-height: min(720px, calc(100vh - 112px));
    overflow: hidden
}

.sts-chatbot-messages {
    max-height: min(360px, calc(100vh - 360px));
    padding: 16px;
    background: linear-gradient(180deg, #f8fcff 0%, #f2faf8 100%)
}

.sts-chatbot-message {
    font-size: 14px;
    line-height: 1.58;
    box-shadow: 0 10px 24px rgba(11,31,51,.06)
}

.sts-chatbot-message.bot {
    color: #173144;
    background: #fff;
    border-color: rgba(15,127,140,.18)
}

.sts-chatbot-message.user {
    color: #fff;
    box-shadow: 0 12px 26px rgba(37,99,235,.18)
}

.sts-chatbot-message p {
    margin: 0 0 10px
}

.sts-chatbot-message p:last-child {
    margin-bottom: 0
}

.sts-chatbot-message strong {
    color: #071d2b;
    font-weight: 900
}

.sts-chatbot-form {
    padding: 14px 16px 16px;
    background: #fff
}

.sts-chatbot-form textarea {
    min-height: 56px;
    font-size: 14px;
    line-height: 1.45
}

.sts-chatbot-form button {
    font-size: 14px
}

.sts-chatbot-intro,
.sts-chatbot-human {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 13px 16px 14px;
    border-top: 1px solid rgba(11,31,51,.08);
    border-bottom: 1px solid rgba(11,31,51,.08);
    background: linear-gradient(180deg, #fff 0%, #f8fcff 100%)
}

.sts-chatbot-intro[hidden],
.sts-chatbot-human[hidden],
.sts-chatbot-human-step[hidden] {
    display: none
}

.sts-chatbot-intro strong,
.sts-chatbot-human strong {
    color: #071d2b;
    font-size: 14px;
    line-height: 1.2
}

.sts-chatbot-intro span,
.sts-chatbot-human span {
    color: #557083;
    font-size: 12.5px;
    line-height: 1.35
}

.sts-chatbot-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.sts-chatbot-intro input,
.sts-chatbot-human input {
    width: 100%;
    min-height: 40px;
    border: 1px solid rgba(15,127,140,.18);
    border-radius: 10px;
    padding: 9px 10px;
    color: #0b1f33;
    background: #fff;
    font: inherit;
    font-size: 13.5px;
    outline: 0
}

.sts-chatbot-intro input:focus,
.sts-chatbot-human input:focus {
    border-color: rgba(37,99,235,.46);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1)
}

.sts-chatbot-intro-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px
}

.sts-chatbot-intro-actions button {
    min-height: 36px;
    border-radius: 999px;
    padding: 8px 13px;
    font-weight: 900;
    font-size: 12.5px;
    cursor: pointer
}

.sts-chatbot-intro-actions button:first-child {
    border: 1px solid rgba(15,127,140,.18);
    color: #315369;
    background: #fff
}

.sts-chatbot-intro-actions button:last-child {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #0f7f8c);
    box-shadow: 0 10px 22px rgba(37,99,235,.16)
}

.sts-chatbot-intro.is-sending {
    opacity: .72
}

.sts-chatbot-human-step {
    display: grid;
    gap: 8px
}

.sts-chatbot-human.is-sending {
    opacity: .72
}

@media(max-width:1180px) {
    .sts-chatbot {
        right: 24px
    }

    .sts-chatbot-panel {
        width: min(420px, calc(100vw - 48px))
    }
}

@media(max-width:780px) {
    .sts-chatbot {
        right: 16px;
        bottom: 16px
    }

    .sts-chatbot-panel {
        right: 0;
        bottom: 72px;
        width: calc(100vw - 32px);
        max-height: calc(100vh - 96px)
    }

    .sts-chatbot-messages {
        max-height: calc(100vh - 360px)
    }

    .sts-chatbot-intro-grid {
        grid-template-columns: 1fr
    }
}
