:root {
    --blue: #146ef5;
    --blue-deep: #0b4fb8;
    --navy: #0a1b3d;
    --navy2: #112a52;
    --ink: #16213e;
    --muted: #5a6b8c;
    --faint: #8a97b2;
    --steel: #dde4ee;
    --steel-2: #c4cfe0;
    --steel-3: #aebbcf;
    --paper: #fafbfd;
    --card: #ffffff;
    --mist: #eff3f9;
    --rule: #d8e0ec;
    --amber: #e8a547;
    --green: #1a8f4e;
    --green-bg: #e4f6ec;
    --serif: "Newsreader", Georgia, serif;
    --sans: "Albert Sans", -apple-system, sans-serif;
    --sh-sm:
        0 1px 2px rgba(10, 27, 61, 0.05), 0 3px 10px rgba(10, 27, 61, 0.06);
    --sh-md:
        0 6px 16px rgba(10, 27, 61, 0.08), 0 16px 40px rgba(10, 27, 61, 0.1);
    --maxw: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--blue);
    color: #fff;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow:
        0 2px 4px rgba(20, 110, 245, 0.25),
        0 8px 20px rgba(20, 110, 245, 0.22);
}

.btn-primary:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--rule);
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--mist);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 251, 253, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}

header.scrolled {
    border-bottom-color: var(--rule);
    box-shadow: var(--sh-sm);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 21px;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.logo svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 160px;
    height: auto;
}

.foot-brand .logo img {
    width: 170px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.18s;
}

.nav-links a:hover {
    color: var(--blue);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    margin: 4px 0;
    border-radius: 2px;
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    padding: 50px 0 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 55% 45% at 76% 30%,
            rgba(20, 110, 245, 0.07),
            transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 22px;
}

/* .eyebrow::before {
    content: "";
    width: 22px;
    height: 1.5px;
    background: var(--blue);
} */

.hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(40px, 5.4vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--navy);
    /* margin-bottom: 22px; */
}

.hero h1 em {
    font-style: italic;
    color: var(--blue);
    font-weight: 400;
}

.hero-sub {
    font-size: clamp(16px, 1.8vw, 18.5px);
    color: var(--muted);
    line-height: 1.62;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-note {
    /* margin-top: 20px; */
    font-size: 13.5px;
    color: var(--faint);
}

.hero-note b {
    color: var(--muted);
    font-weight: 600;
}

/* thali */
.thali-stage {
    position: relative;
}

.thali-box {
    opacity: 0;
    transform: scale(0.93);
    transition:
        opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.thali-box.played {
    opacity: 1;
    transform: none;
}

.thali-box img {
    width: 100%;
    height: auto;
    display: block;
}

.hs {
    position: absolute;
    width: 23%;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: block;
    transition: box-shadow 0.2s;
}

.hs:hover,
.hs:focus-visible {
    box-shadow:
        0 0 0 3px rgba(20, 110, 245, 0.5),
        0 12px 28px rgba(10, 27, 61, 0.2);
    outline: none;
}

.hs span {
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translate(-50%, 100%);
    background: var(--navy);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.18s;
    pointer-events: none;
    white-space: nowrap;
}

.hs:hover span,
.hs:focus-visible span {
    opacity: 1;
}

.thali-hint {
    text-align: center;
    font-size: 12.5px;
    color: var(--faint);
    margin-top: 6px;
    font-style: italic;
}

/* ---------- reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.65s cubic-bezier(0.2, 0.6, 0.2, 1),
        transform 0.65s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.06s;
}

.d2 {
    transition-delay: 0.14s;
}

.d3 {
    transition-delay: 0.22s;
}

/* ---------- trust ---------- */
 .trust {
      padding: 40px 0 10px;
      margin: 120px 0 100px;
  }

.trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 34px;
}

.trust-logos {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

/* ---------- sections ---------- */
.sec {
    padding: 96px 0;
}

.sec-head {
    max-width: 700px;
    margin-bottom: 52px;
}

.sec-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.kicker {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    display: inline-block;
}

.sec-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.sec-title em {
    font-style: italic;
    color: var(--blue);
    font-weight: 400;
}

.sec-intro {
    margin-top: 16px;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
}

/* ---------- pain ---------- */
.pain {
    background: var(--navy);
    color: #fff;
}

.pain .sec-title {
    color: #fff;
}

.pain .kicker {
    color: #7fb0ff;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pain-card {
    background: var(--navy2);
    border: 1px solid #203a66;
    border-radius: 14px;
    padding: 28px;
}

.pain-card.hot {
    background: #23294a;
}

.pain-ic {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(91, 164, 224, 0.15);
    margin-bottom: 18px;
}

.pain-card h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.pain-card p {
    font-size: 13.8px;
    color: #afbdd8;
    line-height: 1.55;
}

.pain-foot {
    margin-top: 34px;
    font-size: 14px;
    font-style: italic;
    color: #7fb0ff;
}

/* ---------- approach ---------- */
.appr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.appr-card {
    border-radius: 16px;
    padding: 34px;
}

.appr-card.usual {
    background: var(--mist);
    border: 1px solid var(--rule);
}

.appr-card.ours {
    background: var(--navy);
    box-shadow: var(--sh-md);
}

.appr-tag {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.usual .appr-tag {
    color: var(--faint);
}

.ours .appr-tag {
    color: #7fb0ff;
}

.appr-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 9px 0;
    font-size: 14.5px;
}

.usual .appr-item {
    color: var(--muted);
}

.ours .appr-item {
    color: #e4eaf5;
}

.appr-item .mark {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    font-weight: 700;
}

.usual .mark {
    color: var(--faint);
}

.ours .mark {
    color: #7fb0ff;
}

.appr-foot {
    margin-top: 44px;
    text-align: center;
    font-size: 14.5px;
    font-weight: 600;
    font-style: italic;
    color: var(--blue);
}

/* ---------- modules ---------- */
.mods {
    background: var(--mist);
}

.mod-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 52px 0;
    border-bottom: 1px solid var(--rule);
}

.mod-row:last-child {
    border-bottom: none;
}

.mod-row.flip .mod-copy {
    order: 2;
}

.mod-row.flip .mod-visual {
    order: 1;
}

.mod-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.mod-name {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
}

.mod-copy h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.14;
    letter-spacing: -0.015em;
    color: var(--navy);
    margin-bottom: 14px;
}

.mod-copy p.lead {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.mod-feats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.mod-feat {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--ink);
}

.mod-feat::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 7px;
}

.mod-cta {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mod-cta:hover {
    gap: 11px;
}

.mod-visual {
    display: flex;
    justify-content: center;
    height: 100%;
}

.mock {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: 16px;
    box-shadow: var(--sh-md);
    padding: 22px;
    width: 100%;
    max-width: 400px;

}

.mock-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.mock-bar i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--steel-2);
}

.mock-bar i:first-child {
    background: var(--blue);
}

.kb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.kb-col {
    background: var(--mist);
    border-radius: 9px;
    padding: 9px;
}

.kb-col h6 {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 8px;
}

.kb-task {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 6px;
    height: 26px;
    margin-bottom: 7px;
    position: relative;
    overflow: hidden;
}

.kb-task::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 9px;
    height: 5px;
    border-radius: 3px;
    background: var(--steel);
    width: 60%;
}

.kb-task.b::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
}

.kb-time {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navy);
    border-radius: 8px;
    padding: 9px 12px;
}

.kb-time span {
    font-size: 11px;
    color: #afbdd8;
}

.kb-time b {
    font-size: 12.5px;
    color: #fff;
    font-family: var(--serif);
}

.sg-doc {
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 18px;
}

.sg-line {
    height: 6px;
    border-radius: 3px;
    background: var(--mist);
    margin-bottom: 9px;
}

.sg-line.w70 {
    width: 70%;
}

.sg-line.w45 {
    width: 45%;
}

.sg-sig {
    margin: 16px 0 8px;
    padding: 12px;
    border: 1.5px dashed var(--steel-2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sg-sig svg {
    height: 26px;
}

.sg-chip {
    background: var(--green-bg);
    color: var(--green);
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.sg-meta {
    font-size: 11px;
    color: var(--faint);
    text-align: right;
    margin-top: 8px;
}

.pl-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--mist);
    border-radius: 9px;
    padding: 11px 14px;
    margin-bottom: 9px;
}

.pl-stage span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
}

.pl-stage b {
    font-size: 12px;
    color: var(--blue);
    font-family: var(--serif);
}

.pl-stage .dots {
    display: flex;
    gap: 5px;
}

.pl-stage .dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--steel-2);
}

.pl-stage .dots i.on {
    background: var(--blue);
}

.pl-next {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fdf6ea;
    border: 1px solid #f0deb6;
    border-radius: 9px;
    padding: 10px 13px;
    margin-top: 12px;
}

.pl-next span {
    font-size: 12px;
    color: #8a6a2b;
}

.inv-paper {
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 18px;
}

.inv-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.inv-head b {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--navy);
}

.inv-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--muted);
    padding: 7px 0;
    border-bottom: 1px solid var(--mist);
}

.inv-total {
    display: flex;
    justify-content: space-between;
    padding-top: 11px;
    font-size: 13.5px;
}

.inv-total b {
    color: var(--blue);
    font-family: var(--serif);
}

.chat-b {
    max-width: 85%;
    border-radius: 13px;
    padding: 11px 14px;
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 10px;
}

.chat-b.q {
    background: var(--blue);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.chat-b.a {
    background: var(--mist);
    color: var(--ink);
    border-bottom-left-radius: 4px;
}

.chat-b.a b {
    color: var(--navy);
}

.chat-typing {
    display: inline-flex;
    gap: 4px;
    padding: 10px 14px;
    background: var(--mist);
    border-radius: 13px;
    border-bottom-left-radius: 4px;
}

.chat-typing i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--steel-3);
}

.meet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.meet-head b {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--navy);
}

.meet-head span {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--blue);
    background: #eef4ff;
    padding: 4px 8px;
    border-radius: 100px;
}

.meet-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: center;
    padding: 11px;
    border: 1px solid var(--rule);
    border-radius: 9px;
    margin-bottom: 9px;
    background: #fff;
}

.meet-item.active {
    border-color: #afcbfa;
    background: #f5f8ff;
}

.meet-time {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
}

.meet-item b {
    display: block;
    font-size: 12.5px;
    color: var(--navy);
    margin-bottom: 2px;
}

.meet-item span {
    display: block;
    font-size: 10.5px;
    color: var(--faint);
}

/* ---------- why workplate ---------- */
.why {
    background: var(--card);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.why-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 17px;
    align-items: start;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: #eef4ff;
    color: var(--blue);
    display: grid;
    place-items: center;
}

.why-icon svg {
    width: 25px;
    height: 25px;
}

.why-item h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin: 1px 0 5px;
}

.why-item p {
    font-size: 13.8px;
    line-height: 1.55;
    color: var(--muted);
}

.why-visual {
    background: linear-gradient(145deg, #146ef5, #0b4fb8);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--sh-md);
}

.suite-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(10, 27, 61, 0.16);
}

.suite-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
}

.suite-top b {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--navy);
}

.suite-top span {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--blue);
    background: #eef4ff;
    padding: 5px 9px;
    border-radius: 100px;
}

.suite-grid {
    display: grid;
    gap: 10px;
    padding: 18px 0;
}

.suite-module {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 11px;
    align-items: center;
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 11px 12px;
}

.suite-mark,
.suite-plus {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #eef4ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
}

.suite-module b {
    display: block;
    font-size: 12.8px;
    color: var(--navy);
}

.suite-module small {
    display: block;
    font-size: 10.5px;
    color: var(--faint);
    margin-top: 1px;
}

.suite-module.muted {
    border-style: dashed;
    background: var(--paper);
}

.suite-module.muted .suite-plus {
    font-size: 18px;
    background: var(--mist);
    color: var(--faint);
}

.suite-foot {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--rule);
}

.suite-foot span {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--muted);
}

/* ---------- one account ---------- */
.one {
    background: var(--card);
    text-align: center;
}

.one h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(32px, 4.4vw, 50px);
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 18px;
}

.one p.big {
    font-size: 16.5px;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.one-chips {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.one-chip {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 13px;
    padding: 20px 26px;
    box-shadow: var(--sh-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 11px;
}

.one-chip svg {
    flex-shrink: 0;
}

.one-note {
    margin-top: 34px;
    font-size: 14px;
    font-style: italic;
    color: var(--faint);
}

/* ---------- roadmap ---------- */
.road {
    background: var(--navy);
}

.road .sec-title {
    color: #fff;
}

.road .kicker {
    color: #7fb0ff;
}

.road .sec-intro {
    color: #afbdd8;
}

.road-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.road-card {
    background: var(--navy2);
    border: 1px solid #203a66;
    border-radius: 13px;
    padding: 24px;
}

.road-card h4 {
    font-family: var(--serif);
    font-size: 16.5px;
    font-weight: 600;
    color: #fff;
    margin: 14px 0 7px;
}

.road-card p {
    font-size: 12.8px;
    color: #a9b6d2;
    line-height: 1.5;
}

.road-foot {
    margin-top: 32px;
    font-size: 14px;
    font-style: italic;
    color: #7fb0ff;
}

/* ---------- firms ---------- */
.firm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.firm-card {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 26px;
    transition: all 0.22s;
}

.firm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--blue);
}

.firm-card h4 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin: 16px 0 7px;
}

.firm-card p {
    font-size: 13.2px;
    color: var(--muted);
    line-height: 1.5;
}

.firm-note {
    max-width: 760px;
    margin: 34px auto 0;
    text-align: center;
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
    line-height: 1.55;
    color: var(--muted);
}

/* ---------- voices ---------- */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.voice {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--sh-sm);
    min-height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.voice p {
    font-family: var(--serif);
    font-size: 15.5px;
    font-style: italic;
    line-height: 1.5;
    color: var(--navy);
    margin-bottom: 22px;
}

.voice-who {
    display: flex;
    align-items: center;
    gap: 11px;
}

.voice-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.voice-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
}

.voice-role {
    font-size: 12px;
    color: var(--faint);
}

/* ---------- faq ---------- */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--rule);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 4px;
    text-align: left;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.faq-q:hover {
    color: var(--blue);
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--blue);
    border-radius: 2px;
    transition: transform 0.25s;
}

.faq-icon::before {
    top: 9px;
    left: 2px;
    right: 2px;
    height: 2px;
}

.faq-icon::after {
    left: 9px;
    top: 2px;
    bottom: 2px;
    width: 2px;
}

.faq-item.open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-a-inner {
    padding: 0 4px 22px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 660px;
}

/* ---------- demo ---------- */
.demo {
    background: var(--mist);
}

.demo-box {
    background: linear-gradient(160deg, #0a1b3d 0%, #143063 100%);
    border-radius: 22px;
    padding: 56px;
    position: relative;
    overflow: hidden;
}

.demo-box::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -8%;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(20, 110, 245, 0.35),
            transparent 65%);
    pointer-events: none;
}

.demo-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.demo-copy .kicker {
    color: #7fb0ff;
}

.demo-copy h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 14px;
}

.demo-copy p {
    font-size: 15.5px;
    color: #afbdd8;
    line-height: 1.6;
}

.demo-form {
    background: var(--card);
    border-radius: 15px;
    padding: 28px;
    box-shadow: var(--sh-md);
}

.demo-form h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.demo-form .sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
}

.field {
    margin-bottom: 13px;
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 5px;
}

.field input,
.field select {
    width: 100%;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
    padding: 10px 12px;
    border: 1px solid var(--rule);
    border-radius: 9px;
    background: var(--paper);
    transition:
        border-color 0.18s,
        box-shadow 0.18s;
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(20, 110, 245, 0.1);
}

.form-btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.form-btn:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.form-note {
    margin-top: 12px;
    font-size: 11.5px;
    color: var(--faint);
    text-align: center;
}

.form-note.error {
    color: #b42318;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-success {
    display: none;
    text-align: center;
    padding: 26px 8px;
}

.form-success.show {
    display: block;
}

.form-success h3 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--navy);
    margin: 14px 0 6px;
}

.form-success p {
    font-size: 13.5px;
    color: var(--muted);
}

footer {
    background: var(--navy);
    color: #fff;
    padding: 56px 0 28px;
}

.foot-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-brand .logo {
    color: #fff;
    margin-bottom: 14px;
}

.foot-brand p {
    font-size: 13.5px;
    color: #8a97b6;
    line-height: 1.6;
    max-width: 280px;
}

.foot-col h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7fb0ff;
    margin-bottom: 14px;
}

.foot-col a {
    display: block;
    font-size: 13.5px;
    color: #afbad0;
    margin-bottom: 9px;
    transition: color 0.18s;
}

.foot-col a:hover {
    color: #fff;
}

.foot-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    gap: 14px;
    flex-wrap: wrap;
}

.foot-bot p {
    font-size: 12.5px;
    color: #6e7c9c;
}

.foot-bot .legal {
    display: flex;
    gap: 20px;
}

.foot-bot .legal a {
    font-size: 12.5px;
    color: #8a97b6;
}

/* ---------- readability ---------- */
body {
    font-size: 16px;
}

.nav-links a {
    font-size: 15px;
}

.nav-links a,
.drawer>a {
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.hero-sub {
    font-size: clamp(17px, 1.8vw, 19px);
}

.hero-note {
    font-size: 14px;
}

.trust-label,
.kicker {
    font-size: 13px;
}

.pain-card p {
    font-size: 15px;
    line-height: 1.6;
}

.pain-foot {
    font-size: 15px;
}

.appr-item {
    font-size: 15.5px;
    line-height: 1.55;
}

.appr-foot {
    font-size: 15px;
}

.mod-copy p.lead {
    font-size: 16.5px;
}

.mod-feat,
.mod-cta {
    font-size: 15px;
}

.one p.big {
    font-size: 17px;
}

.one-chip {
    font-size: 14.5px;
}

.one-note,
.road-foot {
    font-size: 15px;
}

.road-card p {
    font-size: 14px;
    line-height: 1.6;
}

.firm-card p {
    font-size: 14.5px;
    line-height: 1.6;
}

.firm-note {
    font-size: 17.5px;
}

.voice p {
    font-size: 16.5px;
    line-height: 1.6;
}

.voice-name {
    font-size: 14px;
}

.voice-role {
    font-size: 13px;
}

.faq-q {
    font-size: 16.5px;
}

.faq-a-inner {
    font-size: 15.5px;
    line-height: 1.7;
}

.why-item p {
    font-size: 14.5px;
    line-height: 1.65;
}

.demo-copy p {
    font-size: 16px;
}

.demo-form .sub {
    font-size: 14px;
}

.field label {
    font-size: 13px;
}

.field input,
.field select {
    font-size: 15px;
    padding: 11px 12px;
}

.form-note {
    font-size: 12.5px;
}

.form-success p {
    font-size: 14.5px;
}

.foot-brand p,
.foot-col a {
    font-size: 14.5px;
}

.foot-col h5 {
    font-size: 12.5px;
}

.foot-bot p,
.foot-bot .legal a {
    font-size: 13px;
}

.drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.drawer.open {
    transform: none;
}

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 30px;
    color: var(--navy);
    cursor: pointer;
    line-height: 1;
}

.drawer a {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--navy);
    padding: 13px 0;
    border-bottom: 1px solid var(--mist);
}

.drawer .btn {
    margin-top: 22px;
    justify-content: center;
}

@media (max-width: 920px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid,
    .appr-grid,
    .mod-row,
    .demo-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .mod-row.flip .mod-copy {
        order: 1;
    }

    .mod-row.flip .mod-visual {
        order: 2;
    }

    .pain-grid,
    .voice-grid {
        grid-template-columns: 1fr;
    }

    .road-grid,
    .firm-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .demo-box {
        padding: 38px 26px;
    }

    .sec {
        padding: 72px 0;
    }

    .hero {
        padding: 120px 0 56px;
    }

    .thali-box {
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .wrap {
        padding: 0 18px;
    }

    .road-grid,
    .firm-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .foot-top {
        grid-template-columns: 1fr;
    }

    .one-chips {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .an,
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}


/* my css custom */
body .trust-logos .swiper-wrapper{
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  transition-duration: linear !important;
  gap:40px;
}
body .trust-logos img {
    filter: grayscale(100) saturate(0.1);
}
body .trust-logos img:hover{
	filter: none;
} 
.hpx-rings .hpx-ring-accent {
    animation: line_an alternate 6s linear infinite;
}

@keyframes line_an {
    0% {
        transform: rotateZ(40deg);
    }

    100% {
        transform: rotateZ(-40deg);
    }
}

.lp-hero-cta-row a {
    padding: 13px 24px;
    font-size: 18px;
}

.why-we{
    padding: 80px 0;
    text-align: center;
}

.headline {
    margin: 15px 0 48px;
  }
 
  .why-we-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
  }
 
  @media (max-width: 900px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
  }
 
  @media (max-width: 560px) {
    .grid { grid-template-columns: 1fr; }
    .section { padding: 48px 16px 64px; }
  }
 
  .card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(20, 19, 26, 0.04), 0 8px 24px rgba(20, 19, 26, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
  }
 
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(20, 19, 26, 0.06), 0 16px 32px rgba(20, 19, 26, 0.08);
  }
 
  .card-top {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      overflow: hidden;
      color: #fff;
    }
    .card-top img{
        width: 100%;
    }
 
  .card-top .icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .card-top .icon-wrap svg {
    width: 34px;
    height: 34px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
  }
 
  .card-top .label {
    font-weight: 700;
    font-size: 1.02rem;
    z-index: 2;
  }
 
  .card-body {
    padding: 22px 22px 26px;
  }
 
  .card-body h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    font-weight: 700;
  }
 
  .card-body p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.5;
    color: var(--sub);
  }
 
  /* card color themes */
  .theme-purple { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
  .theme-cyan   { background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)); }
  .theme-amber  { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); }
  .theme-green  { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
 
  /* decorative blobs + sparkles */
  .blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
  }
  .blob.b1 { width: 90px; height: 90px; top: -30px; left: -30px; }
  .blob.b2 { width: 70px; height: 70px; bottom: -25px; right: -20px; }
 
  .sparkle {
    position: absolute;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
  }
  .sparkle.s1 { top: 14px; right: 16px; }
  .sparkle.s2 { bottom: 14px; left: 16px; font-size: 0.7rem; }