* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ===============================
   TOKENS
================================ */
:root {
    --ink: #1a1a1a;
    --bg: #f8fafc;
    --card: #ffffff;
    --maroon: #800000;
    --coral: #f87171;
    --navy: #1e3a8a;
    --body-text: #475569;
    --line: #e4e2df;
    --radius-lg: 16px;
    --radius-md: 10px;
    --focus-ring: rgba(128, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

body {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

img {
    max-width: 100%;
}
/* ===============================
   NAVBAR — two-tone split
================================ */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='navCurve' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23f87171'/%3E%3Cstop offset='0.5' stop-color='%23800000'/%3E%3Cstop offset='1' stop-color='%23800000'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M380,0 C460,0 420,100 540,100 L1000,100 L1000,0 Z' fill='url(%23navCurve)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
}
.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 2rem;
    position: relative;
}
.brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: #111;
}
.brand::after { display: none; }
.brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 0;
}
.brand span {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    font-size: 14.5px;
    letter-spacing: -.015em;
    color: #111;
    white-space: nowrap;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}
nav a {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    position: relative;
    cursor: pointer;
    letter-spacing: -.01em;
}
nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    height: 2px;
    width: 100%;
    left: 0;
    background-color: rgba(255,255,255,0.65);
    transition: transform 0.25s ease-in-out;
    transform: scaleX(0);
}
nav a:hover { color: white; }
nav a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: white; font-weight: normal; }
.nav-links a.active::after {
    background-color: rgba(255,255,255,0.75);
    transform: scaleX(1);
}
/* Download CTA — plain link style */
.nav-cta {
    color: rgba(255,255,255,0.9) !important;
    font-weight: normal !important;
    font-size: 14.5px!important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    letter-spacing: -.01em !important;
    transition: color 0.2s ease !important;
}
.nav-cta:hover {
    color: white !important;
    background: none !important;
    transform: none !important;
    box-shadow: none !important;
}
.nav-cta::after {
    display: block !important;
    background-color: rgba(255,255,255,0.65) !important;
}
#menu-toggle { display: none; }
.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 26px;
    height: 20px;
    cursor: pointer;
}
.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    transition: transform .3s ease, opacity .3s ease;
}
#menu-toggle:checked ~ .menu-icon span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#menu-toggle:checked ~ .menu-icon span:nth-child(2) { opacity: 0; }
#menu-toggle:checked ~ .menu-icon span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
/* ===============================
   HERO — redesigned
================================ */
.hero-wrap {
    position: relative;
    background:
        radial-gradient(circle at 88% 12%, rgba(128,0,0,.05), transparent 50%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    padding: 8vh 6% 6vh;
    overflow: hidden;
}
/* ===============================
   HERO IMAGE BADGE (gold medallion seal)
================================ */
.hero-seal {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 96px;
    height: 96px;
    z-index: 6;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}
.hero-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: center;
}
.hero-copy {
    text-align: left;
    min-width: 0;
}
.hero-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: 0 0 1.5rem;
    border-radius: 22px;
    padding: .3rem clamp(.75rem, 2vw, 1.1rem) .35rem;
    box-sizing: border-box;
}
.hero-badge-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    gap: clamp(.5rem, 1.5vw, .75rem);
    overflow: hidden;
}
.hero-badge-text {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    height: 30px;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(12px, 1.5vw, 13px);
    font-weight: normal;
    letter-spacing: .02em;
    color: var(--maroon);
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-badge-text i {
    flex-shrink: 0;
}
.hero-badge-divider {
    width: 1px;
    height: 18px;
    flex-shrink: 0;
    background: rgba(128, 0, 0, .18);
}
.hero-badge-countries {
    display: flex;
    align-items: center;
    list-style: none;
    height: 30px;
    margin: 0;
    padding: .25rem 0;
    gap: .35rem;
    flex-shrink: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.hero-badge-countries::-webkit-scrollbar {
    display: none;
}
.hero-badge-countries li {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .2s ease, transform .2s ease;
    transform-origin: center;
    flex-shrink: 0;
}
.hero-badge-countries li:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
    z-index: 2;
}
.hero-badge-countries img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 480px) {
    .hero-badge {
        padding-left: .65rem;
    }
    .hero-badge-row {
        gap: .35rem;
    }
    .hero-badge-text {
        font-size: 11.5px;
        gap: .3rem;
    }
    .hero-badge-countries li {
        width: 20px;
        height: 20px;
    }
}
.hero-badge-caption {
    font-size: 10px;
    font-weight: normal;
    letter-spacing: .02em;
    color: var(--body-text);
    margin: .1rem 0 0;
    line-height: 1.2;
    width: 100%;
    text-align: center;
}
.hero-title {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -.02em;
    background: linear-gradient(20deg, var(--coral), var(--maroon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 1.75rem;
}
@keyframes blob-shift {
    0%, 100% { border-radius: 42% 58% 61% 39% / 41% 44% 56% 59%; }
    50%      { border-radius: 58% 42% 39% 61% / 55% 60% 40% 45%; }
}
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.himg {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* no card/glass background — devices sit cleanly on the page */
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}
.himg img {
    position: relative;
    z-index: 2;
    object-fit: contain;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 22px 34px rgba(0,0,0,.20));
}
.subheading {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}
.hero-copy .content {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    text-align: left;
    visibility: visible;
    opacity: 1;
    color: var(--body-text);
}
@keyframes ticker {
    25%, 45% {
        transform: translateY(-100%);
    }
    50%, 70% {
        transform: translateY(-200%);
    }

}

/* ===============================
   HERO TEXT TICKER
================================ */
.subheading-s1 {
    position: relative;
    height: 4.2rem;
    max-width: 620px;
    margin: 0;
    overflow: hidden;
}
.hero-copy .content ol {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-copy .content ol li {
    grid-area: 1 / 1;
    inset: 0;    
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    opacity: 0;
    transform: translateX(16px);
    filter: blur(6px);
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
    line-height: 1.55;
    color: var(--body-text);
    padding: 0;
    white-space: normal;
    transition: opacity .6s ease, transform .6s ease, filter .6s ease;
    pointer-events: none;
}
.hero-copy .content ol li.active {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    pointer-events: auto;
}

.hero-copy .content ol li strong {
    font-weight: normal;
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
    margin-right: .25rem;
}
.text-sep {
    color: var(--coral);
    font-weight: normal;
    margin: 0 .3rem;
}

/* Ticker progress dots */
.ticker-dots {
    display: flex;
    gap: 7px;
    justify-content: flex-start;
    margin-top: .85rem;
}
.ticker-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 2px;
    background: #d1d5db;
    transform: scale(1);
    transition: background .3s ease, transform .3s ease;
}
.ticker-dots span.active {
    background: var(--maroon);
    transform: scale(1.5);
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: 2.25rem;
}
.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
    color: var(--maroon);
    text-decoration: none;
    padding: .8rem 1.3rem;
    border: 1px solid var(--maroon);
    border-radius: 30px;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}
.hero-secondary-btn:hover {
    background: var(--maroon);
    color: white;
    transform: translateY(-2px);
}

.hero-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    margin: 4rem auto 0;
    max-width: 1180px;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border-radius: 16px;
    overflow: hidden;
}
.hero-footer p {
    font-size: 14.5px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: normal;
    margin-top: .2rem;
}
.hero-footer h1 {
    font-size: 22px;
    font-weight: normal;
    background: linear-gradient(135deg, #b91c1c, var(--maroon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.download-btn {
    margin: 0;
    text-align: left;
}
.download-btn a {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: linear-gradient(135deg, #b91c1c, var(--maroon));
    color: white;
    text-decoration: none;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
    padding: .85rem 1.5rem;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 18px rgba(128,0,0,.35);
    transition: transform .25s ease, box-shadow .25s ease;
    letter-spacing: -.01em;
}
.download-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(128,0,0,.45);
}
.download-btn img { display: none; }

@media screen and (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-copy,
    .hero-copy .content,
    .hero-cta-row,
    .subheading,
    .subheading-s1,
    .hero-copy .content ol li,
    .ticker-dots {
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
        align-items: center;
    }
    .subheading-s1 {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    .hero-title {
        font-size: 22px;
    }
    .download-btn {
        text-align: center;
    }
    .himg {
        height: 340px;
        padding: 1.5rem;
    }
    .hero-visual {
        order: -1;
    }
    .hero-webapp-btn {
        text-align: center;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-wrap {
        padding: 5vh 6% 4vh;
    }
    .hero-title {
        font-size: 22px;
    }
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .hero-cta-row .download-btn a,
    .hero-secondary-btn {
        justify-content: center;
        width: 100%;
    }
    .himg {
        height: 220px;
        padding: 1rem;
    }
}
/* ===============================
   STAT BOXES (+200 Clients, etc.)
   — responsive flex layout with a
   scroll-triggered "swipe up" reveal
================================ */
.stat-box {
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.4rem 2.5rem;
    position: relative;
    min-width: 0;
}

.tumbler-num {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 22px !important;
    font-weight: normal !important;
    line-height: 1 !important;
    margin: 0 !important;
}

/* The window that clips extra numbers */
.digit-box {
    display: inline-block !important;
    height: 1em !important;
    width: 0.65em !important;
    overflow: hidden !important;
    position: relative !important;
    vertical-align: middle !important;
}

/* The vertical text column */
.strip {
    display: block !important;
    white-space: pre-line !important; /* Stack numbers vertically */
    width: 100% !important;
    line-height: 1em !important;
    text-align: center !important;
    position: absolute !important;
    top: 0;
    left: 0;
    animation-duration: 1.5s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: forwards !important; /* Locks state at end of roll */
}

.plus-sign {
    display: inline-block !important;
    line-height: 1em !important;
    vertical-align: middle !important;
}

/* Rolling animations (driven by tumbler.js) */
.roll-0 { transform: translateY(0); }
.roll-1 { animation-name: tumble1; }
.roll-2 { animation-name: tumble2; }
.roll-5 { animation-name: tumble5; }

@keyframes tumble1 {
    0%   { top: 0; }
    100% { top: -1em; }
}
@keyframes tumble2 {
    0%   { top: 0; }
    100% { top: -2em; }
}
@keyframes tumble5 {
    0%   { top: 0; }
    100% { top: -5em; }
}
.main {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding: 0 15%;
}
/* ===============================
   LOGO WALL / SCROLLING LOGO CAROUSEL
   (replaces the former testimonial carousel)
================================ */
.logo-wall {
    color: #0d0d0d;
    padding: 5vh 0 6vh;
    position: relative;
    overflow: hidden;
}
.logo-wall-head {
    text-align: center;
    padding: 0 4vw;
}
.logo-wall-head .eyebrow {
    display: block;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    padding-top: 1rem;
}
.logo-marquee {
    margin-top: 2.5rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 4.5rem;
    animation: logo-scroll 32s linear infinite;
}
.logo-item {
    flex: 0 0 auto;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-item img {
    height: 100%;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    /* source files are already flattened to solid black-on-transparent;
       this filter guarantees pure black even if a source PNG slips in with any tint */
    filter: brightness(0) saturate(100%);
    opacity: .68;
    transition: opacity .2s ease;
}
@keyframes logo-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
    .logo-marquee {
        overflow-x: auto;
    }
}
.carousel {
    margin: 3rem auto;
    display: flex;
    overflow-y: hidden;
    gap: 1em;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-marker-group: after;
}
.carousel::scroll-marker-group {
    display: flex;
    justify-content: center;
    gap: .5em;
}
.card::scroll-marker {
    content: '';
    height: .7em;
    width: .7em;
    border-radius: 50%;
}
.card::scroll-marker:target-current {
    background-color: white;
}
.carousel::-webkit-scrollbar {
    display: none;
}
.carousel::scroll-button(right) {
    content: '→';
    border: none;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 22px;
    color: white;
    background: transparent;
    height: 40px;
    width: 40px;
    padding-bottom: .1em;
    cursor: pointer;
}
.carousel::scroll-button(left) {
    content: '←';
    border: none;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 22px;
    color: white;
    background: transparent;
    height: 40px;
    width: 40px;
    padding-bottom: .1em;
    cursor: pointer;
}
.carousel::scroll-button(left):disabled, .carousel::scroll-button(right):disabled {
    cursor: auto;
}
.card {
    flex: 0 0 26em;
    min-height: 18em;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 2rem 1.75rem;
    border-radius: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    position: relative;
}
.card::before {
    content: "\201C";
    font-size: 5rem;
    line-height: 1;
    color: var(--coral);
    opacity: .25;
    position: absolute;
    top: .75rem;
    left: 1.25rem;
    font-family: Georgia, serif;
}
.card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #d1d5db;
    padding-top: 2.5rem;
}
.card h1 {
    font-size: 14.5px;
    font-weight: normal;
    color: white;
    margin-top: 1.25rem;
    line-height: 1.4;
}
.card h1 span {
    color: #9ca3af;
    font-size: 14.5px;
    font-weight: normal;
    display: block;
    margin-top: .15rem;
}
/* ===============================
   PLATFORMS SECTION
================================ */
.platforms {
    background: #f3f3f5;
    padding: 5vh 8% 8vh;
    border-top: 1px solid #e8e8ec;
    border-bottom: 1px solid #e8e8ec;
}
.platforms-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.eyebrow {
    display: block;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: maroon;
    margin-bottom: .75rem;
}
.platforms-head h2 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    font-size: 22px;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(20deg, lightcoral, maroon);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: .75rem;
}
.platforms-head p {
    color: rgb(90, 90, 90);
    font-size: 14.5px;
    line-height: 1.6;
}
.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.platform-card {
    background: #141414;
    color: white;
    border-radius: 20px;
    padding: 2.75rem 2.25rem;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.platform-card:hover {
    border-color: maroon;
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(128, 0, 0, .28);
}
.platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(248, 113, 113, .12);
    color: lightcoral;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14.5px;
    margin: 0 auto 1rem;
    transition: background .35s ease, color .35s ease;
}
.platform-card:hover .platform-icon {
    background: maroon;
    color: white;
}
.platform-card h4 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
}
.platform-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 14.5px;
    line-height: 1.65;
    color: #b8b8b8;
    margin-top: 0;
    transition: max-height .4s ease, opacity .3s ease, margin-top .3s ease;
}
.platform-card:hover .platform-desc {
    max-height: 250px;
    opacity: 1;
    margin-top: 1rem;
}
/* ===============================
   PRICING SECTION
================================ */
.pricing-section {
    background: var(--bg);
    padding: 7vh 8% 9vh;
}
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: .25rem;
    background: #eceef1;
    border-radius: 999px;
    padding: .3rem;
    width: fit-content;
    margin: 0 auto 3rem;
}
.pricing-tabs input {
    display: none;
}
.pricing-tabs label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.4rem;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: normal;
    color: #6b7280;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
    white-space: nowrap;
}
.pricing-tabs input:checked + label {
    background: white;
    color: var(--ink);
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.pricing-panel {
    display: block;
}
.pricing-tabs:has(input:checked) ~ .pricing-panel {
    display: none;
}
.pricing-tabs:has(#tab-single:checked) ~ #panel-single {
    display: block;
}
.pricing-tabs:has(#tab-multi:checked) ~ #panel-multi {
    display: block;
}
.pricing-tabs:has(#tab-addons:checked) ~ #panel-addons {
    display: block;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
}
.pricing-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
}
.pricing-grid--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
}
.pricing-grid--split {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
}
.pricing-grid--split .price-card {
    flex: 0 1 340px;
    min-width: 260px;
}
#panel-addons .pricing-grid--three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 980px;
}
#panel-addons .pricing-grid--three .price-card {
    flex: 0 1 280px;
}
.price-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2.25rem 1.75rem 1.75rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0,0,0,.08);
}
.price-card--featured {
    border-color: var(--maroon);
    box-shadow: 0 16px 30px rgba(128,0,0,.14);
}
.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--maroon);
    color: white;
    font-size: 14.5px;
    font-weight: normal;
    padding: .3rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}
.price-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(128, 0, 0, .08);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14.5px;
    margin: 0 auto 1rem;
}
.price-card h3 {
    font-size: 14.5px;
    font-weight: normal;
    color: var(--ink);
    margin-bottom: .85rem;
}
.price-amount {
    font-size: 22px;
    font-weight: normal;
    background: linear-gradient(20deg, var(--coral), var(--maroon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.price-period {
    font-size: 14.5px;
    color: #9ca3af;
    margin-bottom: 1rem;
}
.price-desc {
    font-size: 14.5px;
    color: var(--body-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.price-cta {
    display: block;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: normal;
    padding: .75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--line);
    color: var(--ink);
    margin-bottom: 1.5rem;
    transition: all .2s ease;
}
.price-card--featured .price-cta {
    background: var(--maroon);
    color: white;
    border-color: var(--maroon);
}
.price-cta:hover {
    border-color: var(--maroon);
    color: var(--maroon);
}
.price-card--featured .price-cta:hover {
    background: #600000;
    color: white;
}
.price-features {
    list-style: none;
    text-align: left;
}
.price-features li {
    position: relative;
    padding: .5rem 0 .5rem 1.5rem;
    font-size: 14.5px;
    color: var(--body-text);
    border-top: 1px solid var(--line);
}
.price-features li:first-child {
    border-top: none;
}
.price-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: .65rem;
    color: var(--maroon);
    font-size: 14.5px;
}
.pricing-footnote {
    max-width: 640px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 14.5px;
    color: var(--body-text);
    line-height: 1.6;
}

footer {
    background-color: rgb(18, 18, 19);
    padding: 3vh 5vw 2vh;
    color: gray;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}
.f1 ul {
    list-style: none;
}
footer li {
    padding: .3rem 0;
}
.f1 a {
    color: gray;
    text-decoration: none;
    transition: color .2s ease;
    font-size: 14.5px;
}
.f1 a:hover {
    color: white;
    text-decoration: underline;
}
.current-page {
    color: lightcoral;
    font-size: 14.5px;
}
.ft {
    position: relative;
    display: inline-block;
    font-weight: normal;
    color: white;
    font-size: 14.5px;
    padding-bottom: .4rem;
    margin-bottom: .4rem;
}
.ft::after {
    content: "";
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 40%;
    left: 0;
    background-color: maroon;
}
footer p {
    margin-top: 1vh;
    text-align: center;
    width: 100%;
    color: #888;
    font-size: 14.5px;
}
.case {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: rgb(18, 18, 19);
}
.ftop {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.icon {
  position: relative;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  text-decoration: none;
  animation: wave 4s ease-in-out infinite;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.icon::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: whitesmoke;
  transform: translateX(-50%);
  z-index: -1;
}

.icon:hover {
  transform: scale(1.1);
  background-color: maroon;
  color: white;
}

.instagram {
  animation-delay: 1s;
}

.x {
  animation-delay: 1.5s;
}

.codepen {
  animation-delay: 2s;
}

.linkedin {
  animation-delay: 2.5s;
}

.github {
  animation-delay: 3s;
}

@keyframes wave {
  0%, 100% {
    transform: translate(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(5px);
  }
  75% {
    transform: translateY(-10px);
  }
}

/* ===============================
   RESPONSIVE ONLY
================================ */

@media screen and (max-width:1240px) {
    .latest-version{
        width:210px;
    }
}

@media screen and (max-width: 1100px){
    .nav-links{
        gap: 1.5rem;
    }
}

@media screen and (max-width: 992px){
    .hero .content ol li {
        white-space: wrap;
    }
    .nav-links{
        gap: 1.25rem;
    }

    .hero{
        margin:5vh 8%;
    }

    .latest-version{
        width:210px;
    }

    .himg{
        height:350px;
    }

    .platform-grid{
        grid-template-columns:1fr;
    }

    .pricing-grid,
    .pricing-grid--three{
        grid-template-columns:1fr 1fr;
    }

    .pricing-grid--split .price-card{
        flex-basis: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .main{
        padding:0 5%;
    }

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

    .grid-2{
        grid-template-columns:1fr;
    }

    .m4{
        grid-template-columns:1fr;
    }

    .plans{
        overflow-x:auto;
    }

    .plans table{
        min-width:900px;
    }

}

/* Phones */
@media screen and (max-width:768px){

    .hero{
        margin:0;
        padding:2rem;
    }

    .latest-version{
        width:220px;
    }

    .hero .content{
        font-size: 14.5px;
    }

    .hero p{
        font-size: 14.5px;
    }

    .main{
        padding:20px;
    }

    .grid-1,
    .grid-2,
    .table-1,
    .table-2,
    .m4,
    .platform-grid,
    .pricing-grid,
    .pricing-grid--two,
    .pricing-grid--three{
        grid-template-columns:1fr;
    }

    .pricing-grid--split .price-card{
        max-width: none;
    }

    .pricing-tabs{
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        gap: .4rem;
        box-sizing: border-box;
    }

    .pricing-tabs label {
        padding: .55rem .85rem;
        font-size: 13px;
        white-space: normal;
        text-align: center;
        gap: .35rem;
    }

    .content-a{
        grid-template-rows:auto;
    }

    .himg{
        height:260px;
    }

    .hero-seal{
        display:none;
    }

    .subheading{
        grid-template-columns:1fr;
        text-align:center;
        gap:.75rem;
    }

    .subheading img{
        width:70px;
        margin:auto;
    }

    .stat-box{
        padding:1.2rem 1.25rem;
    }

    .plans{
        overflow-x:auto;
    }

    .plans table{
        min-width:900px;
    }

    .carousel .card{
        flex:0 0 90%;
    }

    .logo-item {
        height: 34px;
    }

    .logo-item img {
        max-width: 120px;
    }

    .logo-track {
        gap: 3rem;
        animation-duration: 24s;
    }

    .m4 table{
        width: 300px;
    }

    .m4 h1 {
        font-size: 14.5px;
    }

}
@media screen and (max-width:480px){

    .hero{
        padding:15px;
    }

    .hero .content{
        font-size: 14.5px;
    }

    .hero .subheading{
        font-size: 14.5px;
    }

    .main h3{
        font-size: 22px;
    }

    .card{
        flex:0 0 100%;
    }

    .platform-card{
        padding:1.5rem 1.25rem;
    }

    .himg{
        height:200px;
    }

    .subheading img{
        width:56px;
    }

    .hero-footer{
        flex-direction: column;
    }

    .stat-box{
        padding: 1rem;
    }

    .hero a,
    .cta-1 a,
    .link-1 a,
    .g1 a{
        display:block;
        text-align:center;
    }

    .link-1 {
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: auto;
    }

    .link-1 a {
        width: 100px;
        margin: auto;
    }

    footer{
        padding:40px 20px;
    }

    .footer-links{
        grid-template-columns:1fr;
        text-align:center;
        gap:1.5rem;
    }

    .ft::after{
        left:50%;
        transform:translateX(-50%);
    }

    .m4 table{
        width: 100%;
        max-width:280px;
    }
}
#menu-toggle{
    display:none;
}

/* Hamburger button */
.menu-icon{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    width:26px;
    height:20px;
    cursor:pointer;
}
.menu-icon span{
    display:block;
    height:2px;
    width:100%;
    background-color:white;
    transition:transform .3s ease, opacity .3s ease;
}
#menu-toggle:checked ~ .menu-icon span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}
#menu-toggle:checked ~ .menu-icon span:nth-child(2){
    opacity:0;
}
#menu-toggle:checked ~ .menu-icon span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

/* Mobile navbar */
@media screen and (max-width:768px){
    nav { background: var(--maroon); }
    .brand span, .brand { color: white; }
    .nav-inner{ padding:.75rem 1.25rem; }
    .brand img{ width:28px; height:28px; }
    .brand span{ font-size: 14.5px; }
    .menu-icon{ display:flex; }
    .nav-links{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        flex-direction:column;
        align-items:center;
        gap:0;
        background-color:var(--maroon);
        box-shadow:0 16px 24px rgba(128,0,0,.25);
        border-radius:0 0 16px 16px;
        padding:.5rem 0 1rem;
    }
    #menu-toggle:checked ~ .nav-links{ display:flex; }
    .nav-links li{ width:100%; text-align:center; }
    .nav-links a{ display:block; padding:.9rem 1rem; }
    .nav-links li:not(:last-child) a{ border-bottom:1px solid rgba(255,255,255,0.12); }
}

@media screen and (max-width: 800px) {
  .icon::before {
    top: -40px;
    height: 40px;
  }
}

@media screen and (max-width: 450px) {
  .container {
    align-items: center;
    gap: 10px;
  }
  .icon {
    height: 60px;
    width: 60px;
    font-size: 22px;
  }
  .icon::before {
    top: -40px;
    height: 40px;
  }
  .case{
    height:auto;
    padding:20px 10px;
  }
}

@media screen and (max-width: 400px) {
  .icon {
    height: 50px;
    width: 50px;
    font-size: 22px;
  }
}

@media screen and (max-width: 330px) {
  .icon {
    height: 40px;
    width: 40px;
    font-size: 14.5px;
  }
}

/* ===============================
   TRY WEB APP BUTTON
================================ */
.hero-webapp-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
    color: var(--maroon);
    text-decoration: none;
    padding: .8rem 1.3rem;
    background: rgba(128, 0, 0, .07);
    border: 1px solid rgba(128, 0, 0, .25);
    border-radius: 30px;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}
.hero-webapp-btn:hover {
    background: var(--maroon);
    color: #fff;
    transform: translateY(-2px);
}

/* ===============================
   PLATFORM CARDS AS LINKS
================================ */
.platform-card {
    display: block;
    text-decoration: none;
    color: white;
    cursor: pointer;
}
.platform-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 14.5px;
    color: var(--coral);
    transition: max-height .4s ease, opacity .3s ease, margin-top .3s ease;
}
.platform-card:hover .platform-link {
    max-height: 40px;
    opacity: 1;
    margin-top: .9rem;
}