/*
Theme Name: Initvalue
Description: Full theme.css tuned for the current block-based homepage and service pages.
Version: 1.0
*/

/* =========================
   1. Design tokens
   ========================= */
:root {
    --iv-bg: #ffffff;
    --iv-surface: #ffffff;
    --iv-surface-alt: #e6f3fb;
    --iv-text: #1a1a1a;
    --iv-text-soft: #5a6a7a;
    --iv-border: #e8eef4;
    --iv-blue: #1a7abf;
    --iv-blue-dark: #0c447c;
    --iv-blue-deep: #0c447c;
    --iv-blue-soft: #e6f3fb;
    --iv-accent: #1a7abf;
    --iv-shadow: 0 10px 30px rgba(12, 68, 124, 0.10);
    --iv-shadow-sm: 0 6px 18px rgba(12, 68, 124, 0.08);
    --iv-radius: 12px;
    --iv-radius-sm: 8px;
    --iv-max: 1100px;
    --iv-max-narrow: 900px;
    --iv-font: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =========================
   2. Reset / base
   ========================= */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--iv-bg);
    color: var(--iv-text);
    font-family: var(--iv-font);
    line-height: 1.65;
    font-size: 16px;
}

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

a {
    color: var(--iv-blue);
    text-decoration: none;
}

a:hover {
    color: var(--iv-blue-dark);
}

p {
    margin: 0 0 1.1rem;
}

ul,
ol {
    margin: 0 0 1.2rem 1.2rem;
    padding: 0;
}

li {
    margin: 0 0 .45rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem;
    line-height: 1.12;
    color: var(--iv-text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.3rem, 5vw, 4.4rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.has-text-align-center {
    text-align: center;
}

/* =========================
   3. Theme containers
   ========================= */
.wp-site-blocks,
.iv-main--page-content {
    max-width: none;
}

.wp-block-group,
.wp-block-columns,
.wp-block-cover,
.wp-block-media-text {
    box-sizing: border-box;
}

.wp-block-group.alignfull,
.alignfull {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.wp-block-group:not(.alignfull):not(.is-style-wide),
.wp-block-columns:not(.alignwide):not(.alignfull),
.wp-block-buttons,
.wp-block-heading,
.wp-block-list,
.wp-block-paragraph,
.wp-block-image,
.wp-block-table,
.wp-block-quote {
    max-width: var(--iv-max);
    margin-left: auto;
    margin-right: auto;
}

.wp-block-group>.wp-block-group__inner-container {
    max-width: var(--iv-max);
    margin-left: auto;
    margin-right: auto;
}

.wp-block-group.alignfull>.wp-block-group__inner-container {
    max-width: var(--iv-max);
    margin-left: auto;
    margin-right: auto;
}

.wp-block-columns {
    gap: 28px;
    align-items: stretch;
}

.wp-block-column {
    min-width: 0;
}

@media (max-width: 900px) {
    .wp-block-columns {
        gap: 22px;
    }
}

@media (max-width: 781px) {
    .wp-block-columns {
        display: block;
    }

    .wp-block-column {
        margin-bottom: 22px;
    }

    .wp-block-column:last-child {
        margin-bottom: 0;
    }
}

/* =========================
   4. Header / footer
   ========================= */
.iv-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(37, 99, 235, .08);
}

.iv-header__inner,
.iv-footer__inner {
    max-width: var(--iv-max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.iv-header__logo,
.iv-footer__logo {
    display: flex;
    align-items: center;
}

.iv-logo-img,
.iv-footer__logo-img {
    display: block;
    max-height: 46px;
    width: auto;
}

.iv-nav__list,
.iv-footer__nav-list {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.iv-nav__list a,
.iv-footer__nav-list a {
    color: var(--iv-text);
    font-weight: 600;
}

.iv-nav__list a:hover,
.iv-footer__nav-list a:hover {
    color: var(--iv-blue);
}

.iv-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.iv-burger {
    display: none;
}

.iv-footer {
    background: #fff;
    border-top: 1px solid var(--iv-border);
}

.iv-footer__copy {
    margin: 0;
    color: var(--iv-text-soft);
    font-size: .95rem;
}

@media (max-width: 900px) {

    .iv-header__inner,
    .iv-footer__inner {
        padding: 14px 18px;
    }

    .iv-nav {
        display: none;
    }

    .iv-burger {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 40px;
        height: 40px;
        border: 1px solid var(--iv-border);
        border-radius: 10px;
        background: #fff;
    }

    .iv-burger span {
        width: 18px;
        height: 2px;
        background: var(--iv-text);
        margin: 0 auto;
        display: block;
    }

    .iv-footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .iv-footer__nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =========================
   5. Buttons
   ========================= */
.wp-block-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
}

.wp-block-button {
    margin: 0;
}

.wp-block-button__link,
.iv-btn,
a.iv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .98rem;
    line-height: 1.2;
    text-decoration: none;
    transition: all .2s ease;
    background: var(--iv-blue);
    color: #fff;
    border: 1px solid var(--iv-blue);
    box-shadow: none;
}

.wp-block-button__link:hover,
.iv-btn:hover,
a.iv-btn:hover {
    background: var(--iv-blue-dark);
    border-color: var(--iv-blue-dark);
    color: #fff;
    transform: translateY(-1px);
}

.wp-block-button.is-style-outline .wp-block-button__link,
.iv-btn--outline,
a.iv-btn--outline {
    background: transparent;
    color: var(--iv-blue);
    border: 1px solid var(--iv-blue);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.iv-btn--outline:hover,
a.iv-btn--outline:hover {
    background: var(--iv-blue-soft);
    color: var(--iv-blue-dark);
    border-color: var(--iv-blue-dark);
}

.iv-btn--white,
a.iv-btn--white {
    background: #fff;
    color: var(--iv-blue-deep);
    border-color: #fff;
}

.iv-btn--white:hover,
a.iv-btn--white:hover {
    background: #edf3ff;
    border-color: #edf3ff;
    color: var(--iv-blue-deep);
}

.iv-btn--sm {
    min-height: 40px;
    padding: 10px 16px;
    font-size: .9rem;
}

.iv-btn--lg {
    min-height: 50px;
    padding: 14px 22px;
}

/* =========================
   6. Homepage block sections
   ========================= */

/* Hero */
.wp-block-group.alignfull:first-of-type {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, .10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.wp-block-group.alignfull:first-of-type>.wp-block-group__inner-container,
.wp-block-group.alignfull:first-of-type {
    position: relative;
}

.wp-block-group.alignfull:first-of-type .wp-block-columns {
    max-width: var(--iv-max);
    margin: 0 auto;
    align-items: center;
}

.wp-block-group.alignfull:first-of-type p.has-small-font-size:first-child {
    color: var(--iv-blue-dark);
    background: rgba(37, 99, 235, .10);
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 18px;
}

.wp-block-group.alignfull:first-of-type h1 {
    max-width: 12ch;
    margin-bottom: 18px;
}

.wp-block-group.alignfull:first-of-type .has-medium-font-size {
    max-width: 650px;
    color: var(--iv-text-soft);
    font-size: 1.15rem !important;
}

.wp-block-group.alignfull:first-of-type .wp-block-group.has-white-background-color {
    border: 1px solid rgba(37, 99, 235, .10);
}

.wp-block-group.alignfull:first-of-type .wp-block-columns .wp-block-group.has-white-background-color h2 {
    font-size: 1.55rem;
}

.wp-block-group.alignfull:first-of-type .wp-block-columns .wp-block-columns {
    gap: 18px;
}

.wp-block-group.alignfull:first-of-type .wp-block-columns .wp-block-columns .wp-block-column {
    background: var(--iv-blue-soft);
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 14px;
    padding: 14px;
}

.wp-block-group.alignfull:first-of-type .wp-block-columns .wp-block-columns .wp-block-column h3 {
    color: var(--iv-blue-deep);
    margin-bottom: 6px;
}

.wp-block-group.alignfull:first-of-type .wp-block-columns .wp-block-columns .wp-block-column p {
    margin: 0;
    color: var(--iv-text-soft);
}

/* Services */
#services,
.wp-block-group.has-cyan-bluish-gray-background-color {
    background: linear-gradient(180deg, #edf5ff 0%, #e7f0ff 100%) !important;
    border-top: 1px solid rgba(37, 99, 235, .08);
    border-bottom: 1px solid rgba(37, 99, 235, .08);
}

#services>.wp-block-group__inner-container,
.wp-block-group.has-cyan-bluish-gray-background-color>.wp-block-group__inner-container {
    max-width: var(--iv-max);
}

#services p.has-small-font-size:first-child,
.wp-block-group.has-cyan-bluish-gray-background-color p.has-small-font-size:first-child {
    color: var(--iv-blue-dark);
    font-weight: 700;
}

#services .wp-block-columns>.wp-block-column>.wp-block-group,
.wp-block-group.has-cyan-bluish-gray-background-color .wp-block-columns>.wp-block-column>.wp-block-group {
    height: 100%;
    background: #fff !important;
    border: 1px solid rgba(37, 99, 235, .10);
    box-shadow: var(--iv-shadow-sm);
}

#services .wp-block-group p[style*="font-weight:700"]:first-child,
.wp-block-group.has-cyan-bluish-gray-background-color .wp-block-group p[style*="font-weight:700"]:first-child {
    color: var(--iv-blue);
    font-size: 1rem;
    margin-bottom: 4px;
}

#services .wp-block-group h3,
.wp-block-group.has-cyan-bluish-gray-background-color .wp-block-group h3 {
    color: var(--iv-blue-deep);
}

#services .wp-block-group ul,
.wp-block-group.has-cyan-bluish-gray-background-color .wp-block-group ul {
    color: var(--iv-text-soft);
}

#services .wp-block-buttons,
.wp-block-group.has-cyan-bluish-gray-background-color .wp-block-buttons {
    margin-top: 22px;
}

/* About */
#about .wp-block-columns {
    align-items: start;
}

#about .wp-block-column:last-child {
    background: #fff;
    border: 1px solid rgba(37, 99, 235, .10);
    border-radius: var(--iv-radius);
    padding: 22px 24px;
    box-shadow: var(--iv-shadow-sm);
}

#about ul {
    margin-left: 1.1rem;
}

#about li {
    color: var(--iv-text-soft);
}

/* Contact band */
#contact,
.wp-block-group.has-black-background-color {
    background: linear-gradient(135deg, var(--iv-blue-deep) 0%, var(--iv-blue-dark) 100%) !important;
}

#contact h2,
#contact p,
.wp-block-group.has-black-background-color h2,
.wp-block-group.has-black-background-color p {
    color: #fff !important;
}

#contact .wp-block-buttons {
    justify-content: center;
}

/* =========================
   7. General pages / content
   ========================= */
.iv-main,
.entry-content,
.wp-block-post-content {
    padding-bottom: 48px;
}

.entry-content>*:first-child,
.wp-block-post-content>*:first-child {
    margin-top: 0;
}

.entry-content h1,
.wp-block-post-content h1 {
    max-width: var(--iv-max);
    margin-left: auto;
    margin-right: auto;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content .wp-block-buttons,
.wp-block-post-content p,
.wp-block-post-content ul,
.wp-block-post-content ol,
.wp-block-post-content .wp-block-buttons {
    max-width: var(--iv-max-narrow);
}

/* Service page helpers */
.entry-content h2,
.wp-block-post-content h2 {
    margin-top: 2.4rem;
}

.entry-content h3,
.wp-block-post-content h3 {
    margin-top: 1.8rem;
}

.entry-content .wp-block-buttons:last-child,
.wp-block-post-content .wp-block-buttons:last-child {
    margin-top: 1.6rem;
}

/* =========================
   8. Legacy iv-* compatibility
   ========================= */
.iv-main {
    width: 100%;
}

.iv-container {
    max-width: var(--iv-max);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.iv-section {
    padding: 72px 24px;
}

.iv-section--gray {
    background: linear-gradient(180deg, #edf5ff 0%, #e7f0ff 100%);
}

.iv-label {
    color: var(--iv-blue-dark);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: 12px;
}

.iv-section__title {
    margin-bottom: 14px;
}

.iv-section__sub {
    max-width: var(--iv-max-narrow);
    color: var(--iv-text-soft);
    margin-bottom: 28px;
}

.iv-hero {
    padding: 84px 24px 72px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, .10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.iv-hero__inner {
    max-width: var(--iv-max);
    margin: 0 auto;
}

.iv-hero__content {
    max-width: 700px;
}

.iv-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .10);
    color: var(--iv-blue-dark);
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 18px;
}

.iv-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--iv-blue);
}

.iv-hero__title {
    max-width: 12ch;
}

.iv-accent {
    color: var(--iv-accent);
}

.iv-hero__sub {
    max-width: 660px;
    color: var(--iv-text-soft);
    font-size: 1.08rem;
}

.iv-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 1.2rem;
}

.iv-card {
    background: #fff;
    border: 1px solid rgba(37, 99, 235, .10);
    border-radius: 22px;
    box-shadow: var(--iv-shadow);
}

.iv-card--glass {
    padding: 28px;
}

.iv-card__label {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .85rem;
    font-weight: 700;
    color: var(--iv-blue-dark);
}

.iv-card__title {
    font-size: 1.55rem;
}

.iv-stat-grid {
    display: flex;
    gap: 18px;
    margin: 16px 0;
}

.iv-stat {
    flex: 1;
    background: var(--iv-blue-soft);
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 14px;
    padding: 14px;
}

.iv-stat__val {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    color: var(--iv-blue-deep);
    margin-bottom: 6px;
}

.iv-stat__lbl {
    margin: 0;
    color: var(--iv-text-soft);
}

.iv-tag-row {
    color: var(--iv-text-soft);
}

.iv-tag {
    display: inline-block;
    padding: 7px 11px;
    margin: 0 8px 8px 0;
    background: #f2f6fd;
    border: 1px solid var(--iv-border);
    border-radius: 999px;
    font-size: .85rem;
}

.iv-tag--active {
    background: var(--iv-blue-soft);
    border-color: rgba(37, 99, 235, .18);
    color: var(--iv-blue-dark);
}

.iv-services {
    display: flex;
    gap: 28px;
}

.iv-svc {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(37, 99, 235, .10);
    border-radius: 18px;
    box-shadow: var(--iv-shadow-sm);
    padding: 24px;
}

.iv-svc__num {
    color: var(--iv-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

.iv-svc__title {
    color: var(--iv-blue-deep);
}

.iv-svc__desc,
.iv-svc__list {
    color: var(--iv-text-soft);
}

.iv-svc__link {
    font-weight: 700;
    color: var(--iv-blue);
    text-decoration: underline;
}

.iv-about {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.iv-about__content {
    max-width: 700px;
}

.iv-about__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--iv-blue) 0%, var(--iv-blue-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.iv-about__role,
.iv-about__text {
    color: var(--iv-text-soft);
}

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

.iv-cred {
    background: #fff;
    border: 1px solid rgba(37, 99, 235, .10);
    border-radius: 16px;
    box-shadow: var(--iv-shadow-sm);
    padding: 18px;
}

.iv-cred__val {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--iv-blue-deep);
    margin-bottom: 4px;
}

.iv-cred__lbl {
    color: var(--iv-text-soft);
    font-size: .95rem;
}

.iv-cta {
    padding: 72px 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--iv-blue-deep) 0%, var(--iv-blue-dark) 100%);
}

.iv-cta__title,
.iv-cta__sub {
    color: #fff;
}

.iv-cta__sub {
    max-width: 840px;
    margin: 0 auto 20px;
}

/* =========================
   9. Utilities / motion
   ========================= */
.fade-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion:no-preference) {

    .wp-block-button__link,
    .iv-btn,
    a.iv-btn,
    .iv-svc,
    .iv-cred,
    .wp-block-group.has-white-background-color {
        transition: all .2s ease;
    }

    .iv-svc:hover,
    .iv-cred:hover,
    .wp-block-group.has-white-background-color:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(21, 56, 122, .12);
    }
}

/* =========================
   10. Responsive tweaks
   ========================= */
@media (max-width: 1100px) {

    .iv-container,
    .iv-header__inner,
    .iv-footer__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 900px) {

    .iv-hero,
    .iv-section,
    .iv-cta {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .iv-services,
    .iv-about {
        display: block;
    }

    .iv-svc,
    .iv-about__content,
    .iv-creds {
        margin-bottom: 20px;
    }

    .iv-creds {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .wp-block-group.alignfull,
    .iv-hero,
    .iv-section,
    .iv-cta {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .iv-card--glass,
    .iv-svc,
    .iv-cred {
        padding: 20px;
    }

    .wp-block-button__link,
    .iv-btn,
    a.iv-btn {
        width: 100%;
    }

    .wp-block-buttons,
    .iv-hero__btns {
        width: 100%;
    }
}


/* =========================
   11. Restored original colors + font sizes
   from theme org.css
   ========================= */

/* General */
body {
    background: var(--iv-bg);
    color: var(--iv-text);
    font-size: 16px;
}

a {
    color: var(--iv-blue);
}

a:hover {
    color: var(--iv-blue-dark);
}

/* Header / footer accents */
.iv-header {
    border-bottom: 1px solid var(--iv-border);
}

.iv-header__inner {
    height: 70px;
}

.iv-nav__list a,
.iv-footer__nav-list a {
    font-size: 13px;
    color: var(--iv-text-soft);
}

.iv-nav__list a:hover,
.iv-footer__nav-list a:hover {
    color: var(--iv-blue);
}

.iv-footer {
    background: var(--iv-text);
    border-top: none;
}

.iv-footer__nav-list a,
.iv-footer__nav a {
    color: rgba(255,255,255,.55);
}

.iv-footer__nav-list a:hover,
.iv-footer__nav a:hover {
    color: #50b4e8;
}

.iv-footer__copy {
    color: rgba(255,255,255,.35);
    font-size: 12px;
}

/* Buttons restored closer to original */
.wp-block-button__link,
.iv-btn,
a.iv-btn {
    min-height: auto;
    padding: 12px 24px;
    border-radius: var(--iv-radius-sm);
    font-size: 14px;
    border-width: 2px;
}

.iv-btn--sm,
a.iv-btn--sm {
    font-size: 13px;
    padding: 9px 20px;
}

.iv-btn--lg,
a.iv-btn--lg {
    font-size: 14px;
    padding: 14px 30px;
}

.wp-block-button__link:hover,
.iv-btn:hover,
a.iv-btn:hover {
    transform: translateY(-1px);
}

/* Hero restored closer to original */
.wp-block-group.alignfull:first-of-type {
    background: #ffffff;
}

.wp-block-group.alignfull:first-of-type p.has-small-font-size:first-child {
    font-size: 11px !important;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: var(--iv-blue-soft);
    color: var(--iv-blue-dark);
    padding: 6px 14px;
    border-radius: 20px;
}

.wp-block-group.alignfull:first-of-type h1 {
    font-size: 48px !important;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -2px;
    color: var(--iv-text);
    max-width: 12ch;
}

.wp-block-group.alignfull:first-of-type .has-medium-font-size,
.wp-block-group.alignfull:first-of-type p:not(.has-small-font-size) {
    font-size: 15px !important;
    line-height: 1.75;
    color: var(--iv-text-soft);
}

.wp-block-group.alignfull:first-of-type .wp-block-group.has-white-background-color {
    background: var(--iv-blue-soft) !important;
    border: 1px solid var(--iv-border);
    border-radius: 20px;
}

.wp-block-group.alignfull:first-of-type .wp-block-columns .wp-block-group.has-white-background-color h2 {
    font-size: 18px !important;
    font-weight: 800;
    color: var(--iv-text);
}

.wp-block-group.alignfull:first-of-type .wp-block-columns .wp-block-columns .wp-block-column {
    background: #ffffff;
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-sm);
    padding: 14px;
}

.wp-block-group.alignfull:first-of-type .wp-block-columns .wp-block-columns .wp-block-column h3 {
    font-size: 22px !important;
    font-weight: 900;
    color: var(--iv-blue);
}

.wp-block-group.alignfull:first-of-type .wp-block-columns .wp-block-columns .wp-block-column p {
    font-size: 11px !important;
    font-weight: 600;
    color: var(--iv-text-soft);
}

/* Services section */
#services,
.wp-block-group.has-cyan-bluish-gray-background-color {
    background: #f4f8fb !important;
    border-top: none;
    border-bottom: none;
}

#services p.has-small-font-size:first-child,
.wp-block-group.has-cyan-bluish-gray-background-color p.has-small-font-size:first-child {
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--iv-blue);
}

#services h2,
.wp-block-group.has-cyan-bluish-gray-background-color h2 {
    font-size: 34px !important;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.12;
    color: var(--iv-text);
}

#services > .wp-block-group__inner-container > p,
.wp-block-group.has-cyan-bluish-gray-background-color > .wp-block-group__inner-container > p {
    font-size: 16px !important;
    line-height: 1.75;
    color: var(--iv-text-soft);
    max-width: 580px;
}

#services .wp-block-columns > .wp-block-column > .wp-block-group,
.wp-block-group.has-cyan-bluish-gray-background-color .wp-block-columns > .wp-block-column > .wp-block-group {
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    box-shadow: none;
}

#services .wp-block-group p[style*="font-weight:700"]:first-child,
.wp-block-group.has-cyan-bluish-gray-background-color .wp-block-group p[style*="font-weight:700"]:first-child {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--iv-blue);
}

#services .wp-block-group h3,
.wp-block-group.has-cyan-bluish-gray-background-color .wp-block-group h3 {
    font-size: 17px !important;
    font-weight: 800;
    color: var(--iv-text);
}

#services .wp-block-group p,
#services .wp-block-group li,
.wp-block-group.has-cyan-bluish-gray-background-color .wp-block-group p,
.wp-block-group.has-cyan-bluish-gray-background-color .wp-block-group li {
    font-size: 14px !important;
    line-height: 1.7;
    color: var(--iv-text-soft);
}

/* About section */
#about h2 {
    font-size: 28px !important;
    font-weight: 900;
    letter-spacing: -.5px;
    color: var(--iv-text);
}

#about p,
#about li {
    font-size: 15px !important;
    line-height: 1.8;
    color: var(--iv-text-soft);
}

#about .wp-block-column:last-child {
    background: var(--iv-bg);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-sm);
    box-shadow: none;
}

/* CTA */
#contact,
.wp-block-group.has-black-background-color {
    background: var(--iv-blue) !important;
}

#contact h2,
.wp-block-group.has-black-background-color h2 {
    font-size: 34px !important;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #fff !important;
}

#contact p,
.wp-block-group.has-black-background-color p {
    font-size: 16px !important;
    line-height: 1.8;
    color: rgba(255,255,255,.82) !important;
}

/* Legacy iv-* elements also restored */
.iv-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--iv-blue);
    letter-spacing: .12em;
}

.iv-section__title {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--iv-text);
}

.iv-section__sub {
    font-size: 16px;
    line-height: 1.75;
    color: var(--iv-text-soft);
}

.iv-hero__title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -2px;
    color: var(--iv-text);
}

.iv-hero__sub {
    font-size: 15px;
    line-height: 1.75;
    color: var(--iv-text-soft);
}

.iv-card--glass {
    background: var(--iv-blue-soft);
    border: 1px solid var(--iv-border);
}

.iv-card__label {
    font-size: 11px;
    font-weight: 700;
    color: var(--iv-blue);
    letter-spacing: .1em;
}

.iv-card__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--iv-text);
}

.iv-stat {
    background: #fff;
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-sm);
}

.iv-stat__val {
    font-size: 22px;
    font-weight: 900;
    color: var(--iv-blue);
}

.iv-stat__lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--iv-text-soft);
}

.iv-tag {
    background: #fff;
    border: 1px solid var(--iv-border);
    color: var(--iv-text-soft);
    font-size: 12px;
    border-radius: 20px;
}

.iv-tag--active {
    background: var(--iv-blue);
    color: #fff;
    border-color: var(--iv-blue);
}

.iv-svc__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--iv-text);
}

.iv-svc__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--iv-text-soft);
}

.iv-svc__list li {
    font-size: 13px;
    line-height: 1.45;
    color: var(--iv-text-soft);
}

.iv-about__name {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.5px;
}

.iv-about__role {
    font-size: 14px;
    font-weight: 700;
    color: var(--iv-blue);
}

.iv-about__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--iv-text-soft);
}

.iv-cred {
    background: #f4f8fb;
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-sm);
    box-shadow: none;
}

.iv-cred__val {
    font-size: 24px;
    font-weight: 900;
    color: var(--iv-blue);
}

.iv-cred__lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--iv-text-soft);
}

.iv-cta {
    background: var(--iv-blue);
}

.iv-cta__title {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
}

.iv-cta__sub {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,.82);
}

/* Responsive font sizes from original */
@media (max-width: 1000px) {
    .wp-block-group.alignfull:first-of-type h1,
    .iv-hero__title {
        font-size: 34px !important;
        letter-spacing: -1px;
    }

    #services h2,
    #contact h2,
    .iv-section__title,
    .iv-cta__title {
        font-size: 28px !important;
    }
}

@media (max-width: 720px) {
    .wp-block-group.alignfull:first-of-type h1,
    .iv-hero__title {
        font-size: 28px !important;
        letter-spacing: -1px;
    }
}
