:root {
    --appi-blue: #18aaca;
    --appi-blue-deep: #0f8fac;
    --appi-blue-soft: #e3f6fb;
    --appi-blue-tint: #f3fbfd;
    --ink: #121417;
    --ink-2: #2a2f36;
    --muted: #5b6270;
    --muted-2: #8a909b;
    --line: #e5e8ee;
    --line-2: #eef1f6;
    --paper: #ffffff;
    --cream: #f7f8fb;
    --accent-amber: #e89c2a;
    --ok: #1f9d66;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-card: 0 1px 2px rgba(16, 24, 40, .04), 0 8px 24px -12px rgba(16, 24, 40, .12);
    --shadow-soft: 0 12px 40px -20px rgba(11, 78, 162, .35);
    --max: 1240px;
}

body {
    font-family: 'Open Sans', sans-serif, Helvetica;
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.floating-btn {
  position: fixed;
  bottom: 200px;
  right: 10px;
  transform: rotate(-90deg);
  transform-origin: right bottom;
  z-index: 999;
  display: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.floating-btn:hover {
  transform: rotate(-90deg) translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
a {
    color: var(--appi-blue);
    text-decoration: none
}

a:hover {
    color: #10b6d5
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11.5px;
    color: var(--appi-blue);
    font-weight: 600;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    letter-spacing: -.01em;
    text-wrap: balance
}

h1 {
    font-weight: 700;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.08;
    margin: 0
}

h2 {
    font-weight: 700;
    font-size: clamp(26px, 2.6vw, 38px);
    line-height: 1.15;
    margin: 0 0 12px
}

h3 {
    font-weight: 600;
    font-size: 19px;
    line-height: 1.35;
    margin: 0 0 8px
}

p {
    margin: 0 0 14px;
    color: var(--ink-2)
}

.lead {
    font-size: 18px;
    color: var(--ink-2);
    text-wrap: pretty
}

.topbar {
    background: var(--appi-blue);
    color: #fff;
    font-size: 13px;
}

.topbar .wrap {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    padding: 10px 28px
}
.appiness-logo.desktop {
    display: block;
}

.appiness-logo.mobile {
    display: none;
}


.topbar a {
    color: #fff;
    opacity: .9
}

.topbar a:hover {
    opacity: 1
}

header.site {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(1.3) blur(10px);
    border-bottom: 1px solid var(--line);
}

header.site .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    max-width: var(--max);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 19px;
    color: var(--appi-blue);
    letter-spacing: -.01em;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--appi-blue);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .12);
    position: relative;
}

.logo-mark::after {
    content: "";
    position: absolute;
    inset: 8px 8px auto 8px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    transform: translateY(4px);
}

.logo-mark::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 13px;
    display: flex;
    justify-content: space-between;
    height: 0;
}

nav.main {
    display: flex;
    gap: 28px;
    align-items: center
}

nav.main a {
    color: var(--ink);
    font-weight: 500;
    font-size: 14.5px
}

nav.main a.active {
    color: var(--appi-blue);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14.5px;
    border: 1.5px solid var(--appi-blue);
    background: var(--appi-blue);
    color: #fff;
    transition: transform .15s ease, box-shadow .2s ease, background .2s;
    cursor: pointer;
}

.btn:hover {
    background: var(--appi-blue-deep);
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
    box-shadow: var(--shadow-soft)
}

.btn.ghost {
    background: #fff;
    color: var(--appi-blue)
}

/* .btn.ghost:hover {
    background: var(--appi-blue-soft);
    color: var(--appi-blue-deep)
} */

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

.btn.dark:hover {
    background: #000
}

.btn .arr {
    transition: transform .2s
}

.btn:hover .arr {
    transform: translateX(3px)
}

.crumbs {
    padding: 20px 0 20px;
    font-size: 13.5px;
    color: var(--muted)
}

.crumbs a {
    color: var(--muted)
}

.crumbs a:hover {
    color: var(--appi-blue)
}

.crumbs .sep {
    margin: 0 8px;
    color: var(--muted-2)
}

.hero {
    padding: 34px 0 64px;
    background:
        radial-gradient(900px 420px at 85% -10%, rgba(11, 78, 162, .10), transparent 60%),
        radial-gradient(700px 380px at 0% 0%, rgba(232, 156, 42, .06), transparent 60%),
        var(--paper);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .95fr;
    gap: 56px;
    align-items: center;
    padding-top: 18px;
}

.hero h1 strong {
    color: var(--appi-blue);
    font-weight: 700
}

.hero .sub {
    font-size: 19px;
    color: var(--ink-2);
    margin-top: 18px;
    max-width: 620px
}

.hero .intro {
    margin-top: 22px;
    font-size: 15.5px;
    color: var(--muted);
    max-width: 620px
}

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

.hero .kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
    max-width: 620px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.kpi .n {
    font-size: 26px;
    font-weight: 700;
    color: var(--appi-blue);
    letter-spacing: -.02em
}

.kpi .l {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
    margin-top: 2px
}

.hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hv-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f8fac 0%, #18aaca 55%, #5fc9dc 100%);
    border-radius: 28px;
    box-shadow: 0 40px 80px -40px rgba(24, 170, 202, .55);
    overflow: hidden;
}

.hv-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(400px 180px at 15% 15%, rgba(255, 255, 255, .25), transparent 60%),
        radial-gradient(300px 160px at 100% 100%, rgba(232, 156, 42, .35), transparent 60%);
}

.hv-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent);
}

.waveform {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 14%;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.waveform span {
    flex: 1;
    background: #fff;
    border-radius: 2px;
    opacity: .9;
    animation: wave 1.6s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        height: 12%
    }

    50% {
        height: 90%
    }
}

.agent-card {
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 10%;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .35);
    z-index: 2;
}

.ac-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.ac-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 0 4px rgba(31, 157, 102, .18)
}

.ac-title {
    font-weight: 600;
    font-size: 14px
}

.ac-meta {
    font-size: 11.5px;
    color: var(--muted);
    margin-left: auto
}

.ac-msg {
    margin-top: 10px;
    padding: 12px 14px;
    background: var(--appi-blue-soft);
    color: var(--appi-blue-deep);
    border-radius: 10px;
    font-size: 12.5px;
    line-height: 1.5;
    min-height: 84px;
    height: 84px;
    position: relative;
    overflow: hidden;
}

.ac-msg .line {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .45s ease, transform .45s ease;
}

.ac-msg .line.active {
    opacity: 1;
    transform: translateY(0)
}

.ac-msg .line.out {
    opacity: 0;
    transform: translateY(-6px);
    transition-duration: .35s
}

.agent-card {
    left: 8%;
    right: 8%;
}

.lang-tag {
    transition: background .3s ease, color .3s ease
}

.lang-tag.on {
    background: var(--appi-blue);
    color: #fff
}

.ac-lang {
    margin-top: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    font-size: 10.5px;
    background: #f0f3f8;
    color: var(--ink-2);
    padding: 4px 8px;
    border-radius: 6px;
}

.hv-badge {
    position: absolute;
    top: -14px;
    right: -14px;
    background: var(--accent-amber);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    box-shadow: 0 10px 24px -10px rgba(232, 156, 42, .6);
    z-index: 3;
    animation: badgePulse 2.4s ease-in-out infinite;
    transform-origin: center;
}

.hv-badge::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .8);
    animation: badgeDot 1.6s ease-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 10px 24px -10px rgba(232, 156, 42, .6), 0 0 0 0 rgba(232, 156, 42, .45)
    }

    50% {
        box-shadow: 0 10px 24px -10px rgba(232, 156, 42, .6), 0 0 0 10px rgba(232, 156, 42, 0)
    }
}

@keyframes badgeDot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .8)
    }

    80%,
    100% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0)
    }
}

section {
    padding: 88px 0
}

section.tight {
    padding: 56px 0
}

.section-head {
    max-width: 780px;
    margin-bottom: 40px
}

.section-head.center {
    margin: 0 auto 40px;
    text-align: center
}

.section-head p {
    color: var(--muted);
    font-size: 17px
}

.muted-bg {
    background: var(--cream)
}

.deep-bg {
    background: var(--ink);
    color: #fff;
}

.deep-bg h2,
.deep-bg h3 {
    color: #fff
}

.deep-bg p {
    color: rgba(255, 255, 255, .75)
}

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

.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px 32px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: attr(data-num);
    position: absolute;
    top: -20px;
    right: -8px;
    font-weight: 800;
    font-size: 140px;
    line-height: 1;
    color: rgba(24, 170, 202, .06);
    letter-spacing: -.05em;
    pointer-events: none;
    user-select: none;
    transition: color .4s ease, transform .4s ease;
}

.why-card:hover::before {
    color: rgba(24, 170, 202, .12);
    transform: translate(-4px, 4px)
}

.why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(24, 170, 202, .35);
    box-shadow: var(--shadow-soft);
}

.why-card .why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--appi-blue-soft), #fff);
    border: 1px solid rgba(24, 170, 202, .22);
    color: var(--appi-blue);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 14px -10px rgba(24, 170, 202, .5);
}

.why-card .num {
    font-size: 11px;
    color: var(--muted-2);
    letter-spacing: .14em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.why-card h3 {
    margin: 8px 0 12px;
    font-size: 21px;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.why-card p {
    color: var(--ink-2);
    font-size: 15px;
    margin: 0;
    position: relative;
    z-index: 1
}

.why-card .tagline {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
    font-size: 11.5px;
    color: var(--appi-blue);
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.why-card .tagline::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--appi-blue);
    box-shadow: 0 0 0 3px rgba(24, 170, 202, .18);
}

@keyframes langFade {

    0%,
    100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

.flow-section {
    padding: 88px 0;
    background: var(--paper)
}

.flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    padding: 40px 0;
    position: relative;
}

.flow-stage {
    flex: 0 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 130px;
    opacity: 0;
    animation: fsIn .6s forwards;
}

.flow-stage[data-stage="1"] {
    animation-delay: .1s
}

.flow-stage[data-stage="2"] {
    animation-delay: .3s
}

.flow-stage[data-stage="3"] {
    animation-delay: .5s
}

.flow-stage[data-stage="4"] {
    animation-delay: .7s
}

.flow-stage[data-stage="5"] {
    animation-delay: .9s
}

@keyframes fsIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fs-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--appi-blue-soft), #fff);
    color: var(--appi-blue);
    display: grid;
    place-items: center;
    border: 1px solid rgba(24, 170, 202, .3);
    box-shadow: 0 8px 20px -12px rgba(24, 170, 202, .4);
}

.fs-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink)
}

.fs-meta {
    font-size: 10.5px;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase
}

.flow-pipe {
    flex: 1;
    min-width: 40px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    height: 64px;
}

.flow-pipe::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(24, 170, 202, .15) 0, rgba(24, 170, 202, .55) 50%, rgba(24, 170, 202, .15) 100%);
}

.pulse-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--appi-blue);
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(24, 170, 202, .2);
    animation: pipeDot 2.6s linear infinite;
}

.flow-pipe:nth-of-type(4) .pulse-dot {
    animation-delay: .6s
}

.flow-pipe:nth-of-type(6) .pulse-dot {
    animation-delay: 1.2s
}

.flow-pipe:nth-of-type(8) .pulse-dot {
    animation-delay: 1.8s
}

@keyframes pipeDot {
    0% {
        left: 0;
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        left: 100%;
        opacity: 0
    }
}

.flow-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.fm {
    text-align: center
}

.fm-n {
    font-size: 30px;
    font-weight: 700;
    color: var(--appi-blue);
    letter-spacing: -.02em
}

.fm-l {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px
}

@media (max-width: 900px) {
    .flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        padding: 20px 0
    }

    .flow-pipe {
        display: none
    }

    .flow-metrics {
        grid-template-columns: 1fr 1fr
    }
}

.svc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.svc-tab {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-weight: 500;
}

.svc-tab.active {
    color: var(--appi-blue);
    border-bottom-color: var(--appi-blue);
    font-weight: 600
}

.svc-tab:hover {
    color: var(--appi-blue)
}

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

.svc-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: .2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-card:hover {
    border-color: var(--appi-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card)
}

.svc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--appi-blue-soft);
    color: var(--appi-blue);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
}

.svc-card h3 {
    font-size: 17px;
    margin: 4px 0 0;
    line-height: 1.3
}

.svc-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.55
}

.svc-card .tags {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

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

.ind {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ind-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--appi-blue-soft);
    color: var(--appi-blue);
    display: grid;
    place-items: center;
}

.ind h3 {
    margin: 0 0 4px;
    font-size: 16px
}

.ind p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
}

.stack-col h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--accent-amber);
    margin: 0 0 14px;
    font-weight: 600;
}

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

.chip {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: 13.5px;
    font-weight: 500;
    transition: .15s;
}

.chip:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .28)
}

.chip.primary {
    background: var(--appi-blue);
    border-color: var(--appi-blue)
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.tl-step {
    padding: 30px 24px 0;
    position: relative;
}

.tl-step::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: var(--line);
}

.tl-step.active::before {
    background: var(--appi-blue)
}

.tl-step .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--line);
    position: absolute;
    left: 24px;
    top: -7px;
}

.tl-step.active .dot {
    border-color: var(--appi-blue);
    background: var(--appi-blue)
}

.tl-week {
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--appi-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.tl-step h3 {
    font-size: 18px;
    margin: 0 0 6px
}

.tl-step p {
    font-size: 14px;
    color: var(--muted);
    margin: 0
}

.faq {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
}

.faq-q:hover {
    color: var(--appi-blue)
}

.faq-q .plus {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--appi-blue);
    font-weight: 300;
    font-size: 18px;
    flex-shrink: 0;
    transition: .2s;
}

.faq-item.open .plus {
    background: var(--appi-blue);
    color: #fff;
    border-color: var(--appi-blue);
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item.open .faq-a {
    max-height: 500px
}

.faq-a-inner {
    padding: 0 0 24px;
    max-width: 820px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.65;
}

.cta-band {
    background:
        radial-gradient(600px 300px at 20% 50%, rgba(232, 156, 42, .18), transparent 60%),
        linear-gradient(135deg, #0f8fac 0%, #18aaca 50%, #5fc9dc 100%);
    color: #fff;
    padding: 72px 0;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(100% 60% at 50% 50%, #000, transparent);
}

.cta-band .inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    padding: 0 48px;
}

.cta-band h2 {
    color: #fff;
    font-size: clamp(28px, 3vw, 40px)
}

.cta-band p {
    color: rgba(255, 255, 255, .85);
    font-size: 17px
}

.cta-band .ctas {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap
}

.cta-band .btn.ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    background: transparent
}

.cta-band .btn.ghost:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.cta-band .btn.amber {
    background: #fff;
    border-color: var(--appi-blue);
    color: var(--appi-blue);
}

.cta-band .btn.amber:hover {
    background: #fff;
    border-color: var(--appi-blue-deep);
}

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

.rel {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    transition: .2s;
    display: flex;
    flex-direction: column;
    min-height: 190px;
    color: var(--ink);
    text-decoration: none;
}

.rel:hover {
    transform: translateY(-3px);
    border-color: var(--appi-blue);
    box-shadow: var(--shadow-soft);
    text-decoration: none
}

.rel .eyebrow {
    color: var(--muted)
}

.rel h3 {
    margin: 10px 0 10px;
    font-size: 19px
}

.rel p {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 auto
}

.rel .go {
    margin-top: 18px;
    color: var(--appi-blue);
    font-weight: 600;
    font-size: 14px
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-visual {
        margin: 0 auto;
        max-width: 420px;
        width: 100%
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stack-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

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

    .tl-step {
        padding-top: 30px
    }

    .cta-band .inner {
        grid-template-columns: 1fr;
        padding: 0 28px
    }

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

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

@media (max-width: 720px) {
    nav.main {
        display: none
    }

    .why-grid,
    .svc-grid,
    .ind-grid {
        grid-template-columns: 1fr
    }

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

    .hero .kpis {
        grid-template-columns: 1fr 1fr
    }

    section {
        padding: 64px 0
    }

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

    .hero-visual {
        aspect-ratio: auto;
        max-width: 360px;
        min-height: 380px;
    }

    .hv-bg {
        position: absolute;
        inset: 0;
        height: auto;
    }

    .waveform {
        position: absolute;
        top: 62px;
        height: 48px;
        left: 10%;
        right: 10%;
        opacity: .9;
    }

    .agent-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 130px 6% 20px;
    }

    .hv-badge {
        top: 10px;
        right: 10px;
        transform: none;
        font-size: 10px;
        padding: 5px 10px
    }

    .crumbs {
        padding: 70px 0 20px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: .6s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

.talk-pill {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    background: var(--appi-blue);
    color: #fff;
    border-radius: 999px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    border: none;
}

.talk-pill:hover {
    background: var(--appi-blue-deep)
}

.talk-pill .pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-amber);
    box-shadow: 0 0 0 0 rgba(232, 156, 42, .7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 156, 42, .7)
    }

    70% {
        box-shadow: 0 0 0 12px rgba(232, 156, 42, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232, 156, 42, 0)
    }
}

.container_elevenlabs_development_services {
    box-sizing: border-box;
    margin-right: auto;
    padding: 0;
    margin-right: auto;
    margin-left: 80px;
    width: calc(100% - 80px);
    box-shadow: -5px 0 5px -5px rgb(0 0 0 / 15%);
}

.talk-to-us-btn-p {
    color: #fff;
}
.talk-to-us-text:not(:focus):not(:placeholder-shown):valid~.talk-to-us-label, .talk-to-us-text:valid~.talk-to-us-label,.talk-to-us-label-phone {
    top: -56px;
}

.form-open-btn {
    cursor: pointer;
    border: none;
    z-index: 20;
    position: fixed;
    right: 0;
    top: 40%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-align: center !important;
    background: #10b6d5;
    color: #fff;
    font-size: 11px;
    width: 35px;
    padding: 14px 7px;
    width: min-content;
}

@media (max-width: 991px) {
    .form-open-btn {
        left: 0 !important;
        top: 40% !important;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        z-index: 9999 !important;
    }
}

.vola-widget-button,
.back-top {
    margin-right: 0;
}

.subscribe-newsletter-form-flex {
    height: auto;
    min-width: 230px;
    border-radius: 12px;
    padding: 6px 8px 8px 40px;
    margin-block: 15px 0;
}

.newsletter-submit-btn {
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    border: 0;
}
.iti__selected-flag {
    border-radius: 20px 0 0 20px;
}

/* form  */
.form-start {
    background: url(../../assets/images/contact-us-form-linkdin.webp) no-repeat;
    background-size: cover;
}
.form-image {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: auto;
}

.appiness-linkedin-form-content {
    display: grid;
    grid-template-columns: 1.15fr .95fr;
    gap: 56px;
    max-width: var(--max);
    padding: 8rem 28px;
    margin: auto;
}

.appiness-linkedin-form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.appiness-linkedin-form-title {
    font-size: 42px;
    color: #000;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 400;
}

.appiness-linkedin-form-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.appiness-linkedin-form-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.appiness-linkedin-form-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.appiness-linkedin-form-group {
    margin-bottom: 1.5rem;
}

.appiness-linkedin-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.appiness-linkedin-form-input, 
.appiness-linkedin-form-select {
    width:-webkit-fill-available;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
    font-size: 16px;
    outline: none;
}

.appiness-linkedin-form-input::placeholder {
    color: #aaa;
}

.appiness-linkedin-form-input:focus,
.appiness-linkedin-form-select:focus {
    border-color: #66afe9;
    box-shadow: 0 0 0 2px rgba(102, 175, 233, 0.2);
}

.appiness-linkedin-form-submit {
    width: 100%;
    padding: 0.9rem;
    background: #52B4D2;
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s;
}

.appiness-linkedin-form-submit:hover {
    box-shadow: 0 10px 15px #64dfff85;
    background-color: #0a7486;
    transition: all 0.4s ease-in-out;
}

.appiness-linkedin-form-submit-icon {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .appiness-linkedin-form-content {
        grid-template-columns: 1fr;
        padding-block: 64px;
    }
    
    .appiness-linkedin-form-left {
        padding-right: 0;
        padding-bottom: 2rem;
        text-align: center;
        padding: 20px;
    }
    .appiness-linkedin-form-subtitle {
        margin-bottom: 0;
    }
}

.appiness-rightfloat-enquire-holder {
    position: fixed;
    top: 60%;
    right: 0;
    transform: translateX(35%);
    background-color: transparent;
    border-radius: 12px;
    z-index: 9999;
    display: none;

}
@media only screen and (max-width: 991px) {
    .nav-main {
        padding-inline: 2rem;
    }

    .landing-footer {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .landing-flexitem,
    .landing-flexitem2 {
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
    }

    .appiness-logo.desktop {
        display: none;
    }

    .appiness-logo.mobile {
        display: block;
    }

    .landingdigitalbtn.desktop {
        display: none;
    }

    .landingdigitalbtn.mobile {
        display: block;
    }
    .landing-talktous {
        margin: auto;
    }
    .landing-banner {
        margin: 0;
    }
    .container_elevenlabs_development_services {
        width: 100%;
        margin: 0 !important;
    }
    .eyebrow {
        margin-top: 30px;
    }
}
@media screen and (min-width: 993px) {
    #default-nav:hover .side-nav {
        width: 320px !important;
    }
}
.appiness-linkedin-form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-error {
    position: static;
    display: block;
    font-size: 13px;
    color: #e53935;
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.4;
    min-height: 0;
}