:root {
    --primary: #9A0002;
    --primary-dark: #780002;
    --primary-soft: #b14446;
    --beige: #EFE6DE;
    --yellow: #F5CB58;
    --yellow-light: #F3E9B5;
    --white: #F8F8F8;
    --ink: #1A1A1A;
    --text: #383838;
    --muted: #686868;
    --line: rgba(154, 0, 2, 0.12);
    --surface: rgba(255, 255, 255, 0.74);
    --shadow: 0 18px 44px rgba(80, 28, 20, 0.12);
    --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1140px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--beige);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(239, 230, 222, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo {
    width: 82px;
    height: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
}

.nav-links a.btn,
.mobile-nav a.btn {
    color: #fff;
}

.nav-links a:hover,
.mobile-nav a:hover,
.text-link:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 18px 20px 24px;
    border-top: 1px solid var(--line);
    background: var(--beige);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    padding: 16px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: transform 0.18s var(--ease-out-strong), box-shadow 0.18s var(--ease-out-strong), background 0.18s var(--ease-out-strong), color 0.18s var(--ease-out-strong), border-color 0.18s var(--ease-out-strong);
}

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

.btn:active {
    transform: scale(0.97);
}

.btn-primary,
.btn-nav {
    background: linear-gradient(135deg, #b10002 0%, var(--primary) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(154, 0, 2, 0.22);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #2fd06b 0%, #25D366 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.24);
}

.btn-whatsapp:hover {
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.btn-icon-brand {
    fill: currentColor;
}

.btn-icon-mark {
    fill: #25D366;
}

.btn-secondary {
    background: rgba(255, 250, 248, 0.82);
    color: var(--primary);
    border-color: rgba(154, 0, 2, 0.16);
    box-shadow: 0 10px 24px rgba(154, 0, 2, 0.08);
}

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

.btn-nav {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 15px;
}

.page-b2b .nav-links .btn-whatsapp,
.page-b2b .mobile-nav .btn-whatsapp {
    background: linear-gradient(135deg, #b10002 0%, var(--primary) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(154, 0, 2, 0.22);
}

.page-b2b .nav-links .btn-whatsapp:hover,
.page-b2b .mobile-nav .btn-whatsapp:hover {
    box-shadow: 0 14px 28px rgba(154, 0, 2, 0.28);
}

.page-b2b .nav-links .btn-whatsapp .btn-icon-mark,
.page-b2b .mobile-nav .btn-whatsapp .btn-icon-mark {
    fill: #fff;
}

main section {
    padding: 64px 0;
}

.hero {
    padding: 24px 0 52px;
    background:
        radial-gradient(circle at top right, rgba(245, 203, 88, 0.35), transparent 28%),
        linear-gradient(180deg, #f3e9b5 0%, #efe6de 68%, #f8f8f8 100%);
}

.hero-b2b {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(239, 230, 222, 0.96) 0%, rgba(239, 230, 222, 0.92) 42%, rgba(239, 230, 222, 0.78) 68%, rgba(239, 230, 222, 0.62) 100%),
        radial-gradient(circle at top right, rgba(245, 203, 88, 0.28), transparent 28%),
        url("assets/Untitled design.png") center center / cover no-repeat;
}

.hero-b2b::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(154, 0, 2, 0.04) 0%, rgba(154, 0, 2, 0.12) 100%);
    pointer-events: none;
}

.hero-b2b .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
}

.hero-content-single {
    grid-template-columns: 1fr;
}

.hero-text {
    max-width: 620px;
    margin: 0 auto;
}

.hero-b2b .hero-text {
    margin: 0;
    padding: clamp(24px, 4vw, 36px);
    border-radius: 32px;
    background: rgba(248, 248, 248, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow: 0 22px 48px rgba(80, 28, 20, 0.16);
    backdrop-filter: blur(8px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(245, 203, 88, 0.9);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--primary);
    margin-bottom: 14px;
}

.hero-description,
.section-heading p,
.value-card p,
.process-card p,
.journey-card p,
.audience-card p,
.highlight-card p,
.cta-band-card p,
.impact-item p,
.testimonial-card p,
.faq-answer p,
.footer-meta p {
    color: var(--text);
    font-size: 15px;
}

.hero-home .hero-text {
    max-width: 720px;
    text-align: center;
}

.hero-home .hero-description {
    max-width: 580px;
}

.hero-home .hero-actions,
.hero-home .hero-proof-list {
    justify-content: center;
}

.hero-home .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.hero-actions-dual .btn {
    min-width: 212px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #b10002 0%, var(--primary) 100%);
    box-shadow: 0 10px 22px rgba(154, 0, 2, 0.16);
}

.btn-hero-secondary {
    background: rgba(255, 247, 243, 0.74);
    border-color: rgba(154, 0, 2, 0.2);
    box-shadow: 0 10px 22px rgba(154, 0, 2, 0.06);
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
    box-shadow: 0 14px 26px rgba(154, 0, 2, 0.12);
}

.hero-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-helper {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
    max-width: 46ch;
}

.proof-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(26, 26, 26, 0.04);
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
}

.hero-visual {
    width: 100%;
    justify-self: center;
    display: flex;
    justify-content: center;
}

.hero-home .hero-visual,
.hero-b2b .hero-visual,
.hero-b2c .hero-visual {
    padding: 10px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.36) 100%);
    border: 1px solid rgba(154, 0, 2, 0.08);
    box-shadow: var(--shadow);
    width: fit-content;
}

.hero-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(80, 28, 20, 0.16);
    border: 6px solid rgba(255, 255, 255, 0.72);
}

.hero-home .hero-image {
    max-width: 186px;
}

.hero-image-app {
    max-width: 320px;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 24px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.section-kicker {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-heading-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.3rem;
    line-height: 1.2;
}

.audience-router,
.why-use,
.social-proof,
.faq {
    background: #fff;
}

.audience-grid,
.value-grid,
.process-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.audience-card,
.value-card,
.process-card,
.journey-card,
.testimonial-card,
.highlight-card,
.cta-band-card {
    background: var(--surface);
    border: 1px solid rgba(154, 0, 2, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.audience-card,
.value-card,
.process-card,
.journey-card,
.testimonial-card {
    padding: 22px;
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 132px;
}

.audience-card-accent {
    background: linear-gradient(180deg, rgba(245, 203, 88, 0.2) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.audience-tag,
.testimonial-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(154, 0, 2, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.feature-list,
.steps-list {
    list-style: none;
    margin: 14px 0 18px;
    display: grid;
    gap: 10px;
}

.feature-list li,
.steps-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
}

.feature-list li::before,
.steps-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--yellow);
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.journey-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(243, 233, 181, 0.52) 100%);
}

.journey-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.text-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
}

.impact-strip {
    position: relative;
    padding: 28px 0 34px;
    background: linear-gradient(180deg, rgba(154, 0, 2, 0.92) 0%, rgba(126, 10, 13, 0.94) 100%);
}

.impact-strip::before {
    content: "";
    position: absolute;
    inset: -34px 0 auto 0;
    height: 48px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(154, 0, 2, 0.1) 56%, rgba(154, 0, 2, 0) 100%);
    pointer-events: none;
}

.impact-strip .container {
    position: relative;
    z-index: 1;
}

.why-use {
    position: relative;
    padding-top: 54px;
    padding-bottom: 64px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fff 100%);
}

.why-use::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 92px;
    background: linear-gradient(180deg, rgba(154, 0, 2, 0.18) 0%, rgba(154, 0, 2, 0.06) 48%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.why-use .container {
    position: relative;
    z-index: 1;
}

.why-use .section-heading {
    margin-bottom: 30px;
}

.why-intro {
    max-width: 640px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.why-card {
    position: relative;
    overflow: hidden;
    padding: 26px 24px 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 230, 222, 0.64) 100%);
    border: 1px solid rgba(154, 0, 2, 0.09);
    box-shadow: 0 16px 34px rgba(80, 28, 20, 0.08);
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--yellow) 0%, var(--primary) 100%);
}

.why-card::after {
    content: "";
    position: absolute;
    top: -28px;
    right: -10px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 203, 88, 0.2) 0%, rgba(245, 203, 88, 0) 72%);
    pointer-events: none;
}

.why-card-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(154, 0, 2, 0.08);
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(154, 0, 2, 0.06);
}

.why-card h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: var(--ink);
}

.why-card p {
    max-width: 28ch;
    color: var(--text);
    font-size: 15px;
}

.home-steps {
    background: linear-gradient(180deg, rgba(243, 233, 181, 0.34) 0%, #fff 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.impact-item {
    padding: 18px 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(52, 10, 10, 0.14);
    backdrop-filter: blur(4px);
    text-align: center;
}

.impact-number {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    color: var(--yellow);
    font-weight: 800;
    margin-bottom: 8px;
}

.impact-item p {
    color: rgba(255, 255, 255, 0.92);
}

.testimonial-grid {
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-card-featured {
    background: linear-gradient(180deg, rgba(245, 203, 88, 0.26) 0%, rgba(255, 255, 255, 0.94) 100%);
    border-color: rgba(245, 203, 88, 0.9);
}

.testimonial-stars {
    color: #e4a300;
    letter-spacing: 0.15em;
    font-size: 14px;
}

.testimonial-card span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

.problem-solution {
    background: linear-gradient(180deg, rgba(243, 233, 181, 0.42) 0%, #fff 100%);
}

.business-overview {
    display: grid;
    gap: 24px;
}

.business-explainer {
    max-width: 980px;
    margin: 0;
    padding: 10px 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: left;
}

.business-explainer-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.business-explainer h2 {
    max-width: none;
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.business-explainer p {
    max-width: 72ch;
    margin: 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.6;
}

.business-explainer-content {
    display: grid;
    gap: 18px;
}

.business-types-stack {
    display: grid;
    gap: 16px;
}

.business-type-card {
    position: relative;
    overflow: hidden;
    padding: 22px 22px 24px;
    border-radius: 24px;
    box-shadow: none;
}

.business-type-card::before {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    opacity: 0.8;
}

.business-type-card-catalog {
    background: rgba(154, 0, 2, 0.04);
    border-color: rgba(154, 0, 2, 0.1);
}

.business-type-card-catalog::before {
    background: rgba(154, 0, 2, 0.08);
}

.business-type-card-surplus {
    background: rgba(245, 203, 88, 0.12);
    border-color: rgba(245, 203, 88, 0.22);
}

.business-type-card-surplus::before {
    background: rgba(245, 203, 88, 0.12);
}

.business-type-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.business-type-card p {
    max-width: 30ch;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.business-benefits-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: none;
}

.business-benefit-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 18px 20px;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 244, 0.92) 100%);
    border: 1px solid rgba(154, 0, 2, 0.1);
    box-shadow: 0 14px 32px rgba(154, 0, 2, 0.08);
}

.business-benefit-pill strong {
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.2;
}

.business-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
}

.business-stat-card {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 10px;
    min-height: auto;
    padding: 24px 26px;
    border-radius: 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 249, 244, 0.9) 100%);
    border: 1px solid rgba(154, 0, 2, 0.1);
    box-shadow: 0 18px 40px rgba(154, 0, 2, 0.06);
}

.business-stat-card strong {
    display: block;
    min-width: 6ch;
    margin: 0;
    color: var(--primary);
    font-size: clamp(2.6rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: center;
}

.business-stat-card span {
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
}

.business-stats-note {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.fit-check {
    background: #fff;
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.fit-card {
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(154, 0, 2, 0.1);
    box-shadow: var(--shadow);
}

.fit-card {
    background: rgba(255, 255, 255, 0.92);
}

.fit-card-accent {
    background: linear-gradient(180deg, rgba(243, 233, 181, 0.42) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.fit-card h3 {
    margin-bottom: 10px;
}

.value-card h3,
.process-card h3,
.journey-card h3,
.audience-card h3,
.testimonial-card h3 {
    margin-bottom: 10px;
}

.value-card h3 {
    margin-bottom: 0;
    max-width: 16ch;
}

.step-badge {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.highlight-panel {
    background: var(--beige);
}

.highlight-card,
.cta-band-card {
    padding: 24px;
    display: grid;
    gap: 18px;
}

.highlight-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(243, 233, 181, 0.5) 100%);
}

.cta-band {
    background: linear-gradient(180deg, rgba(154, 0, 2, 0.04) 0%, rgba(243, 233, 181, 0.34) 100%);
}

.cta-band-card {
    background: linear-gradient(135deg, rgba(154, 0, 2, 0.06) 0%, rgba(255, 255, 255, 0.94) 55%, rgba(243, 233, 181, 0.42) 100%);
    align-items: center;
}

.section-visual {
    margin-top: 18px;
}

.workflow-showcase {
    display: grid;
    gap: 20px;
    margin-top: 28px;
}

.workflow-card {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(154, 0, 2, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 233, 181, 0.28) 100%);
    box-shadow: var(--shadow);
    align-items: center;
}

.workflow-shot {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.workflow-shot .section-image {
    aspect-ratio: 3 / 4;
}

.workflow-copy h3 {
    margin-bottom: 10px;
}

.workflow-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(154, 0, 2, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.workflow-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    background: rgba(154, 0, 2, 0.04);
}

.workflow-note p {
    margin: 0;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(154, 0, 2, 0.1);
    box-shadow: var(--shadow);
    background: #fff;
    object-fit: cover;
}

.section-image-card {
    aspect-ratio: 1 / 1;
}

.image-placeholder {
    min-height: 280px;
    padding: 28px;
    display: grid;
    align-content: center;
    gap: 8px;
    border: 2px dashed rgba(154, 0, 2, 0.24);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(243, 233, 181, 0.34) 100%);
    text-align: center;
}

.image-placeholder strong {
    font-size: 1.1rem;
    color: var(--primary);
}

.image-placeholder p {
    color: var(--text);
    font-size: 15px;
}

.image-placeholder-label {
    display: inline-flex;
    justify-self: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(154, 0, 2, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.image-placeholder-hero {
    width: min(100%, 360px);
    min-height: 420px;
}

.image-placeholder-inline {
    min-height: 100%;
}

.legal-hero,
.service-hero,
.download-shell {
    background:
        radial-gradient(circle at top right, rgba(245, 203, 88, 0.24), transparent 28%),
        linear-gradient(180deg, rgba(243, 233, 181, 0.76) 0%, rgba(239, 230, 222, 0.9) 58%, #fff 100%);
}

.legal-hero,
.service-hero {
    padding: 56px 0 28px;
}

.legal-hero-copy,
.service-hero-copy {
    max-width: 720px;
}

.legal-hero-copy h1,
.service-hero-copy h1 {
    max-width: 14ch;
}

.legal-hero-copy p,
.service-hero-copy p {
    max-width: 60ch;
    font-size: 17px;
    color: var(--text);
}

.legal-content,
.support-section {
    background: #fff;
}

.legal-container,
.support-layout {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
}

.legal-card,
.support-card,
.support-callout,
.download-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(154, 0, 2, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.legal-card {
    padding: 24px;
}

.language-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.language-btn {
    min-height: 48px;
    padding: 12px 18px;
    background: rgba(239, 230, 222, 0.92);
    border: 1px solid rgba(154, 0, 2, 0.12);
    border-radius: 999px;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s var(--ease-out-strong), background 0.18s var(--ease-out-strong), color 0.18s var(--ease-out-strong), border-color 0.18s var(--ease-out-strong);
}

.language-btn:hover {
    transform: translateY(-1px);
    background: rgba(243, 233, 181, 0.72);
}

.language-btn.active {
    background: linear-gradient(135deg, #b10002 0%, var(--primary) 100%);
    border-color: transparent;
    color: #fff;
}

.pdf-viewer {
    width: 100%;
    min-height: 72vh;
    border: 1px solid rgba(154, 0, 2, 0.12);
    border-radius: 18px;
    background: #fff;
}

.legal-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b10002 0%, var(--primary) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s var(--ease-out-strong), box-shadow 0.18s var(--ease-out-strong);
    box-shadow: 0 10px 24px rgba(154, 0, 2, 0.18);
}

.download-link:hover {
    transform: translateY(-2px);
}

.download-link svg {
    width: 20px;
    height: 20px;
}

.support-section {
    padding-top: 8px;
}

.support-layout {
    display: grid;
    gap: 20px;
}

.support-card,
.support-callout {
    padding: 28px 24px;
}

.support-card-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(37, 211, 102, 0.14);
    color: #25D366;
}

.support-card-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.support-card h2,
.support-callout h2 {
    margin-bottom: 10px;
}

.support-card p,
.support-callout p {
    color: var(--text);
}

.support-meta {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 15px;
}

.support-meta strong {
    color: var(--ink);
}

.deletion-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.deletion-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
}

.deletion-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
}

.support-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(239, 230, 222, 0.76);
    color: var(--text);
}

.download-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(245, 203, 88, 0.18), transparent 26%),
        linear-gradient(180deg, #efe6de 0%, #f8f8f8 100%);
    color: var(--ink);
}

.download-shell {
    min-height: calc(100vh - 84px);
    display: grid;
    place-items: center;
    padding: 40px 0 52px;
}

.download-card {
    width: min(760px, calc(100% - 40px));
    padding: 32px 26px;
    text-align: center;
}

.download-logo-wrap {
    width: 92px;
    height: 92px;
    margin: 0 auto 22px;
    padding: 16px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(80, 28, 20, 0.12);
}

.download-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-card h1 {
    color: var(--primary);
    margin-bottom: 12px;
}

.download-card p {
    max-width: 42ch;
    margin: 0 auto;
    color: var(--text);
    font-size: 17px;
}

.spinner {
    width: 46px;
    height: 46px;
    margin: 28px auto 0;
    border: 4px solid rgba(154, 0, 2, 0.14);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.manual-links {
    display: none;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(154, 0, 2, 0.12);
}

.manual-links.show {
    display: block;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.store-buttons .btn {
    min-width: 248px;
}

.store-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.store-badge-link {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    min-height: 64px;
}

.store-badge {
    display: block;
    width: auto;
    height: auto;
}

.store-badge-apple {
    height: 56px;
}

.store-badge-google {
    height: 56px;
}

.hero-b2c-revamp {
    background:
        radial-gradient(circle at 28% 74%, rgba(245, 203, 88, 0.28), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(245, 203, 88, 0.18), transparent 18%),
        linear-gradient(180deg, rgba(239, 230, 222, 0.96) 0%, rgba(243, 233, 181, 0.56) 100%);
}

.hero-b2c-revamp .hero-text {
    display: grid;
    gap: 18px;
    max-width: 560px;
    margin: 0;
    padding-top: 10px;
}

.hero-b2c-revamp h1 {
    margin-bottom: 0;
    font-size: clamp(2.7rem, 5.2vw, 4.4rem);
}

.consumer-impact-card {
    width: min(100%, 590px);
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(245, 203, 88, 0.92);
    box-shadow: 0 24px 54px rgba(154, 0, 2, 0.08);
}

.consumer-impact-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: clamp(3.1rem, 5.2vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-align: center;
}

.consumer-impact-card p {
    max-width: 18ch;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    color: var(--text);
}

.hero-store-badges {
    display: flex;
    width: min(100%, 590px);
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.hero-store-badges .store-badge-link {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    width: calc(50% - 8px);
}

.hero-store-badges .store-badge-google,
.hero-store-badges .store-badge-apple {
    width: 100%;
    height: auto;
}

.btn-b2c-app {
    width: min(100%, 590px);
    min-height: 88px;
    border-radius: 22px;
    font-size: clamp(1.3rem, 2vw, 1.9rem);
    box-shadow: 0 18px 36px rgba(154, 0, 2, 0.24);
}

.hero-visual-clean {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-b2c-revamp .hero-image {
    max-width: 510px;
    border-radius: 34px;
    border: 10px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 30px 60px rgba(80, 28, 20, 0.16);
}

.user-how-it-works {
    background: #fff;
}

.user-how-layout {
    display: grid;
    gap: 28px;
    align-items: center;
}

.user-step-list {
    display: grid;
    gap: 18px;
}

.user-step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    padding: 24px 26px;
    border-radius: 28px;
    background: rgba(239, 230, 222, 0.76);
}

.user-step-number {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.user-step-card h3 {
    font-size: clamp(1.45rem, 2.2vw, 2.2rem);
    color: #10203a;
}

.user-step-card p {
    margin-top: 6px;
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    color: var(--text);
}

.user-how-visual {
    display: flex;
    justify-content: center;
}

.user-how-image {
    width: min(100%, 420px);
    height: auto;
    filter: drop-shadow(0 34px 48px rgba(80, 28, 20, 0.16));
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(154, 0, 2, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.84);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 203, 88, 0.38);
    color: var(--primary);
    font-weight: 800;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
    overflow: hidden;
    padding: 0 18px 0;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.social-proof-b2b {
    --testimonial-marquee-gap: 18px;
    position: relative;
    overflow: hidden;
    padding-top: 22px;
}

.social-proof-b2b .section-heading {
    margin-bottom: 30px;
}

.testimonial-marquee {
    position: relative;
    overflow: hidden;
    padding: 8px 0 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.testimonial-marquee::-webkit-scrollbar {
    display: none;
}

.testimonial-marquee:active {
    cursor: grabbing;
}

.testimonial-marquee-track {
    display: flex;
    width: max-content;
    gap: var(--testimonial-marquee-gap);
    animation: testimonial-marquee-scroll 82s linear infinite;
    will-change: transform;
}

.testimonial-marquee:hover .testimonial-marquee-track {
    animation-play-state: paused;
}

.testimonial-marquee-group {
    display: flex;
    gap: var(--testimonial-marquee-gap);
    padding-right: var(--testimonial-marquee-gap);
}

.testimonial-card-marquee {
    width: min(252px, calc(100vw - 72px));
    min-height: 166px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(154, 0, 2, 0.08) 0%, rgba(239, 230, 222, 0.9) 100%);
    color: var(--ink);
    border: 1px solid rgba(154, 0, 2, 0.12);
    box-shadow: 0 16px 34px rgba(80, 28, 20, 0.12);
}

.testimonial-card-marquee p,
.testimonial-card-marquee h3,
.testimonial-card-marquee span,
.testimonial-card-marquee strong {
    color: inherit;
}

.testimonial-card-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.testimonial-card-title-group {
    display: grid;
    gap: 4px;
}

.testimonial-card-title-group h3 {
    font-size: 0.84rem;
    line-height: 1.2;
}

.testimonial-card-meta {
    min-width: max-content;
    display: grid;
    gap: 2px;
    text-align: right;
    color: var(--muted);
    font-size: 0.66rem;
    line-height: 1.15;
    opacity: 0.72;
}

.testimonial-card-meta strong,
.testimonial-card-meta span {
    font-size: 0.66rem;
    line-height: 1.15;
    font-weight: 500;
}

.testimonial-card-marquee .testimonial-stars {
    font-size: 11px;
}

.testimonial-card-marquee p {
    font-size: 0.81rem;
    line-height: 1.28;
}

.testimonial-card-marquee > span:last-child {
    color: var(--muted);
    font-size: 12px;
}

.testimonial-card-marquee.testimonial-card-featured {
    width: min(276px, calc(100vw - 72px));
    background: linear-gradient(180deg, rgba(245, 203, 88, 0.36) 0%, rgba(239, 230, 222, 0.98) 100%);
    border-color: rgba(245, 203, 88, 0.82);
    box-shadow: 0 18px 38px rgba(154, 0, 2, 0.14);
    transform: translateY(-4px);
}

.testimonial-card-marquee.testimonial-card-featured.fade-in.visible {
    transform: translateY(-4px);
}

.testimonial-card-marquee.testimonial-card-featured h3 {
    font-size: 0.82rem;
}

.testimonial-card-marquee.testimonial-card-featured p {
    font-size: 0.78rem;
    line-height: 1.24;
}

@keyframes testimonial-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - (var(--testimonial-marquee-gap) / 2)));
    }
}

.site-footer {
    padding: 56px 0 48px;
    background: #1f1f1f;
    color: rgba(255, 255, 255, 0.86);
}

.footer-simple {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-links a,
.footer-meta a,
.footer-contact {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer-contact,
.footer-location,
.footer-copy,
.footer-links a,
.footer-separator {
    font-size: 15px;
}

.footer-contact:hover,
.footer-links a:hover {
    color: #fff;
}

.footer-location,
.footer-copy {
    color: rgba(255, 255, 255, 0.78);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.46);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.social-links a {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.18s var(--ease-out-strong), background 0.18s var(--ease-out-strong), border-color 0.18s var(--ease-out-strong);
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(245, 203, 88, 0.16);
    border-color: rgba(245, 203, 88, 0.34);
}

.social-links svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .container {
        width: min(var(--container), calc(100% - 80px));
    }

    .mobile-menu-toggle,
    .mobile-nav {
        display: none !important;
    }

    .nav-links {
        display: flex;
    }

    .hero-actions,
    .hero-actions-dual {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .store-badges {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-simple {
        gap: 20px;
    }

    .legal-hero,
    .service-hero {
        padding: 68px 0 36px;
    }

    .legal-card {
        padding: 30px;
    }

    .store-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-proof-b2b {
        --testimonial-marquee-gap: 22px;
        padding-top: 28px;
    }

    .hero-b2c-revamp .hero-content {
        align-items: center;
    }

    .hero-store-badges {
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
    }

    .user-how-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
        gap: 40px;
    }

    .testimonial-card-marquee {
        width: 264px;
        min-height: 176px;
    }

    .testimonial-card-marquee.testimonial-card-featured {
        width: 288px;
    }

    .audience-grid,
    .value-grid,
    .testimonial-grid,
    .why-grid,
    .fit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .business-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .business-types-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-card {
        min-height: 220px;
    }

    .journey-grid,
    .impact-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .highlight-card,
    .cta-band-card {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }

    .workflow-card,
    .workflow-card.workflow-card-reverse {
        grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
        gap: 28px;
    }

    .workflow-card.workflow-card-reverse {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    }

    .workflow-card.workflow-card-reverse .workflow-shot {
        order: 2;
    }

    .workflow-card.workflow-card-reverse .workflow-copy {
        order: 1;
    }

    .hero-image {
        max-width: 340px;
    }

    .hero-home .hero-image {
        max-width: 248px;
    }

    .hero-image-app {
        max-width: 360px;
    }
}

@media (min-width: 960px) {
    .hero.hero-b2c-revamp {
        padding: 24px 0 24px;
    }

    .hero {
        padding: 22px 0 54px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
        gap: 18px;
        align-items: start;
    }

    .hero-text {
        max-width: 560px;
        padding-top: 18px;
    }

    .hero-content-single {
        grid-template-columns: 1fr;
    }

    .hero-b2b .hero-text {
        max-width: 640px;
        padding-top: clamp(28px, 4vw, 38px);
    }

    .hero-b2c-revamp .hero-text {
        padding-top: 10px;
        margin-top: 0;
        gap: 20px;
        max-width: 500px;
    }

    .hero-b2c-revamp .hero-content {
        align-items: start;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    }

    .hero-b2c-revamp h1 {
        font-size: clamp(2.15rem, 3.8vw, 3.5rem);
    }

    .consumer-impact-card {
        width: min(100%, 420px);
        padding: 20px 22px;
        border-radius: 18px;
    }

    .consumer-impact-card strong {
        font-size: clamp(2.6rem, 4vw, 3.7rem);
        margin-bottom: 4px;
    }

    .consumer-impact-card p {
        max-width: 20ch;
        font-size: clamp(0.92rem, 1.05vw, 1rem);
    }

    .hero-store-badges {
        width: min(100%, 420px);
        gap: 14px;
    }

    .hero-store-badges .store-badge-link {
        width: calc(50% - 5px);
        flex-basis: calc(50% - 5px);
    }

    .btn-b2c-app {
        width: min(100%, 420px);
        min-height: 70px;
        border-radius: 18px;
        font-size: clamp(1.08rem, 1.4vw, 1.45rem);
        margin-top: 4px;
    }

    .hero-b2c-revamp .hero-image {
        max-width: 290px;
        border-radius: 26px;
        border: 0;
        box-shadow: none;
    }

    .user-how-it-works {
        padding: 36px 0 42px;
    }

    .user-how-layout {
        gap: 30px;
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
        align-items: start;
    }

    .user-how-copy .section-heading {
        margin-bottom: 20px;
    }

    .user-how-copy .section-heading h2 {
        font-size: clamp(1.8rem, 2.4vw, 2.5rem);
    }

    .user-step-list {
        gap: 16px;
    }

    .user-step-card {
        padding: 18px 20px;
        gap: 12px;
        border-radius: 18px;
    }

    .user-step-number {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
    }

    .user-step-card h3 {
        font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    }

    .user-step-card p {
        margin-top: 6px;
        font-size: clamp(0.88rem, 1vw, 0.98rem);
    }

    .user-how-image {
        width: min(100%, 340px);
    }

    .hero-home .hero-text {
        max-width: 660px;
        margin: 0;
        text-align: left;
    }

    .hero-home .hero-actions,
    .hero-home .hero-proof-list {
        justify-content: flex-start;
    }

    .hero-home .hero-description {
        margin-right: auto;
    }

    .hero-home .eyebrow {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-image {
        max-width: 360px;
    }

    .hero-home .hero-image {
        max-width: 250px;
    }

    .hero-image-app {
        max-width: 390px;
    }

    .support-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: start;
    }

    .business-overview {
        gap: 26px;
    }

    .business-explainer,
    .business-types-stack {
        grid-column: 1 / -1;
    }

    .business-explainer-content {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
        align-items: start;
        gap: 24px;
    }

    .business-types-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    main section {
        padding: 76px 0;
    }

    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .value-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-grid,
    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .journey-grid,
    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .impact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .testimonial-grid-single {
        grid-template-columns: minmax(0, 720px);
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-image {
        max-width: 390px;
    }

    .page-b2c .hero-b2c-revamp .hero-image {
        max-width: 290px;
    }

    .hero-home .hero-image {
        max-width: 260px;
    }

    .impact-strip {
        padding: 34px 0 42px;
    }

    .why-use {
        padding-top: 58px;
    }

    .why-use .section-heading {
        margin-bottom: 38px;
    }

    .why-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .why-card {
        min-height: 236px;
    }

    .legal-hero,
    .service-hero {
        padding: 78px 0 42px;
    }

    .download-card {
        padding: 42px 40px;
    }
}

@media (max-width: 767px) {
    .hero-b2c-revamp .hero-text {
        margin: 0 auto;
    }

    .cta-band-card .store-badges {
        width: 100%;
        align-items: flex-start;
    }

    .cta-band-card .store-badge-link {
        width: 220px;
    }

    .cta-band-card .store-badge-apple,
    .cta-band-card .store-badge-google {
        width: 220px;
        height: auto;
        object-fit: contain;
    }

    .hero-store-badges,
    .hero-b2c-revamp .hero-actions {
        width: 100%;
        align-items: center;
    }

    .hero-store-badges {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .hero-store-badges .store-badge-link {
        justify-content: center;
        flex: 0 0 auto;
        width: 260px;
    }

    .hero-store-badges .store-badge-google,
    .hero-store-badges .store-badge-apple {
        width: 260px;
        height: auto;
        object-fit: contain;
    }

    .consumer-impact-card {
        padding: 24px 20px;
        width: min(100%, 600px);
    }

    .hero-b2c-revamp .hero-actions {
        display: none;
    }

    .user-step-card {
        padding: 22px 20px;
    }

    .user-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.55rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-marquee {
        overflow-x: auto;
        padding-bottom: 8px;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .testimonial-marquee-track {
        animation: none;
    }
}
