

:root, [data-theme="light"], [data-theme="dark"] {
    --accent: #249b9a;
    --accent-dim: #1e8279;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.1);
}
[data-theme="dark"] {
    --shadow: 0 4px 24px rgba(0,0,0,0.2);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.3);
}

[data-theme="light"] {
    --bg: #ffffff;
    --bg-card: #f5f7f9;
    --bg-alt: #f0f2f5;
    --text: #0a0e14;
    --text-muted: #6b6f76;
    --border: #e2e6eb;
}

[data-theme="dark"] {
    --bg: #0a0e14;
    --bg-card: #111820;
    --bg-alt: #151b24;
    --text: #e6edf3;
    --text-muted: #8b949e;
    --border: #21262d;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    position: relative;
}
[data-theme="light"] body { background-color: #f5f7f9; }
[data-theme="dark"] body { background-color: #0a0e14; }

main { min-height: 60vh; position: relative; z-index: 1; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav-cta, .nav-cta:hover, .theme-toggle:hover, .footer-social a:hover,
.btn:not(.btn-outline), .btn:hover, .btn-outline:hover,
.bg-accent, .bg-accent a, .channel-card .icon { color: #ffffff !important; }
.footer-social a:hover { text-decoration: none; }

.bg-motion {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.45;
    will-change: transform;
}
[data-theme="dark"] .bg-blob { opacity: 0.25; filter: blur(90px); }

.bg-blob-1 {
    width:  min(80vw, 520px);
    height: min(80vw, 520px);
    background: rgba(36, 155, 154, 0.35);
    top: -15%;
    left: -10%;
    animation: float1 22s ease-in-out infinite;
}
.bg-blob-2 {
    width:  min(70vw, 420px);
    height: min(70vw, 420px);
    background: rgba(36, 155, 154, 0.3);
    top: 40%;
    right: -15%;
    animation: float2 18s ease-in-out infinite;
}
.bg-blob-3 {
    width:  min(60vw, 380px);
    height: min(60vw, 380px);
    background: rgba(30, 130, 121, 0.35);
    bottom: -10%;
    left: 20%;
    animation: float3 25s ease-in-out infinite;
}
.bg-blob-4 {
    width:  min(50vw, 320px);
    height: min(50vw, 320px);
    background: rgba(36, 155, 154, 0.25);
    top: 60%;
    left: -5%;
    animation: float4 20s ease-in-out infinite;
}
.bg-blob-5 {
    width:  min(45vw, 280px);
    height: min(45vw, 280px);
    background: rgba(30, 130, 121, 0.3);
    top: 10%;
    right: 25%;
    animation: float5 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, 30px) scale(1.08); }
    50% { transform: translate(-20px, 50px) scale(0.95); }
    75% { transform: translate(30px, -20px) scale(1.05); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 40px) scale(0.9); }
}
@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.06); }
    50% { transform: translate(20px, 20px) scale(0.92); }
    75% { transform: translate(-40px, -20px) scale(1.04); }
}
@keyframes float4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(35px, -50px) scale(1.12); }
}
@keyframes float5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 25px) scale(0.94); }
    66% { transform: translate(25px, -35px) scale(1.07); }
}

.deco-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    color: var(--text-muted);
    opacity: 0.4;
}
.deco-bg-svg {
    width: 100%;
    height: 100%;
    display: block;
}
[data-theme="dark"] .deco-bg { opacity: 0.2; }

.deco-side {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    width: min(180px, 12vw);
    max-width: 200px;
    z-index: -1;
    pointer-events: none;
    color: var(--text-muted);
}
@media (min-width: 1200px) {
    .deco-side { display: block; }
}
.deco-left { left: 0; }
.deco-right { right: 0; }
.deco-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.4;
}
[data-theme="dark"] .deco-svg { opacity: 0.2; }

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}
[data-theme="dark"] .nav { background: rgba(10, 14, 20, 0.92); }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--text);
}
.nav-logo img { height: 28px; width: auto; border-radius: 6px; }
.nav-logo:hover { text-decoration: none; color: var(--accent); }

.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    font-size: 1rem;
}
.theme-toggle:hover { background: var(--accent); color: #ffffff; border-color: var(--accent); }

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    align-items: center;
    justify-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.partner-logo:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.partner-logo img {
    max-height: 32px;
    max-width: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.4);
    opacity: 0.9;
}
.partner-logo:hover img { filter: grayscale(0); opacity: 1; }
.partner-logo-fallback {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    align-items: center;
    justify-content: center;
}
.partner-logos-section .section-subtitle { margin-bottom: 1.5rem; }

.integration-list { list-style: none; padding: 0; margin: 0; max-width: 960px; margin-left: auto; margin-right: auto; }
.integration-list li { margin-bottom: 0.5rem; }
.integration-list details {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.integration-list details:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.integration-list details[open] { border-color: var(--accent); box-shadow: var(--shadow); }
.integration-list details[open]:hover { box-shadow: var(--shadow-hover); }
.integration-list summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    user-select: none;
}
.integration-list summary::-webkit-details-marker { display: none; }
.integration-list summary::after {
    content: "";
    width: 20px;
    height: 20px;
    margin-left: auto;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b6f76'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    transition: transform 0.2s;
}
[data-theme="dark"] .integration-list summary::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238b949e'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}
.integration-list details[open] summary::after { transform: rotate(180deg); }
.integration-list .integration-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.integration-list .integration-logo img { max-width: 32px; max-height: 24px; object-fit: contain; }
.integration-list .integration-logo .integration-name { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); }
.integration-list .integration-body { padding: 0 1.25rem 1.25rem; padding-left: calc(1.25rem + 40px + 1rem); }
@media (max-width: 520px) { .integration-list .integration-body { padding-left: 1.25rem; } }
.integration-list .integration-body p { margin: 0 0 0.75rem; font-size: 0.95rem; color: var(--text-muted); line-height: 1.55; font-weight: 400; }
.integration-list .integration-body p:last-child { margin-bottom: 0; }

.footer {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 1.5rem 1.5rem 0.75rem;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
    margin-bottom: 1rem;
}
@media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.footer-brand { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 0.25rem; }
.footer-brand span { color: var(--text-muted); font-weight: 500; font-size: 0.85rem; }
.footer h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin: 0 0 0.35rem; }
.footer-social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.footer-social a:hover { background: var(--accent); color: #ffffff; border-color: var(--accent); text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { text-align: center; padding-top: 0.75rem; padding-bottom: 0.25rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.8rem; }

.hero {
    padding: 5rem 1.5rem 6rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}
.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1.25rem;
}
.hero .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero .tagline {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2.25rem;
}
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    background: var(--accent);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--accent-dim); color: #ffffff; text-decoration: none; transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #ffffff; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.section {
    padding: 4rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}
.section-alt { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 10px; }
.section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    text-align: center;
}
.section .subtitle {
    color: var(--text-muted);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}
.section p { color: var(--text-muted); text-align: center; max-width: 720px; margin: 0 auto 1rem; }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 1.75rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-hover); border-color: var(--accent); }
.feature-card h3 { font-size: 1.15rem; margin: 0 0 0.5rem; color: var(--text); font-weight: 600; }
.feature-card p { margin: 0; text-align: left; font-size: 0.95rem; color: var(--text-muted); line-height: 1.55; }

.audience { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; margin-top: 1.5rem; }
.audience span {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}
.value-grid h3 { font-size: 1.1rem; margin-bottom: 0.75rem; font-weight: 600; }
.value-grid ul { margin: 0; padding-left: 1.25rem; color: var(--text-muted); font-size: 0.95rem; }
.value-grid li { margin-bottom: 0.4rem; }
.value-quote {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}
.value-quote p { margin: 0; text-align: left; max-width: none; }
.value-quote .strong { color: var(--text); font-weight: 600; }

.value-grid > div:first-child {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.cta-section { padding: 4rem 1.5rem; text-align: center; }
.cta-section p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 1.05rem; }

.page-hero {
    padding: 4rem 1.5rem 3rem;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}
.page-hero p { color: var(--text-muted); font-size: 1.05rem; }

.content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}
.content h2 { font-size: 1.35rem; margin: 2.5rem 0 1rem; color: var(--text); font-weight: 600; }
.content h2:first-of-type { margin-top: 0; }
.content p { color: var(--text-muted); margin-bottom: 1rem; }
.content ul { color: var(--text-muted); padding-left: 1.25rem; margin-bottom: 1rem; }
.content li { margin-bottom: 0.4rem; }
.content .focus-note {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.content .cta { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.content .cta a { font-weight: 600; }

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem 1rem;
    margin: 0.75rem 0;
    list-style: none;
    padding-left: 0;
}
.systems-grid li { margin: 0; }

.content h2.content-h2-sub { font-size: 1.25rem; margin: 2rem 0 0.75rem; }

.contact-wrap { max-width: 960px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.contact-intro { color: var(--text-muted); margin-bottom: 2rem; text-align: center; }
.channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.channel-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.channel-card:hover { border-color: var(--accent); box-shadow: var(--shadow-hover); text-decoration: none; color: var(--text); }
.channel-card .icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.channel-card .icon svg { width: 22px; height: 22px; }
.channel-card .label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.channel-card .value { font-weight: 600; font-size: 1rem; }
.contact-extra { color: var(--text-muted); font-size: 0.95rem; margin-top: 1.5rem; }
.contact-extra a { font-weight: 500; }

.svc-section-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.65rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(36,155,154,0.08);
    border: 1px solid rgba(36,155,154,0.22);
}
.svc-section-title {
    font-size: clamp(1.55rem, 3.5vw, 2.1rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: var(--text); margin: 0 0 0.75rem; line-height: 1.18;
}
.svc-section-sub {
    color: var(--text-muted); font-size: 1.05rem; line-height: 1.65;
    max-width: 42rem; margin: 0 auto 2.75rem; text-align: center;
}
.hero-kicker {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
    padding: 0.35rem 0.9rem; border-radius: 999px;
    background: rgba(36,155,154,0.1); border: 1px solid rgba(36,155,154,0.25);
    margin-bottom: 1.1rem;
}

.svc-hero {
    padding: clamp(2rem,4vw,3rem) clamp(0.5rem,2.5vw,1rem);
    text-align: center; position: relative; overflow: hidden;
}
.svc-hero::before {
    content: ""; position: absolute; inset: -30% -20% auto; height: 110%;
    background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(36,155,154,0.1), transparent 68%);
    pointer-events: none;
}
.svc-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.svc-hero h1 {
    font-size: clamp(2rem,5vw,3.1rem); font-weight: 800;
    letter-spacing: -0.035em; line-height: 1.12;
    margin: 0.55rem 0 1.25rem; color: var(--text);
}
.svc-hero-sub {
    font-size: clamp(1.02rem,2.2vw,1.2rem); color: var(--text-muted);
    line-height: 1.65; max-width: 38rem; margin: 0 auto 2rem;
}

.svc-grid-section {
    padding: clamp(2rem,4vw,3rem) clamp(0.5rem,2.5vw,1rem);
    max-width: 1280px; margin: 0 auto; text-align: center;
}
.svc-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem; text-align: left;
}
@media (max-width:999px) { .svc-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px)  { .svc-cards { grid-template-columns: 1fr; } }

.svc-card {
    position: relative; display: flex; flex-direction: column;
    padding: 1.75rem;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.2s;
    overflow: hidden;
}
.svc-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg,var(--accent),#1e8279);
    opacity: 0; transition: opacity 0.2s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); border-color: rgba(36,155,154,0.3); }
.svc-card:hover::before { opacity: 1; }
.svc-card--highlight { background: linear-gradient(150deg,rgba(36,155,154,0.07) 0%,var(--bg-card) 55%); border-color: rgba(36,155,154,0.28); }
.svc-card--highlight::before { opacity: 0.6; }
.svc-card--col2 { grid-column: 2; }
@media (max-width:999px) { .svc-card--col2 { grid-column: auto; } }

.svc-card-icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    border-radius: 12px; background: rgba(36,155,154,0.1); color: var(--accent);
    margin-bottom: 1.15rem; flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}
.svc-card:hover .svc-card-icon { background: linear-gradient(145deg,var(--accent),#1e8279); color:#fff; transform:scale(1.06); }
.svc-card-icon svg { width: 26px; height: 26px; }
.svc-card-body { flex: 1; }
.svc-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--text); margin: 0 0 0.65rem; letter-spacing: -0.01em; }
.svc-card p  { font-size: 0.945rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 1rem; }
.svc-list { list-style: none; padding: 0; margin: 0; }
.svc-list li {
    position: relative; padding-left: 1.15rem;
    font-size: 0.895rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.4rem;
}
.svc-list li::before {
    content: ""; position: absolute; left: 0; top: 0.52rem;
    width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}
.svc-card-tag {
    align-self: flex-start; margin-top: 1.25rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); background: rgba(36,155,154,0.08);
    border: 1px solid rgba(36,155,154,0.2); border-radius: 999px; padding: 0.25rem 0.65rem;
}

.svc-tech-section { padding: clamp(3rem,7vw,5rem) clamp(1.25rem,5vw,2.5rem); max-width: 1280px; margin: 0 auto; text-align: center; }
.tech-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; max-width: 800px; margin: 0 auto; }
.tech-chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px;
    font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s; cursor: default;
}
.tech-chip:hover { border-color: var(--accent); color: var(--text); box-shadow: 0 4px 16px rgba(36,155,154,0.14); }
.tech-chip--primary { background: rgba(36,155,154,0.08); border-color: rgba(36,155,154,0.28); color: var(--text); font-weight: 600; }
.tc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.svc-integrations-section { padding: clamp(3rem,7vw,5rem) clamp(1.25rem,5vw,2.5rem); max-width: 1280px; margin: 0 auto; text-align: center; }
.svc-process-section {
    padding: clamp(2rem, 4vw, 3rem) clamp(0.5rem, 2.5vw, 1rem);
    max-width: 1280px;
    margin: 0 auto;
    text-align: center; background: var(--bg-alt);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    border-radius: 1rem;
}
.process-steps { display: flex; align-items: flex-start; justify-content: center; max-width: 900px; margin: 0 auto; flex-wrap: wrap; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 180px; max-width: 260px; padding: 0 1rem; }
.process-connector { display: flex; align-items: center; padding-top: 2.3rem; color: var(--accent); flex-shrink: 0; opacity: 0.5; }
.process-connector::after { content: "→"; font-size: 1.5rem; }
.ps-num {
    width: 3rem; height: 3rem; border-radius: 50%;
    background: linear-gradient(145deg,var(--accent),#1e8279);
    color: #fff; font-weight: 800; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem; box-shadow: 0 4px 16px rgba(36,155,154,0.3); flex-shrink: 0;
}
.ps-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0 0 0.45rem; }
.ps-body p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
@media (max-width:720px) {
    .process-steps { flex-direction: column; align-items: center; }
    .process-connector { width: 2px; height: 40px; background: var(--accent); border-radius: 2px; margin: 0.5rem auto; padding: 0; opacity: 0.4; }
    .process-connector::after { content: ""; }
}

.svc-cta-section { padding: clamp(3.5rem,8vw,5.5rem) clamp(1.25rem,5vw,2.5rem); text-align: center; }
.svc-cta-inner {
    max-width: 44rem; margin: 0 auto;
    padding: clamp(2.5rem,5vw,3.5rem) clamp(2rem,5vw,3rem);
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08); position: relative; overflow: hidden;
}
.svc-cta-inner::before {
    content: ""; position: absolute; inset: -50% -20% auto; height: 80%;
    background: radial-gradient(ellipse at 50% 0%,rgba(36,155,154,0.1),transparent 65%);
    pointer-events: none;
}
.svc-cta-inner > * { position: relative; z-index: 1; }
.svc-cta-inner h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin: 0 0 0.75rem; }
.svc-cta-inner p  { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; margin: 0 0 1.75rem; }
.svc-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.about-hero { padding: clamp(3.5rem,9vw,6rem) clamp(1.25rem,5vw,1rem); text-align: center; position: relative; overflow: hidden; }
.about-hero::before {
    content: ""; position: absolute; inset: -30% -20% auto; height: 110%;
    background: radial-gradient(ellipse 70% 55% at 50% 30%,rgba(36,155,154,0.1),transparent 68%);
    pointer-events: none;
}
.about-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.about-hero h1 { font-size: clamp(2rem,5vw,3rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.14; margin: 0.55rem 0 1.25rem; color: var(--text); }
.about-hero-sub { font-size: clamp(1.02rem,2.2vw,1.18rem); color: var(--text-muted); line-height: 1.65; margin: 0; }

.about-statement { padding: clamp(3rem,7vw,5rem) clamp(1.25rem,5vw,2.5rem); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.about-statement-inner { max-width: 680px; margin: 0 auto; }
.statement-quote { font-size: clamp(1.1rem,2.5vw,1.35rem); font-weight: 600; line-height: 1.5; color: var(--text); border-left: 4px solid var(--accent); padding-left: 1.5rem; margin: 0 0 1.5rem; }
.statement-body { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.about-values-section { padding: clamp(3rem,7vw,5rem) clamp(1.25rem,5vw,2.5rem); text-align: center; }
.about-values-inner { max-width: 1100px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(2, minmax(260px, 420px)); gap: 1.5rem; text-align: left; margin-top: 0.5rem; justify-content: center; }
.value-item {
    display: flex; gap: 1.15rem; align-items: flex-start; padding: 1.5rem;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s;
}
.value-item:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.value-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(36,155,154,0.1); color: var(--accent); flex-shrink: 0; transition: background 0.2s, color 0.2s; }
.value-item:hover .value-icon { background: linear-gradient(145deg,var(--accent),#1e8279); color: #fff; }
.value-icon svg { width: 20px; height: 20px; }
.value-item h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0 0 0.4rem; }
.value-item p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.about-expertise-section { padding: clamp(3rem,7vw,5rem) clamp(1.25rem,5vw,2.5rem); background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-exp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 4rem; align-items: start; max-width: 1000px; margin: 0 auto; }
@media (max-width:720px) { .about-exp-inner { grid-template-columns: 1fr; gap: 2rem; } }
.about-exp-text h2 { font-size: clamp(1.45rem,3vw,1.85rem); font-weight: 800; letter-spacing: -0.025em; color: var(--text); margin: 0.5rem 0 1rem; }
.about-exp-text p  { font-size: 1.02rem; color: var(--text-muted); line-height: 1.7; margin: 0 0 1rem; }
.about-exp-text p:last-child { margin-bottom: 0; }
.about-exp-tags { display: flex; flex-wrap: wrap; gap: 0.65rem; padding-top: 0.5rem; align-content: flex-start; }
.exp-tag { display: inline-block; padding: 0.5rem 0.95rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; font-size: 0.875rem; font-weight: 500; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; }
.exp-tag:hover { border-color: var(--accent); box-shadow: 0 2px 12px rgba(36,155,154,0.14); }

.about-approach-section { padding: clamp(3rem,7vw,5rem) clamp(1.25rem,5vw,2.5rem); text-align: center; }
.about-approach-inner { max-width: 1100px; margin: 0 auto; }
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 1.5rem; text-align: left; margin-top: 0.5rem; }
.approach-card {
    padding: 2rem 1.75rem;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
}
.approach-card::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--accent),#1e8279); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.approach-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.approach-card:hover::after { transform: scaleX(1); }
.approach-num { font-size: 2.5rem; font-weight: 800; color: var(--accent); opacity: 0.5; line-height: 1; margin-bottom: 0.5rem; }
.approach-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0 0 0.55rem; letter-spacing: -0.01em; }
.approach-card p  { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.about-cta-section { padding: clamp(3.5rem,8vw,3rem) clamp(1.25rem,5vw,1.5rem); text-align: center; }
.about-cta-inner {
    max-width: 44rem; margin: 0 auto;
    padding: clamp(2.5rem,5vw,3.5rem) clamp(2rem,5vw,3rem);
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08); position: relative; overflow: hidden;
}
.about-cta-inner::before { content: ""; position: absolute; inset: -50% -20% auto; height: 80%; background: radial-gradient(ellipse at 50% 0%,rgba(36,155,154,0.1),transparent 65%); pointer-events: none; }
.about-cta-inner > * { position: relative; z-index: 1; }
.about-cta-inner h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin: 0 0 0.75rem; }
.about-cta-inner p  { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; margin: 0 0 1.75rem; }

.contact-hero { padding: 1.5rem clamp(1.25rem,5vw,2.5rem) clamp(2rem,5vw,3rem); text-align: center; position: relative; overflow: hidden; }
.contact-hero::before { content: ""; position: absolute; inset: -30% -20% auto; height: 110%; background: radial-gradient(ellipse 65% 55% at 50% 30%,rgba(36,155,154,0.1),transparent 68%); pointer-events: none; }
.contact-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.contact-hero h1 { font-size: clamp(1.85rem,5vw,2.85rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.14; margin: 0.55rem 0 1.1rem; color: var(--text); }
.contact-hero-sub { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.contact-layout {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem 4rem;
    max-width: 1100px; margin: 0 auto;
    padding: 1rem clamp(1.25rem,4vw,2.5rem) clamp(3rem,8vw,5rem);
    align-items: start;
}
@media (max-width:800px) { .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info-col { display: flex; flex-direction: column; gap: 2rem; }
.contact-promise { padding: 1.75rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 2px 14px rgba(0,0,0,0.04); }
.contact-promise h2 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 0 0 1.25rem; letter-spacing: -0.02em; }
.contact-promise-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.contact-promise-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.cp-icon { width: 26px; height: 26px; border-radius: 50%; background: rgba(36,155,154,0.1); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cp-icon svg { width: 14px; height: 14px; }
.contact-channels-col h3 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin: 0 0 0.9rem; }
.channels-col-list { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-form-col { position: relative; }
.contact-form-card {
    padding: 2.25rem 2rem;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08); position: relative; overflow: hidden;
}
.contact-form-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--accent),#1e8279); }
.cf-title { font-size: 1.3rem; font-weight: 800; color: var(--text); margin: 0 0 0.45rem; letter-spacing: -0.025em; }
.cf-sub   { font-size: 0.9375rem; color: var(--text-muted); margin: 0 0 1.75rem; line-height: 1.55; }
.lead-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.field-full { grid-column: 1/-1; }
.lead-form .field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); letter-spacing: 0.01em; }
.lead-form .optional { font-weight: 400; color: var(--text-muted); font-size: 0.85rem; }
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form textarea {
    width: 100%; padding: 0.72rem 0.95rem;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    background: var(--bg); color: var(--text); font: inherit; font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lead-form textarea { resize: vertical; min-height: 130px; }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(36,155,154,0.18); }
.field-error { display: block; font-size: 0.8rem; color: #c94a4a; margin-top: 0.25rem; }
.form-errors { color: #c94a4a; margin-bottom: 1rem; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; text-align: center; }
.form-privacy { font-size: 0.775rem; color: var(--text-muted); text-align: center; margin: 0.85rem 0 0; line-height: 1.5; }

.flash-messages { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2.5rem); }
.flash { margin: 1rem 0 1rem 0; padding: 1rem 1.25rem; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text); font-weight: 500; }
.flash-success { border-color: rgba(36,155,154,0.4); background: linear-gradient(135deg,rgba(36,155,154,0.12) 0%,var(--bg-card) 100%); }

.home-pain-section { padding: clamp(3rem,7vw,5rem) clamp(1.25rem,5vw,2.5rem); }
.pain-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.pain-inner h2 { font-size: clamp(1.55rem,3.5vw,2.1rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin: 0 0 2.5rem; line-height: 1.18; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.25rem; text-align: left; margin-bottom: 2.5rem; }
.pain-item { padding: 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s; }
.pain-item:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.pain-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(201,74,74,0.1); color: #c94a4a; margin-bottom: 1rem; }
.pain-icon svg { width: 20px; height: 20px; }
.pain-item h3 { font-size: 0.985rem; font-weight: 700; color: var(--text); margin: 0 0 0.45rem; }
.pain-item p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.pain-resolution { padding: 1.25rem 2rem; background: rgba(36,155,154,0.07); border: 1px solid rgba(36,155,154,0.22); border-radius: 12px; font-size: 1.05rem; color: var(--text-muted); line-height: 1.65; }
.pain-resolution strong { color: var(--text); }

.pillar-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--accent), #1e8279);
    color: #fff;
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 16px rgba(36,155,154,0.35);
    transition: transform 0.25s, box-shadow 0.25s;
}
.pillar-card:hover .pillar-icon { transform: scale(1.08); box-shadow: 0 8px 24px rgba(36,155,154,0.45); }
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-link { display: inline-block; font-size: 0.875rem; font-weight: 600; color: var(--accent); margin-top: auto; padding-top: 1.25rem; }
.pillar-link:hover { text-decoration: none; }

.hero-trust { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px solid var(--border); }
.ht-label { font-size: 0.775rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); flex-shrink: 0; }
.ht-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.ht-chips span { display: inline-block; padding: 0.3rem 0.75rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }

.home-who-section { padding: clamp(3rem,7vw,5rem) clamp(1.25rem,5vw,2.5rem); border-top: 1px solid var(--border); }
.home-who-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem 4rem; max-width: 1000px; margin: 0 auto; align-items: center; }
@media (max-width:720px) { .home-who-inner { grid-template-columns: 1fr; gap: 2rem; } }
.home-who-text h2 { font-size: clamp(1.45rem,3vw,1.9rem); font-weight: 800; letter-spacing: -0.025em; color: var(--text); margin: 0.5rem 0 1rem; }
.home-who-text p  { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin: 0 0 1rem; }
.home-who-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.who-tag { padding: 0.75rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; font-size: 0.875rem; font-weight: 600; color: var(--text-muted); text-align: center; transition: border-color 0.2s, color 0.2s, box-shadow 0.2s; }
.who-tag:hover { border-color: var(--accent); color: var(--text); box-shadow: 0 2px 12px rgba(36,155,154,0.12); }

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 1.5rem; margin-top: 1.5rem;
}
.pillar-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
    padding: 1.75rem; position: relative; overflow: hidden; display: flex; flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.2s;
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); border-color: rgba(36,155,154,0.3); }
.pillar-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2rem; height: 2rem; border-radius: 50%;
    background: linear-gradient(145deg,var(--accent),#1e8279);
    color: #fff; font-weight: 800; font-size: 0.95rem;
    margin-bottom: 1rem; box-shadow: 0 4px 12px rgba(36,155,154,0.3);
}
.pillar-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0 0 0.55rem; }
.pillar-card p  { 
    font-size: 0.9rem;
    color: var(--text-muted); 
    line-height: 1.65; 
    margin: 0; 
    text-align: left;
}
.stack-note { text-align: center; color: var(--text-muted); font-size: 0.875rem; margin-top: 2rem; padding: 0.6rem 1.2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px; display: inline-block; }

@media (max-width:600px) {
    .pain-grid { grid-template-columns: 1fr; }
    .home-who-tags { grid-template-columns: 1fr; }
    .lead-form-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .svc-cards { grid-template-columns: 1fr; }
}

.home-who-section {
    padding: clamp(3.5rem,8vw,5.5rem) clamp(1.25rem,5vw,2.5rem);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.home-who-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 100% 50%, rgba(36,155,154,0.07), transparent 65%);
    pointer-events: none;
}
.home-who-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 1;
}
@media (max-width:900px) { .home-who-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.home-who-text h2 {
    font-size: clamp(1.55rem,3vw,2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}
.home-who-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin: 0 0 1rem; }
.who-cta-btn { margin-top: 1.25rem; display: inline-block; }

.who-profiles {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
}
@media (max-width:600px) { .who-profiles { grid-template-columns: 1fr; } }

.who-profile-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.15rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.2s;
}
.who-profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.09);
    border-color: rgba(36,155,154,0.35);
}
.wpc-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(36,155,154,0.1);
    color: var(--accent);
    transition: background 0.2s, color 0.2s;
}
.who-profile-card:hover .wpc-icon {
    background: linear-gradient(145deg, var(--accent), #1e8279);
    color: #fff;
}
.wpc-icon svg { width: 18px; height: 18px; }
.wpc-body h3 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin: 0 0 0.25rem; }
.wpc-body p  { font-size: 0.825rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.home-who-text {
    padding: 2rem 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
.home-who-text::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #1e8279);
}

.hero                { padding-top: 3.5rem; padding-bottom: 4rem; }
.home-pain-section   { padding-top: clamp(2rem,4.5vw,3.5rem); padding-bottom: clamp(2rem,4.5vw,3.5rem); }
.section.section-alt { padding-top: 3rem; padding-bottom: 3rem; }
.home-who-section    { padding-top: clamp(2.5rem,5vw,3.75rem); padding-bottom: clamp(2.5rem,5vw,3.75rem); }
.cta-section         { padding-top: 0; padding-bottom: 3rem; }

.rv {
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--rv-delay, 0s);
}

.rv-fade  { opacity: 0; }
.rv-up    { opacity: 0; transform: translateY(28px); }
.rv-left  { opacity: 0; transform: translateX(-28px); }
.rv-right { opacity: 0; transform: translateX(28px); }
.rv-scale { opacity: 0; transform: scale(0.88); }

.rv-visible {
    opacity: 1 !important;
    transform: none !important;
}

.svc-card.rv, .pillar-card.rv, .who-profile-card.rv,
.pain-item.rv, .value-item.rv, .approach-card.rv {
    transition-duration: 0.65s;
}

.tech-chip.rv, .exp-tag.rv {
    transition-duration: 0.4s;
}

.intg-slider-wrap { max-width: 1100px; margin: 0 auto; user-select: none; }

.intg-slider-viewport { overflow: hidden; }

.intg-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    align-items: stretch;
}

.intg-slide {
    flex-shrink: 0;
    box-sizing: border-box;
}

.intg-logo-img {
    max-width: 30px;
    max-height: 24px;
    object-fit: contain;
    filter: none;
}

.intg-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.intg-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.intg-btn:hover:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: scale(1.08);
}
.intg-btn:disabled { opacity: 0.3; cursor: default; }
.intg-btn svg { width: 16px; height: 16px; }

.intg-dots { display: flex; gap: 0.4rem; align-items: center; }
.intg-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, width 0.25s;
}
.intg-dot--active {
    background: var(--accent);
    width: 20px;
    border-radius: 999px;
}

.intg-slide.rv { --rv-delay: 0s !important; transition-delay: 0s !important; }

.intg-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
}
.intg-card-header h3 { margin: 0; }

.intg-slide .svc-card-icon {
    background: transparent;
    margin-bottom: 0;
    flex-shrink: 0;
}
.intg-slide:hover .svc-card-icon {
    background: transparent;
    color: var(--accent);
    transform: none;
}
.intg-init {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--accent);
}

.svc-card--full {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 1rem 2rem;
    flex-wrap: wrap;
}
.svc-card-icon--lg {
    width: 64px; height: 64px;
    flex-shrink: 0;
    margin-bottom: 0;
}
.svc-card-icon--lg svg { width: 32px; height: 32px; }
.svc-card--full .svc-card-body {
    flex: 1;
    min-width: 200px;
}
.svc-card--full .svc-card-body h3 { font-size: 1.15rem; }
.svc-card--full .svc-card-body p  { margin-bottom: 0; }
.svc-list--row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.5rem;
    list-style: none;
    padding: 0; margin: 0;
    flex-shrink: 0;
}
.svc-list--row li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    white-space: nowrap;
}
.svc-list--row li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.5rem;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
}
.svc-card--full .svc-card-tag { align-self: center; margin-top: 0; flex-shrink: 0; }

@media (max-width: 720px) {
    .svc-card--full { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .svc-card-icon--lg { margin-bottom: 0; }
    .svc-list--row { flex-direction: column; gap: 0.35rem; }
    .svc-list--row li { white-space: normal; }
    .svc-card--full .svc-card-tag { margin-top: 0.75rem; }
}

.svc-card--full::before {
    top: 0; bottom: 0; left: 0; right: auto;
    width: 4px; height: auto;
    border-radius: 0 0 0 0;
}

.svc-card--full.svc-card--highlight {
    background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(36,155,154,0.10) 100%);
}

.wip-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: clamp(3rem,8vw,6rem) clamp(1.25rem,5vw,2rem); text-align: center; }
.wip-inner { max-width: 480px; }
.wip-icon { color: var(--accent); margin-bottom: 1.5rem; }
.wip-icon svg { width: 72px; height: 72px; }
.wip-kicker { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.wip-inner h1 { font-size: clamp(1.6rem,4vw,2.2rem); margin-bottom: 1rem; }
.wip-sub { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }

#theme-icon { display: flex; align-items: center; justify-content: center; line-height: 1; }

.lang-switcher { position: relative; }

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.55rem;
    line-height: 1;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.lang-current:hover,
.lang-switcher.is-open .lang-current { border-color: var(--accent); color: var(--accent); }

.lang-flag-img { width: 24px; height: 18px; border-radius: 2px; flex-shrink: 0; background-size: cover; }
.lang-code { letter-spacing: 0.04em; }

.lang-chevron {
    width: 10px;
    height: 6px;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.lang-switcher.is-open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    min-width: 88px;
    overflow: hidden;
    padding: 0.25rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
    z-index: 200;
}
.lang-switcher.is-open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    text-align: left;
    transition: background 0.12s, color 0.12s;
}
.lang-option:hover { background: rgba(36,155,154,0.08); color: var(--accent); }
.lang-option--active { color: var(--accent); font-weight: 700; }

@media (max-width: 640px) {
    .nav { padding: 0.65rem 1rem; }
    .nav-logo { font-size: 0.95rem; gap: 0.35rem; }
    .nav-logo img { height: 22px; }
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.82rem; }
}

.contact-hero .hero-kicker,
.contact-hero h1,
.contact-hero .contact-hero-sub {
    will-change: opacity, transform;
}
