:root {
    color-scheme: light;
    --bg: #f7f8f8;
    --surface: rgba(232, 235, 237, 0.64);
    --card: rgba(255, 255, 255, 0.68);
    --text: #1f1b18;
    --muted: #5f6874;
    --line: rgba(31, 27, 24, 0.12);
    --primary: #1f1b18;
    --secondary: #566782;
    --accent: #f08a32;
    --red: #df211b;
    --silver: #dfe2e4;
    --glass: rgba(255, 255, 255, 0.58);
    --shadow: 0 24px 70px rgba(31, 27, 24, 0.11);
    --body-background:
        radial-gradient(circle at 12% 8%, rgba(240, 138, 50, 0.14), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(86, 103, 130, 0.18), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #f7f8f8 42%, #e9ecef 100%);
    --header-background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 238, 240, 0.94) 34%, rgba(198, 203, 209, 0.9) 68%, rgba(132, 141, 153, 0.86) 100%);
    --header-overlay:
        linear-gradient(90deg, rgba(255, 255, 255, 0.58), transparent 28%, rgba(31, 27, 24, 0.06) 78%, transparent),
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 42%, rgba(31, 27, 24, 0.06));
    --nav-bg: rgba(255, 255, 255, 0.46);
    --nav-text: rgba(31, 27, 24, 0.78);
    --nav-active-bg: linear-gradient(135deg, #1f1b18, #52617f 68%, #b05216);
    --nav-active-text: #ffffff;
    --menu-panel-bg: rgba(255, 255, 255, 0.92);
    --menu-panel-text: #1f1b18;
    --control-bg: rgba(255, 255, 255, 0.42);
    --control-text: #1f1b18;
    --field-bg: rgba(255, 255, 255, 0.62);
    --light-button-text: #1f1b18;
    --cta-bg: linear-gradient(135deg, #1f1b18, #52617f 58%, #f28a2e);
    --footer-bg: #1f1b18;
    --soft-panel-bg: rgba(255, 255, 255, 0.5);
}

:root.dark {
    color-scheme: dark;
    --bg: #171513;
    --surface: #22201e;
    --card: #2b2926;
    --text: #f2f0ec;
    --muted: #c6c2bc;
    --line: rgba(255, 255, 255, 0.14);
    --primary: #f2f0ec;
    --secondary: #8a94ad;
    --accent: #ff9f45;
    --red: #ef3129;
    --silver: #b9bdc4;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --body-background:
        radial-gradient(circle at 12% 8%, rgba(255, 159, 69, 0.12), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(138, 148, 173, 0.14), transparent 28%),
        linear-gradient(135deg, #171513 0%, #1f1e1d 42%, #272b35 100%);
    --header-background:
        linear-gradient(135deg, rgba(23, 21, 19, 0.98) 0%, rgba(34, 32, 30, 0.96) 34%, rgba(53, 57, 68, 0.94) 68%, rgba(16, 16, 18, 0.98) 100%);
    --header-overlay:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 28%, rgba(255, 159, 69, 0.08) 78%, transparent),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 42%, rgba(0, 0, 0, 0.22));
    --nav-bg: rgba(255, 255, 255, 0.08);
    --nav-text: rgba(242, 240, 236, 0.82);
    --nav-active-bg: linear-gradient(135deg, #0f0f10, #59616f 68%, #d77728);
    --nav-active-text: #ffffff;
    --menu-panel-bg: rgba(34, 32, 30, 0.96);
    --menu-panel-text: #f2f0ec;
    --control-bg: rgba(255, 255, 255, 0.09);
    --control-text: #f2f0ec;
    --field-bg: rgba(255, 255, 255, 0.08);
    --light-button-text: #1f1b18;
    --cta-bg: linear-gradient(135deg, #111112, #424956 58%, #b95f24);
    --footer-bg: #111112;
    --soft-panel-bg: rgba(255, 255, 255, 0.07);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--body-background);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-inline: clamp(24px, 4vw, 72px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-top: 1px solid rgba(255, 255, 255, 0.92);
    border-bottom: 3px solid var(--accent);
    background: var(--header-background);
    backdrop-filter: blur(22px) saturate(1.2);
    box-shadow: 0 12px 34px rgba(31, 27, 24, 0.1);
}

.site-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: var(--header-overlay);
    box-shadow:
        inset 0 -1px 0 rgba(31, 27, 24, 0.22),
        0 2px 8px rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.nav-wrap {
    min-height: 128px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding-top: 0;
}

.menu-subline {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 2px;
    padding-bottom: 8px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-logo {
    width: min(760px, 54vw);
    height: 112px;
    display: block;
    object-fit: contain;
    object-position: left center;
    mix-blend-mode: normal;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    filter: drop-shadow(0 8px 14px rgba(31, 27, 24, 0.22));
}

.brand-tagline {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.9rem, 1vw, 1.12rem);
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
    text-align: right;
    white-space: nowrap;
    text-shadow:
        0 1px 0 rgba(31, 27, 24, 0.9),
        0 0 12px rgba(240, 138, 50, 0.42),
        0 8px 18px rgba(0, 0, 0, 0.36);
}

:root.dark .brand-logo, :root.dark .footer-logo {
    mix-blend-mode: normal;
    filter: brightness(1.05);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--nav-bg);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 30px rgba(31, 27, 24, 0.09);
    backdrop-filter: blur(18px) saturate(1.12);
    font-size: 0.94rem;
    color: var(--nav-text);
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
    transition: color 160ms ease, transform 160ms ease, text-shadow 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.site-nav a::before,
.site-nav a::after {
    content: none;
}

.site-nav a.active, .site-nav a:hover {
    color: var(--nav-active-text);
    background: var(--nav-active-bg);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 18px rgba(31, 27, 24, 0.2);
    text-shadow:
        0 1px 0 rgba(31, 27, 24, 0.48),
        0 7px 14px rgba(0, 0, 0, 0.24);
}

.site-nav a.active::before,
.site-nav a.active::after,
.site-nav a:hover::before,
.site-nav a:hover::after {
    opacity: 0;
}

.nav-group {
    position: relative;
}

.nav-mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 280px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--menu-panel-bg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px) saturate(1.12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-mega a {
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--menu-panel-text);
    text-shadow: none;
}

.nav-mega a:hover {
    color: #fff;
    background: linear-gradient(135deg, #52617f, #b05216);
}

.nav-group:hover .nav-mega, .nav-group:focus-within .nav-mega {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.nav-toggle, .nav-button {
    display: none;
}

.nav-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-button span {
    width: 19px;
    height: 2px;
    background: var(--control-text);
}

.icon-button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--control-text);
    background: var(--control-bg);
}

.theme-toggle::before {
    content: "D";
    font-weight: 800;
}

:root.dark .theme-toggle::before {
    content: "L";
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-small {
    min-height: 38px;
    padding-inline: 14px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary) 56%, var(--accent));
    box-shadow: 0 14px 34px rgba(242, 138, 46, 0.24);
}

.btn-secondary {
    color: var(--primary);
    border-color: color-mix(in srgb, var(--accent) 45%, transparent);
    background: color-mix(in srgb, var(--accent) 16%, var(--card));
}

.btn-ghost {
    color: var(--text);
    border-color: var(--line);
    background: var(--card);
}

.btn-light {
    color: var(--light-button-text);
    background: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    padding: 0;
    background: url("/images/hero-reference-background.png") center / cover no-repeat;
}

.accion-hero {
    padding: 0;
}

.hero::before {
    content: none;
}

.hero::after {
    content: none;
}

:root.dark .hero {
    background: url("/images/hero-reference-background.png") center / cover no-repeat;
}

:root.dark .hero::before {
    opacity: 0.42;
}

.hero-reference-content {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.hero-hotspot {
    position: absolute;
    z-index: 3;
    display: block;
    border: 1px solid transparent;
    border-radius: 24px;
    outline-offset: 4px;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.hero-hotspot span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.hero-hotspot:hover,
.hero-hotspot:focus-visible {
    border-color: rgba(240, 138, 50, 0.78);
    background: rgba(240, 138, 50, 0.08);
    box-shadow: 0 0 0 4px rgba(240, 138, 50, 0.12);
}

.hero-hotspot-ai {
    left: 9.5%;
    top: 11.5%;
    width: 27.3%;
    height: 23.7%;
}

.hero-hotspot-cloud {
    left: 63.1%;
    top: 12.9%;
    width: 27.4%;
    height: 21.4%;
}

.hero-hotspot-enterprise {
    left: 5.7%;
    top: 40.7%;
    width: 26.7%;
    height: 24.4%;
}

.hero-hotspot-digital {
    left: 67%;
    top: 41.6%;
    width: 26.5%;
    height: 23.3%;
}

.hero-hotspot-churchtec {
    left: 34.7%;
    top: 64.8%;
    width: 30.5%;
    height: 23%;
}

.value-prop-band {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 12px 34px rgba(31, 27, 24, 0.08);
}

.value-prop-band p {
    margin: 0;
    color: #09204b;
    font-size: clamp(0.92rem, 1.08vw, 1.12rem);
    font-weight: 650;
    line-height: 1.35;
    text-align: center;
}

.hero-grid, .split, .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(36px, 5vw, 92px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.98rem;
    letter-spacing: 0.08em;
}

h1, h2, h3, p {
    margin-top: 0;
}

h1 {
    max-width: 980px;
    font-size: clamp(1.55rem, 2.3vw, 2.45rem);
    line-height: 1.16;
    letter-spacing: 0;
}

.hero-title {
    border: 0;
    box-shadow: none;
    background: none;
}

.hero-title span {
    display: inline-block;
    color: transparent;
    background: linear-gradient(180deg, #f8f8f8 0%, #d0cdca 38%, #918886 72%, #5f5657 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 1.6px #1f1b18;
    text-shadow:
        2px 2px 0 rgba(31, 27, 24, 0.16),
        0 1px 0 #ffffff,
        0 14px 34px rgba(31, 27, 24, 0.22);
}

.hero-title::after {
    content: "";
    display: block;
    width: min(360px, 56vw);
    height: 2px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(192, 74, 63, 0.42), rgba(255, 255, 255, 0.18), transparent);
}

.tagline {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 20px 0;
}

.tagline span {
    width: 70px;
    height: 2px;
    background: #ff7a1a;
}

.tagline h2 {
    margin: 0;
    color: #17395c;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.3px;
}


h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-copy p {
    max-width: 820px;
    font-size: 1.22rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-visual {
    min-height: 430px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-mark {
    width: min(280px, 62vw);
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 22px 58px rgba(31, 27, 24, 0.18);
    opacity: 0;
}

.headline-rotator {
    display: grid;
    gap: 14px;
}

.headline-rotator article {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, rgba(31, 27, 24, 0.82), rgba(86, 103, 130, 0.72));
    backdrop-filter: blur(16px) saturate(1.15);
    box-shadow: var(--shadow);
    animation: rise 700ms ease both;
}

.headline-rotator article:nth-child(2) {
    animation-delay: 120ms;
}

.headline-rotator article:nth-child(3) {
    animation-delay: 240ms;
}

.headline-rotator span {
    color: var(--accent);
    font-weight: 900;
}

.headline-rotator strong {
    display: block;
    margin: 6px 0;
    font-size: 1.12rem;
}

.headline-rotator small {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.orbital-card {
    position: absolute;
    inset: 42px 24px auto auto;
    width: min(360px, 100%);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(145deg, rgba(31, 27, 24, 0.86), rgba(86, 103, 130, 0.76) 58%, rgba(240, 138, 50, 0.72));
    backdrop-filter: blur(16px) saturate(1.15);
    box-shadow: var(--shadow);
    animation: float 5s ease-in-out infinite;
}

.orbital-card strong {
    display: block;
    margin: 12px 0;
    font-size: 2rem;
}

.orbital-card small {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.signal-grid {
    position: absolute;
    inset: 150px 0 0 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.signal-grid span, .project-art {
    min-height: 95px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--secondary) 20%, var(--card)), color-mix(in srgb, var(--silver) 40%, var(--card)));
}

.impact-band {
    padding: 28px 0;
    color: #fff;
    background: #1f1b18;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.impact-grid div {
    display: grid;
    gap: 4px;
    padding: 18px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.impact-grid strong {
    font-size: 2rem;
    line-height: 1;
}

.impact-grid span {
    color: rgba(255, 255, 255, 0.72);
}

.page-hero {
    padding: 84px 0;
}

.section {
    padding: 0;
}

.page-hero {
    background: linear-gradient(135deg, var(--surface), var(--bg));
}

.compact {
    padding: 7px 0 5px;
}

.page-hero p {
    max-width: 760px;
    font-size: 1.1rem;
}

.alt {
    background: var(--surface);
}

.section-heading {
    max-width: 920px;
    margin-bottom: 34px;
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.logo-strip span, .tech-cloud span, .values-list span, .filter-row button {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
    color: var(--muted);
    font-weight: 700;
    text-align: center;
    backdrop-filter: blur(18px) saturate(1.15);
}

.card-grid {
    display: grid;
    gap: 20px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.pillar-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(31, 27, 24, 0.12), rgba(31, 27, 24, 0.92)),
        linear-gradient(135deg, var(--secondary), var(--silver));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pillar-card:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(31, 27, 24, 0.1), rgba(31, 27, 24, 0.92)),
        linear-gradient(135deg, #7d879d, var(--accent));
}

.pillar-card:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(31, 27, 24, 0.1), rgba(31, 27, 24, 0.92)),
        linear-gradient(135deg, #343941, #8791a7);
}

.pillar-card:nth-child(4) {
    background:
        linear-gradient(180deg, rgba(31, 27, 24, 0.1), rgba(31, 27, 24, 0.92)),
        linear-gradient(135deg, #4a536a, var(--red));
}

.pillar-card.featured {
    grid-column: span 1;
}

.pillar-card span {
    color: var(--accent);
    font-weight: 900;
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.76);
}

.pillar-card .link-arrow {
    color: #fff;
}

.three {
    grid-template-columns: repeat(3, 1fr);
}

.four {
    grid-template-columns: repeat(4, 1fr);
}

.card, .quote-card, .service-card, .skill-card, .form-panel, .contact-card, .feature-product {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(1.12);
}

.card, .quote-card, .service-card, .skill-card, .form-panel, .contact-card {
    padding: 24px;
}

.card:hover, .service-card:hover {
    transform: translateY(-4px);
    transition: transform 180ms ease;
}

.icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    font-weight: 800;
}

.feature-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    padding: 34px;
}

.feature-product.large {
    grid-template-columns: 0.85fr 1.15fr;
}

.product-showcase {
    align-items: stretch;
}

.feature-note {
    max-width: 680px;
    margin: 18px 0 0;
    padding-left: 14px;
    border-left: 3px solid var(--accent);
    font-size: 0.98rem;
}

.churchtec-product-logo,
.churchtec-page-logo {
    display: block;
    width: 96px;
    height: 96px;
    margin-bottom: 18px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 16px 34px rgba(31, 27, 24, 0.16);
}

.churchtec-page-logo {
    width: 112px;
    height: 112px;
}

.accion-feature {
    align-items: stretch;
}

.product-preview {
    min-height: 300px;
    padding: 18px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(31, 27, 24, 0.94), rgba(82, 97, 127, 0.9) 58%, rgba(242, 138, 46, 0.82));
}

.product-preview-image {
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #f5f7fb;
}

.product-preview-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.product-preview.tall {
    min-height: 420px;
}

.preview-bar {
    height: 42px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 16px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.preview-grid span {
    min-height: 94px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
}

.tech-cloud, .values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.industry-section {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
    gap: 42px;
    align-items: center;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.industry-grid article {
    min-height: 156px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(240, 138, 50, 0.12));
    backdrop-filter: blur(18px) saturate(1.1);
}

.industry-grid h3 {
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.industry-grid p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.55;
}

.accelerator-list {
    display: grid;
    gap: 14px;
}

.accelerator-list article {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(1.12);
}

.accelerator-list strong, .accelerator-list span {
    display: block;
}

.accelerator-list span {
    margin-top: 6px;
    color: var(--muted);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insight-grid article {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.insight-grid span {
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.metric {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
}

.metric strong {
    display: block;
    color: var(--accent);
    font-size: 2.5rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.timeline div, .leadership {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
}

.timeline span {
    color: var(--secondary);
    font-weight: 800;
}

.leadership {
    display: flex;
    gap: 22px;
    align-items: center;
}

.avatar {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    font-weight: 900;
}

.service-list, .tech-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card small, .service-card strong {
    display: block;
    margin-bottom: 12px;
}

.service-card small {
    color: var(--accent);
    font-weight: 700;
}

.link-arrow {
    color: var(--accent);
    font-weight: 800;
}

.skill-card > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.skill-card span {
    color: var(--accent);
    font-weight: 800;
}

.skill-bar {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--surface);
}

.skill-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--red));
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.filter-row button {
    cursor: pointer;
}

.contact-form {
    display: grid;
    gap: 14px;
}

input, textarea, select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    background: var(--field-bg);
    backdrop-filter: blur(14px);
}

input::placeholder, textarea::placeholder {
    color: color-mix(in srgb, var(--muted) 75%, transparent);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.map-box {
    min-height: 180px;
    margin: 22px 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft-panel-bg);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.map-box iframe {
    display: block;
    width: 100%;
    min-height: 240px;
    border: 0;
}

.cta-band {
    padding: 64px 0;
    color: #fff;
    background: var(--cta-bg);
}

.cta-band p, .cta-band .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.solution-hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 16%, rgba(240, 138, 50, 0.12), transparent 24%),
        linear-gradient(135deg, var(--surface), var(--bg));
}

.solution-hero-grid,
.solution-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.solution-intro {
    max-width: 820px;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.65;
}

.solution-visual {
    position: relative;
    min-height: 360px;
}

.floating-panel,
.tech-card,
.server-column,
.deploy-flow,
.workflow-board,
.metric-panel,
.record-stack,
.journey-map,
.change-orbit,
.outcome-card {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px) saturate(1.12);
    animation: solution-float 6s ease-in-out infinite;
}

.solution-node {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 10px rgba(240, 138, 50, 0.14);
    animation: solution-pulse 2.4s ease-in-out infinite;
}

.node-one { right: 36%; top: 18%; }
.node-two { right: 10%; top: 46%; animation-delay: 0.45s; }
.node-three { right: 50%; bottom: 18%; animation-delay: 0.9s; }

.solution-path {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(240, 138, 50, 0.7), transparent);
    transform-origin: left center;
}

.path-one { right: 14%; top: 33%; width: 220px; transform: rotate(20deg); }
.path-two { right: 16%; bottom: 32%; width: 190px; transform: rotate(-24deg); }

.insight-panel {
    left: 6%;
    top: 18%;
    width: 250px;
    padding: 22px;
}

.insight-panel span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.insight-panel strong {
    display: block;
    margin-top: 10px;
    font-size: 1.45rem;
}

.pulse-panel {
    right: 4%;
    bottom: 14%;
    width: 150px;
    height: 96px;
    display: flex;
    align-items: end;
    gap: 8px;
    padding: 18px;
    animation-delay: 0.8s;
}

.pulse-panel i {
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--secondary));
    animation: solution-bar 1.8s ease-in-out infinite;
}

.pulse-panel i:nth-child(1) { height: 34%; }
.pulse-panel i:nth-child(2) { height: 82%; animation-delay: 0.15s; }
.pulse-panel i:nth-child(3) { height: 54%; animation-delay: 0.3s; }
.pulse-panel i:nth-child(4) { height: 74%; animation-delay: 0.45s; }

.cloud-shape {
    position: absolute;
    right: 12%;
    top: 12%;
    width: 160px;
    height: 76px;
    border-radius: 999px;
    background: rgba(86, 103, 130, 0.86);
    box-shadow: -34px 20px 0 -8px rgba(86, 103, 130, 0.86), 38px 18px 0 -10px rgba(240, 138, 50, 0.72);
    animation: solution-float 6s ease-in-out infinite;
}

.server-column {
    left: 4%;
    top: 22%;
    width: 180px;
    display: grid;
    gap: 10px;
    padding: 18px;
}

.server-column i,
.record-stack i {
    height: 24px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(240, 138, 50, 0.32), rgba(86, 103, 130, 0.18));
}

.deploy-flow {
    right: 2%;
    bottom: 12%;
    display: flex;
    gap: 10px;
    padding: 16px;
}

.deploy-flow span,
.journey-map span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    font-weight: 800;
}

.cloud-path-one { right: 18%; top: 42%; width: 230px; transform: rotate(16deg); }
.cloud-path-two { right: 16%; bottom: 30%; width: 210px; transform: rotate(-18deg); }

.workflow-board {
    left: 4%;
    top: 14%;
    width: 250px;
    display: grid;
    gap: 12px;
    padding: 20px;
}

.workflow-board span {
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.66);
    font-weight: 900;
}

.metric-panel {
    right: 5%;
    top: 18%;
    width: 150px;
    padding: 22px;
    text-align: center;
    animation-delay: 0.4s;
}

.metric-panel strong {
    display: block;
    color: var(--accent);
    font-size: 2.6rem;
}

.record-stack {
    right: 18%;
    bottom: 10%;
    width: 180px;
    display: grid;
    gap: 10px;
    padding: 18px;
    animation-delay: 0.8s;
}

.journey-map {
    left: 4%;
    top: 18%;
    display: grid;
    gap: 12px;
    padding: 18px;
}

.change-orbit {
    right: 5%;
    top: 16%;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    animation-delay: 0.4s;
}

.change-orbit i {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 10px rgba(240, 138, 50, 0.13);
}

.change-orbit i:nth-child(1) { left: 50%; top: 12px; }
.change-orbit i:nth-child(2) { right: 18px; bottom: 44px; }
.change-orbit i:nth-child(3) { left: 24px; bottom: 30px; }

.outcome-card {
    right: 14%;
    bottom: 10%;
    width: 210px;
    padding: 22px;
    animation-delay: 0.8s;
}

.outcome-card strong,
.outcome-card small {
    display: block;
}

.outcome-card small {
    margin-top: 8px;
    color: var(--muted);
}

.solution-grid {
    position: relative;
    isolation: isolate;
    display: grid;
    gap: 20px;
    padding: clamp(18px, 2.4vw, 30px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22)),
        linear-gradient(115deg, rgba(240, 138, 50, 0.14), transparent 38%),
        linear-gradient(290deg, rgba(86, 103, 130, 0.18), transparent 44%),
        rgba(255, 255, 255, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.68),
        0 24px 70px rgba(31, 27, 24, 0.12);
    backdrop-filter: blur(22px) saturate(1.16);
}

.solution-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(31, 27, 24, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 27, 24, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.55;
    pointer-events: none;
}

.solution-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.solution-card {
    position: relative;
    z-index: 1;
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34)),
        var(--card);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.66),
        0 18px 42px rgba(31, 27, 24, 0.1);
    backdrop-filter: blur(18px) saturate(1.12);
}

.solution-card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
    font-weight: 900;
}

:root.dark .solution-grid {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
        linear-gradient(115deg, rgba(255, 159, 69, 0.12), transparent 38%),
        linear-gradient(290deg, rgba(138, 148, 173, 0.16), transparent 44%),
        rgba(255, 255, 255, 0.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 24px 70px rgba(0, 0, 0, 0.28);
}

:root.dark .solution-grid::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

:root.dark .solution-card {
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
        var(--card);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 18px 42px rgba(0, 0, 0, 0.24);
}

.solution-card p,
.solution-split p,
.process-strip p,
.interactive-stack p {
    color: var(--muted);
    line-height: 1.65;
}

.interactive-stack {
    display: grid;
    gap: 12px;
}

.interactive-stack details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.interactive-stack summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--text);
    font-weight: 900;
}

.interactive-stack p {
    margin: 0;
    padding: 0 20px 18px;
}

.process-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-strip article {
    min-height: 180px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(240, 138, 50, 0.1)),
        var(--card);
    box-shadow: var(--shadow);
}

.process-strip span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@keyframes solution-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes solution-pulse {
    0%, 100% { opacity: 0.72; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.28); }
}

@keyframes solution-bar {
    0%, 100% { transform: scaleY(0.72); }
    50% { transform: scaleY(1.1); }
}

.site-footer {
    padding: 56px 0 28px;
    color: rgba(255, 255, 255, 0.8);
    background: var(--footer-bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 1.2fr;
    gap: 34px;
}

.site-footer h2 {
    color: #fff;
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
}

.footer-brand {
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo {
    width: 220px;
    height: 68px;
    display: block;
    object-fit: contain;
    object-position: left center;
    mix-blend-mode: screen;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #16a34a;
    box-shadow: 0 18px 34px rgba(22, 163, 74, 0.32);
    font-weight: 900;
}

.reveal {
    animation: rise 700ms ease both;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@media (max-width: 980px) {
    .nav-button {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: 160px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px 24px 20px;
        border-bottom: 1px solid var(--line);
        background: var(--header-background);
        border-radius: 0;
    }

    .site-nav a {
        justify-content: flex-start;
        padding: 12px 14px;
        color: var(--nav-text);
    }

    .nav-group {
        display: grid;
    }

    .nav-mega {
        position: static;
        display: grid;
        min-width: 0;
        padding: 0 0 8px 14px;
        border: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-mega a {
        padding: 8px 0;
        color: var(--nav-text);
    }

    .nav-toggle:checked ~ .site-nav {
        display: flex;
    }

    .nav-actions .btn {
        display: none;
    }

    .brand-tagline {
        display: none;
    }

    .menu-subline {
        display: none;
    }

    .hero-grid, .split, .contact-grid, .feature-product, .feature-product.large, .solution-hero-grid, .solution-split {
        grid-template-columns: 1fr;
    }

    .logo-strip, .four, .three, .timeline, .service-list, .tech-list, .footer-grid, .impact-grid, .pillar-grid, .insight-grid, .solution-grid.four {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-visual {
        min-height: 330px;
    }

    .industry-section {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 640px) {
    .container {
        padding-inline: 16px;
    }

    .hero::after {
        right: -240px;
        top: -220px;
        opacity: 0.55;
    }

    .nav-wrap {
        min-height: 96px;
        gap: 10px;
        padding-top: 14px;
        padding-bottom: 10px;
    }

    .brand-logo {
        width: min(380px, 76vw);
        height: 92px;
    }

    .site-nav {
        top: 128px;
    }

    .page-hero {
        padding: 56px 0;
    }

    .section {
        padding: 0;
    }

    .hero-visual {
        min-height: 330px;
    }

    .orbital-card {
        inset: 18px 0 auto 0;
        width: 100%;
    }

    .signal-grid {
        inset: 150px 0 0 0;
    }

    .logo-strip, .four, .three, .timeline, .service-list, .tech-list, .footer-grid, .impact-grid, .pillar-grid, .industry-grid, .insight-grid, .solution-grid.four, .process-strip {
        grid-template-columns: 1fr;
    }

    .solution-visual {
        min-height: 300px;
    }

    .insight-panel,
    .workflow-board,
    .journey-map,
    .server-column {
        left: 0;
    }

    .pulse-panel,
    .metric-panel,
    .outcome-card,
    .deploy-flow {
        right: 0;
    }

    .pillar-card.featured {
        grid-column: span 1;
    }

    .cta-content, .footer-bottom, .leadership {
        align-items: flex-start;
        flex-direction: column;
    }
}
