/* Minimal responsive styles for the static marketing site */
:root {
    --max: 1200px;
    --accent: linear-gradient(90deg, #222532, #645d76);
    --accent-solid: #3f51b5;
    --muted: #373e45;
    --muted-2: #4a4f56;
    --bg: linear-gradient(180deg, #f8fbff 0%, #f4f7ff 100%);
    --card: #ffffff;
    --glass: rgba(255, 255, 255, 0.6);
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
    line-height: 1.5;
    color: #0f172a;
    margin: 0;
    background: var(--bg);
}

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

.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(14, 22, 42, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

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

/* Ensure the brand link keeps the logo and title styling when wrapped in an anchor */
.brand-link {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.brand-link .site-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: inherit;
}

.brand-link:hover .site-title {
    opacity: 0.95;
}

.logo-wrap {
    height: 44px;
    width: 44px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.logo-img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.site-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.top-nav a {
    color: var(--muted);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    border: #fff 1px solid;
    cursor: pointer;
}

/* allow dropdown positioning in mobile */
.top-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px
}

/* Desktop: show links inline, hide mobile toggle */
.nav-toggle {
    display: none
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center
}

.nav-item {
    display: inline-block
}

.nav-cta {
    margin-left: 12px
}

.top-nav a:hover {
    border: #eeeeee 1px solid;
    background: #eeeeee;
}

.top-nav .btn {
    color: #fff;
}

.top-nav .btn:hover {
    background: #0a1426;
}

.hero {
    padding: 72px 0 56px;
    background: linear-gradient(180deg, rgba(124, 77, 255, 0.06), transparent);
    border-bottom: 1px solid rgba(14, 22, 42, 0.04);
}

/* Features page hero variant */
.features-hero {
    padding: 64px 0 48px;
    background: linear-gradient(180deg, rgba(244, 247, 255, 0.8), rgba(255, 255, 255, 0.9));
    border-bottom: 1px solid rgba(14, 22, 42, 0.04);
}

.features-hero h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.features-hero .lead {
    max-width: 880px;
    margin: 0 0 18px;
    font-size: 18px;
    color: var(--muted);
    text-align: left;
}

/* Feature groups on features page */
.feature-group {
    margin-bottom: 120px;
}

.feature-group h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 120px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    padding: 18px 12px;
    border-radius: 8px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(14, 22, 42, 0.04);
}

.feature-item h4 {
    margin: 0 0 6px;
    font-size: 16px;
}

/* Layout for feature item content + media */
.feature-content {
    min-width: 0;
    padding: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-column: 1;
    align-self: start;
    position: relative;
    z-index: 2;
}

.feature-media {
    /* place the screenshot full-width below the text */
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.feature-media img {
    width: 100%;
    height: auto;
    /* allow larger images to scale without being cropped */
    max-height: 720px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    background: rgba(250, 252, 255, 0.8);
    padding: 6px;
}

/* decorative graphic removed */

.feature-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.capabilities {
    margin: 8px 0 0 0;
    padding-left: 0;
    list-style: none !important;
    color: var(--muted-2);
    font-weight: 600;
}

.capabilities li {
    margin: 6px 0;
}

/* ensure no default list marker shows alongside emoji */
.capabilities,
.capabilities li {
    list-style: none;
}

.capabilities li::marker {
    color: transparent;
}

.feature-outcome {
    margin-top: 12px;
    color: var(--muted-2);
    font-style: italic;
}

@media (max-width: 900px) {
    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: flex-start;
    }

    .feature-media {
        display: block;
        width: 100%;
    }

    .feature-media img {
        width: 100%;
        height: auto;
        max-height: 420px;
    }

    /* Reset alternating swap on small screens so content always stacks first */
    .feature-list .feature-item:nth-child(even) .feature-content,
    .feature-list .feature-item:nth-child(even) .feature-media {
        grid-column: 1;
    }

    .feature-item {
        padding-left: 8px;
        padding-right: 8px;
    }

    /* move decorative graphic behind text on small screens */
    .feature-list .feature-item::before {
        position: absolute;
        left: 8px;
        right: 8px;
        top: 8px;
        height: 140px;
        grid-column: auto;
        grid-row: auto;
        opacity: 0.08;
        z-index: 0;
        filter: blur(6px);
    }
}

/* Alternate swap: even items show media on left, content on right */
.feature-list .feature-item .feature-content {
    grid-column: 1;
}

.feature-list .feature-item .feature-media {
    grid-column: 1 / -1;
}

/* decorative graphic removed */

.feature-item:last-child {
    border-bottom: none;
}

@media (max-width: 600px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
}

/* Final mobile overrides: ensure content stacks above media and cancel desktop swaps */
@media (max-width: 900px) {
    .feature-item {
        grid-template-columns: 1fr !important;
    }

    .feature-list .feature-item .feature-content {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .feature-list .feature-item .feature-media {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
}

.hero h2 {
    font-size: 32px;
    margin: 0 0 12px;
    line-height: 1.12;
}

.lead {
    color: var(--muted);
    margin: 0 0 20px;
    font-size: 16px;
}

.btn {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(63, 81, 181, 0.12);
}

/* Secondary button (outline) */
.btn-secondary {
    background: transparent;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.04);
    transform: translateY(-2px);
}

/* Simple fade-in utility */
.fade-in {
    animation: fadeUp .6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Soft floating for subtle motion on hero */
.float {
    animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Feature item entry animation and image hover polish */
@keyframes featureFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-list .feature-item {
    opacity: 0;
    transform: translateY(10px);
    animation: featureFade .56s cubic-bezier(.2, .9, .2, 1) forwards;
}

.feature-list .feature-item:nth-child(1) {
    animation-delay: 0.06s;
}

.feature-list .feature-item:nth-child(2) {
    animation-delay: 0.12s;
}

.feature-list .feature-item:nth-child(3) {
    animation-delay: 0.18s;
}

.feature-list .feature-item:nth-child(4) {
    animation-delay: 0.24s;
}

.feature-list .feature-item:nth-child(5) {
    animation-delay: 0.30s;
}

.feature-list .feature-item:nth-child(6) {
    animation-delay: 0.36s;
}

.feature-media img {
    transition: transform .36s ease, box-shadow .36s ease;
}

.feature-media img:hover,
.feature-media img:focus {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* Enhanced image effects: soft overlay and subtle lift on hover */
.feature-media {
    position: relative;
    overflow: visible;
}

.feature-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(15, 23, 42, 0.02));
    opacity: 0;
    transition: opacity .28s ease;
    pointer-events: none;
}

.feature-media:hover::after,
.feature-media:focus::after {
    opacity: 0.16;
}

.feature-media img {
    transition: transform .45s cubic-bezier(.2, .9, .2, 1), filter .45s ease, box-shadow .45s ease;
    transform-origin: center center;
    will-change: transform;
}

.feature-media:hover img,
.feature-media:focus img {
    transform: scale(1.035) translateY(-6px);
    filter: saturate(1.06) brightness(1.03);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

@media (prefers-reduced-motion: reduce) {

    .feature-list .feature-item,
    .feature-media img {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px
}

.store-badge img {
    height: 40px;
    display: block
}

.store-badge {
    display: inline-block
}

.features h2,
.features h3,
.seo h3,
.contact h3 {
    margin-top: 0
}

.features h2 {
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

@media (max-width: 1000px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-grid li {
    background: var(--card);
    border: 1px solid rgba(14, 22, 42, 0.04);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(14, 22, 42, 0.04);
}

/* Problems section tweaks */
.problems .feature-grid li {
    min-height: 110px;
}

.problems .feature-grid li h4 {
    margin: 0 0 8px;
}

.challenges-list {
    margin: 14px 0 0;
    padding-left: 0;
    list-style: none;
}

.challenges-list li {
    margin: 10px 0;
    color: var(--muted-2);
    font-weight: 600;
}

.unified-platform h2 {
    text-align: center;
}

.unified-platform .lead {
    margin: 0 0 14px;
}

.principles-list {
    margin: 12px 0 0;
    padding-left: 0;
    list-style: none;
}

.principles-list li {
    margin: 10px 0;
    color: var(--muted-2);
    font-weight: 600;
}

.strategic-advantage h2 {
    text-align: center;
}

.strategic-advantage .lead {
    margin: 0 0 12px;
}

.strategic-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 14px;
}

.pillar-item {
    background: var(--card);
    border: 1px solid rgba(14, 22, 42, 0.04);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(14, 22, 42, 0.04);
}

.pillar-item h4 {
    margin: 0 0 8px;
}

.pillar-item p {
    margin: 0;
    color: var(--muted);
}

.difference-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
}

.difference-table {
    width: 100%;
    border-collapse: collapse;
}

.difference-table th,
.difference-table td {
    border: 1px solid rgba(14, 22, 42, 0.04);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.difference-table th {
    background: rgba(14, 22, 42, 0.02);
}

.difference-table ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.difference-table li {
    margin: 6px 0;
    color: var(--muted-2);
    font-weight: 600;
}

@media (max-width: 900px) {
    .strategic-pillars {
        grid-template-columns: 1fr;
    }

    .difference-table {
        min-width: 700px;
    }
}

/* Solutions section styling */
.solutions h2 {
    text-align: center;
}

.solutions .lead {
    text-align: center;
    margin-bottom: 18px;
}

.solutions .feature-grid li {
    min-height: 100px;
}

.solutions .feature-grid li .card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.solutions .feature-grid li .card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Leadership section styling */
.leadership h2 {
    text-align: center;
}

.leadership .lead {
    text-align: center;
    margin-bottom: 14px;
}

/* New leadership split layout (list + visual) */

.leadership-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    margin-top: 12px;
    padding: 8px 0;
}

.leadership-media {
    grid-column: 1 / -1;
}

.leadership-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
}

.leadership-item {
    display: flex;
    flex: 1 1 0px;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    min-width: 0;
}

.leadership-item .item-icon {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: inherit;
    background: transparent;
}

.item-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

/* Small descriptor used inside pricing cards for storage / counts */
.plan-note {
    font-size: 13px;
    color: var(--muted-2);
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-note {
    font-size: 13px;
    color: var(--muted-2);
    margin-bottom: 6px;
    font-weight: 400;
    text-align: center;
}

/* Pricing layout and tweaks */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.pricing-card {
    background: var(--card);
    border: 1px solid rgba(14, 22, 42, 0.04);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(14, 22, 42, 0.04);
}

.pricing-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 12px;
}

.price-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.price-prefix {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: none;
}

.price-value {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.price-note {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.pricing-hint {
    text-align: center;
    font-size: 14px;
    color: var(--muted-2);
    margin-top: 8px;
    font-weight: 600;
}

.pricing-cta {
    text-align: center;
    margin: 12px 0;
}

.pricing-card ul {
    margin-top: 12px;
    padding-left: 0;
    list-style: none;
    color: var(--muted-2);
}

.pricing-card ul li {
    position: relative;
    padding-left: 32px;
    margin: 12px 0;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    line-height: 1;
}

/* Inline note displayed below the list item text */
.note-inline {
    display: block;
    width: 100%;
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted-2);
    font-weight: 600;
    line-height: 1.2;
}

.pricing-badge {
    display: inline-block;
    background: rgba(255, 235, 205, 0.9);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 18px;
    }

    .price-value {
        font-size: 18px;
    }
}

/* Body of each leadership item: allow flexible width and tidy typography */
.item-body {
    flex: 1 1 auto;
    min-width: 0;
    /* allow text to truncate/wrap correctly inside flex */
}

.item-body h4 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.2;
}

.item-body p {
    margin: 0;
    font-size: 16px;
}

.leadership-item h4 {
    margin: 0 0 6px;
}

.leadership-item p {
    margin: 0;
}

/* vertical separators between horizontal items */
.leadership-list .leadership-item+.leadership-item {
    border-left: 1px solid rgba(14, 22, 42, 0.06);
}

@media (max-width: 980px) {
    .leadership-list {
        flex-direction: column;
        gap: 12px;
    }

    .leadership-list .leadership-item+.leadership-item {
        border-left: none;
        border-top: 1px solid rgba(14, 22, 42, 0.04);
        padding-top: 12px;
    }
}

/* decorative visual removed — no background visual for leadership section */

@media (max-width: 980px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leadership-list {
        padding-right: 0;
    }
}

/* Leadership media (carousel) styles */
.leadership-media {
    display: block;
    grid-column: 1 / -1;
}

.leadership-media .carousel {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(14, 22, 42, 0.04);
    box-shadow: 0 8px 22px rgba(14, 22, 42, 0.04);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 560px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 10px 12px;
    margin: 0;
    list-style: none;
    background: transparent;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.12);
    cursor: pointer;
}

.carousel-indicators li.active {
    background: var(--accent-solid);
}

@media (max-width: 980px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leadership-media {
        order: 2;
        max-width: 100%;
        width: 100%;
    }

    .carousel-slides {
        height: 170px;
    }
}

/* ensure transition paragraph is not layered oddly */
.leadership>p.lead.muted-note {
    position: static;
    z-index: auto;
}

/* Center problems header and transition text */
.problems h2 {
    text-align: center;
}

.problems .note {
    text-align: center;
    font-weight: 700;
    margin-top: 24px;
    font-size: 22px;
}

/* Pricing matrix */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.pricing-card {
    background: var(--card);
    padding: 20px;
    padding-top: 36px;
    border-radius: 12px;
    border: 1px solid rgba(14, 22, 42, 0.04);
    box-shadow: 0 8px 30px rgba(14, 22, 42, 0.04);
    position: relative;
}

/* make pricing cards full-height columns so CTAs sit at the bottom */
.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.pricing-card .pricing-cta {
    margin-top: 12px;
    text-align: center;
}

/* highlight popular plans */
.pricing-card.popular {
    border-color: rgba(63, 81, 181, 0.55);
    box-shadow: 0 12px 34px rgba(63, 81, 181, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    background: var(--accent-solid);
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
}

.pricing-cta {
    margin-top: 16px;
}

.pricing-storage-note {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted-2);
    margin-top: 12px;
    text-align: center;
}

.feature-matrix {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
}

.feature-matrix-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.feature-matrix th,
.feature-matrix td {
    border: 1px solid rgba(14, 22, 42, 0.04);
    padding: 10px 12px;
    text-align: left;
}

.feature-matrix th {
    background: rgba(14, 22, 42, 0.02);
}

@media (max-width: 720px) {
    .feature-matrix-wrap {
        width: calc(100% + 24px);
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .feature-matrix {
        min-width: 700px;
    }
}

/* Conversion / CTA section */
.conversion {
    text-align: center;
    padding: 36px 20px;
    border-radius: 12px;
    margin-top: 28px;
    background-color: var(--glass);
}

.conversion h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.conversion .lead {
    margin: 0 auto 16px;
}

.conversion-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.conversion-highlights {
    display: inline-flex;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

.conversion-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* FAQ styles */
.faq {
    margin-top: 28px;
}

.faq h3 {
    margin-bottom: 12px;
}

.faq-item {
    border-top: 1px solid rgba(14, 22, 42, 0.04);
    padding: 12px 0;
}

.faq-q {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::after {
    content: '+';
    font-size: 20px;
    line-height: 1;
    color: var(--muted-2);
    margin-left: 12px;
    flex: 0 0 auto;
    transition: transform .22s ease;
}

.faq-item[open] .faq-q::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-a {
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height .26s ease, opacity .22s ease, margin-top .22s ease, transform .22s ease;
    color: var(--muted);
}

.faq-item[open] .faq-a {
    margin-top: 6px;
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 720px) {
    .conversion-cta {
        flex-direction: column;
    }

    .conversion-highlights {
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }
}

.muted-note {
    color: var(--muted);
    font-size: 13px;
    margin-top: 8px;
}

.feature-grid li h4 {
    margin: 0 0 8px;
}

.lead {
    color: var(--muted);
    font-size: 22px;
}

.site-footer {
    padding: 18px 0;
    border-top: 1px solid #e6edf3;
    background: #fff;
    margin-top: 32px
}

.footer-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    position: relative;
}

.footer-left {
    justify-self: start;
}

.footer-center {
    justify-self: center;
}

.footer-right {
    justify-self: end;
}

/* Footer right column and contact styling */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.contact-info {
    text-align: right;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #0f172a;
}

.contact-line .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

.contact-line a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
}

.contact-line a:hover {
    text-decoration: underline;
}

.contact-label {
    font-weight: 600;
    color: var(--muted);
    margin-right: 6px;
}

/* New footer contact styles */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    opacity: 0.95;
}

.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.contact-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background .14s ease, transform .12s ease;
}

.contact-row:hover {
    transform: translateY(-2px);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.04);
    color: var(--muted);
    flex: 0 0 auto;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-icon img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.contact-text {
    font-weight: 400;
    color: #0f172a;
    font-size: 12px;
}

@media (max-width:640px) {
    .footer-contact {
        align-items: flex-start;
    }
}

@media (max-width:640px) {
    .footer-row {
        display: grid;
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-right {
        align-items: flex-start;
        justify-self: start;
    }

    .contact-info {
        text-align: left;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-center {
    text-align: center;
}

.footer-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 12px
}

.footer-link:hover {
    text-decoration: underline
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-badges img {
    height: 36px;
    display: block;
    margin-bottom: 6px;
}

.m0 {
    margin: 0
}

@media (max-width:640px) {
    .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    /* show toggle, hide links until opened */
    .nav-toggle {
        display: inline-block;
        background: transparent;
        border: 1px solid transparent;
        padding: 6px 8px;
        border-radius: 6px;
        font-size: 18px;
        cursor: pointer
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 200px;
        margin-top: 8px;
        position: absolute;
        right: 0;
        top: 100%;
        background: #fff;
        border: 1px solid #e6edf3;
        border-radius: 8px;
        padding: 8px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
        z-index: 10
    }

    .nav-links.open {
        display: flex
    }

    .nav-links .nav-item {
        padding: 8px 12px;
        border-radius: 6px;
        text-align: left
    }

    /* keep CTA visible and aligned to right */
    .nav-cta {
        display: flex;
        justify-content: flex-end
    }

    .hero h2 {
        font-size: 22px
    }
}