/*
  CollectFlow landing page styles
  - Responsive layout
  - Hover interactions
  - Subtle animations (hero glow, floating cards, animated dotted lines)
*/

:root {
    --bg: #f4f8f7;
    --surface: #ffffff;
    --surface-soft: #ebf3f1;
    --text: #12221f;
    --muted: #48615b;
    --brand: #0f9a78;
    --brand-dark: #0a6f58;
    --accent: #f29f46;
    --line: #c8dad5;
    --shadow: 0 16px 40px rgba(18, 34, 31, 0.12);
    --radius: 16px;
    --container: 1140px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    font-family: "Nunito", sans-serif;
    background: radial-gradient(circle at top right, #dff4eb 0%, var(--bg) 40%, #f7f4ef 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
}

section[id] {
    scroll-margin-top: 88px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 2000;
    background: #0f1d1a;
    color: #ffffff;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 700;
    transition: top 120ms ease;
}

.skip-link:focus {
    top: 0.75rem;
}

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

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(15, 154, 120, 0.12);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(15, 154, 120, 0.45);
    outline-offset: 2px;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.section {
    padding: 4.5rem 0;
}

.eyebrow {
    margin: 0 0 0.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-dark);
    font-size: 0.78rem;
}

h1,
h2,
h3 {
    font-family: "Baloo 2", "Nunito", sans-serif;
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3.4vw, 2.4rem);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(244, 248, 247, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(200, 218, 213, 0.6);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Baloo 2", "Nunito", sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.brand-logo {
    width: 30px;
    height: 30px;
}

.brand-logo-header {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(15, 183, 222, 0.2);
}

.brand-area {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-text {
    font-family: "Baloo 2", "Nunito", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.recvly-brand {
    display: inline-flex;
    align-items: center;
}

.recvly-wordmark {
    display: inline-block;
    background-image: linear-gradient(to right, #052c2c, #57c8bb);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .recvly-wordmark {
        font-size: 2.1rem;
    }
}

.logo-options {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.logo-sample {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.logo-sample span {
    font-family: "Baloo 2", "Nunito", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

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

.logo-a {
    background: linear-gradient(140deg, #27e0b9 0%, #0fb7de 100%);
    border-color: #9ff3e2;
    box-shadow: 0 10px 20px rgba(15, 183, 222, 0.3);
}

.logo-a span {
    color: #ffffff;
    text-shadow: 0 1px 0 #0a6b84;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.main-nav a {
    font-weight: 600;
    color: var(--muted);
}

.main-nav a:hover {
    color: var(--text);
}

.main-nav a.btn,
.main-nav a.btn:hover {
    color: #ffffff;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0.45rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1px solid var(--brand);
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    padding: 0.78rem 1.2rem;
    border-radius: 999px;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    min-height: 44px;
    touch-action: manipulation;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 154, 120, 0.25);
    background: var(--brand-dark);
}

.btn-sm {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
}

.btn-ghost {
    background: transparent;
    color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.btn-ghost:hover {
    background: rgba(15, 154, 120, 0.12);
    box-shadow: none;
}

.hero {
    position: relative;
    overflow: clip;
    padding: 5.5rem 0 4.4rem;
    background:
        radial-gradient(circle at 15% 12%, rgba(87, 200, 187, 0.08), transparent 42%),
        radial-gradient(circle at 88% 18%, rgba(15, 154, 120, 0.07), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 251, 0.96));
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(194, 218, 210, 0.9), transparent);
}

.hero-glow {
    position: absolute;
    inset: -180px auto auto 50%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(15, 154, 120, 0.32) 0%, rgba(15, 154, 120, 0.05) 55%, transparent 70%);
    transform: translateX(-50%);
    animation: heroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translateX(-49%) scale(1.08);
        opacity: 1;
    }
}

.hero-grid {
    position: relative;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
}

.hero-copy {
    max-width: 600px;
    display: grid;
    gap: 0.85rem;
}

.hero-copy .eyebrow {
    margin: 0;
}

.hero-copy h1 {
    margin: 0;
    max-width: 11.5ch;
    line-height: 1.03;
    letter-spacing: -0.02em;
}

.hero-text {
    color: var(--muted);
    margin: 0;
    max-width: 54ch;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.1rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0.05rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #cde2db;
    background: rgba(255, 255, 255, 0.9);
    color: #294e46;
    padding: 0.3rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(18, 34, 31, 0.04);
}

.hero-microproof {
    margin: 0;
    color: #56716b;
    font-size: 0.84rem;
    line-height: 1.35;
}

.hero-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(18, 34, 31, 0.1);
    padding: 0.9rem;
    animation: floatY 4.8s ease-in-out infinite;
}

.hero-value-board {
    border: 1px solid #d4e6e0;
    border-radius: 16px;
    background:
        radial-gradient(circle at 90% 10%, rgba(87, 200, 187, 0.14), transparent 42%),
        radial-gradient(circle at 12% 95%, rgba(15, 154, 120, 0.08), transparent 46%),
        linear-gradient(180deg, #fbfefd 0%, #f4faf8 100%);
    padding: 0.75rem;
    display: grid;
    gap: 0.65rem;
}

.hero-value-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.hero-value-kicker {
    margin: 0;
    color: #0a6f58;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-value-top h3 {
    margin: 0.35rem 0 0;
    font-size: 1.08rem;
    line-height: 1.2;
    color: #102723;
}

.hero-value-badge {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(15, 154, 120, 0.22);
    background: rgba(15, 154, 120, 0.08);
    color: #0a6f58;
    padding: 0.28rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

.hero-kpi-item {
    border: 1px solid #d8e8e2;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.45rem 0.5rem;
    display: grid;
    gap: 0.12rem;
    box-shadow: 0 6px 14px rgba(18, 34, 31, 0.04);
}

.hero-kpi-item span {
    color: #5d7670;
    font-size: 0.66rem;
    line-height: 1.05;
}

.hero-kpi-item strong {
    color: #193c35;
    font-size: 0.8rem;
    line-height: 1.1;
}

.hero-value-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0.65rem;
    align-items: stretch;
}

.hero-value-card {
    border: 1px solid #d7e7e1;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    padding: 0.6rem;
    display: grid;
    gap: 0.5rem;
    min-width: 0;
}

.hero-value-card-before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 250, 0.96));
}

.hero-value-card-after {
    background:
        radial-gradient(circle at 95% 8%, rgba(87, 200, 187, 0.14), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 250, 247, 0.96));
}

.hero-value-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}

.hero-value-card-head strong {
    color: #163630;
    font-size: 0.78rem;
    line-height: 1.1;
}

.hero-value-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(15, 154, 120, 0.1);
    border: 1px solid rgba(15, 154, 120, 0.15);
    color: #0a6f58;
    padding: 0.12rem 0.38rem;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-value-pill-muted {
    background: rgba(100, 116, 139, 0.08);
    border-color: rgba(100, 116, 139, 0.15);
    color: #475569;
}

.hero-before-sheet {
    border: 1px solid #dfeae6;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    overflow: hidden;
}

.hero-before-sheet-head,
.hero-before-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    align-items: center;
    padding: 0.42rem 0.52rem;
}

.hero-before-sheet-head {
    background: #f5faf8;
    border-bottom: 1px solid #e3eeea;
}

.hero-before-sheet-head span:first-child {
    color: #2d534b;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-before-sheet-head span:last-child {
    color: #607974;
    font-size: 0.63rem;
    font-weight: 700;
}

.hero-before-row + .hero-before-row {
    border-top: 1px solid #edf4f1;
}

.hero-before-row span {
    color: #344f49;
    font-size: 0.67rem;
    line-height: 1.1;
}

.hero-before-row em {
    font-style: normal;
    color: #8b5e12;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 999px;
    padding: 0.12rem 0.35rem;
    font-size: 0.57rem;
    font-weight: 800;
    white-space: nowrap;
}

.hero-after-flow {
    display: grid;
    gap: 0.28rem;
}

.hero-after-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.38rem;
    border: 1px solid #dceae6;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.3rem 0.35rem;
}

.hero-after-step i {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 999px;
    border: 2px solid #b8d8cf;
    background: #fff;
    display: block;
    flex: 0 0 auto;
}

.hero-after-step span {
    color: #294840;
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-after-step b {
    color: #607974;
    font-size: 0.56rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-after-step.is-complete i {
    border-color: #0f9a78;
    background: #0f9a78;
    box-shadow: inset 0 0 0 2px #ecfbf5;
}

.hero-after-step.is-complete b {
    color: #0a6f58;
}

.hero-after-step.is-active {
    border-color: rgba(15, 154, 120, 0.18);
    background: rgba(15, 154, 120, 0.05);
}

.hero-after-step.is-active i {
    border-color: #57c8bb;
    box-shadow: 0 0 0 5px rgba(87, 200, 187, 0.12);
    animation: heroFlowPulse 2s ease-in-out infinite;
}

.hero-after-step.is-active b {
    color: #0a6f58;
}

.hero-after-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.42rem;
}

.hero-after-result-card {
    border: 1px solid #dceae6;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.97);
    padding: 0.35rem 0.4rem;
    display: grid;
    gap: 0.12rem;
}

.hero-after-result-card span {
    color: #607974;
    font-size: 0.58rem;
    line-height: 1.05;
}

.hero-after-result-card strong {
    color: #163630;
    font-size: 0.82rem;
    line-height: 1.05;
}

.hero-after-result-card em {
    font-style: normal;
    color: #0a6f58;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1.05;
}

.hero-after-result-card em.is-good {
    color: #0e7a61;
}

.hero-after-mini-chart {
    position: relative;
    height: 2rem;
    border: 1px solid #e2eeea;
    border-radius: 8px;
    background: #fbfefd;
    padding: 0.18rem 0.2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.16rem;
    align-items: end;
    overflow: hidden;
}

.hero-after-mini-chart span {
    display: block;
    height: var(--h);
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(180deg, rgba(87, 200, 187, 0.92) 0%, rgba(15, 154, 120, 0.96) 100%);
    transform-origin: center bottom;
    animation: heroMiniBarPulse 1.7s ease-in-out infinite;
}

.hero-after-mini-chart span:nth-child(2) { animation-delay: 0.1s; }
.hero-after-mini-chart span:nth-child(3) { animation-delay: 0.2s; }
.hero-after-mini-chart span:nth-child(4) { animation-delay: 0.3s; }
.hero-after-mini-chart span:nth-child(5) { animation-delay: 0.4s; }

.hero-after-mini-chart i {
    position: absolute;
    left: 0.2rem;
    right: 0.2rem;
    top: 0.2rem;
    bottom: 0.2rem;
    display: block;
    border-top: 2px solid #f59e0b;
    width: calc(100% - 0.4rem);
    transform-origin: left center;
    transform: translateY(1.25rem) rotate(-12deg);
    opacity: 0.9;
    animation: heroTrendSweep 2s ease-in-out infinite;
}

.hero-value-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.hero-value-foot span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d3e5df;
    background: rgba(255, 255, 255, 0.88);
    color: #31574f;
    padding: 0.25rem 0.52rem;
    font-size: 0.66rem;
    font-weight: 700;
}

@keyframes heroFlowPulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(87, 200, 187, 0.08);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(87, 200, 187, 0.16);
    }
}

@keyframes heroMiniBarPulse {
    0%,
    100% {
        transform: scaleY(0.88);
        opacity: 0.86;
    }
    50% {
        transform: scaleY(1.03);
        opacity: 1;
    }
}

@keyframes heroTrendSweep {
    0%,
    100% {
        transform: translateY(1.25rem) rotate(-12deg);
        opacity: 0.82;
    }
    50% {
        transform: translateY(1.05rem) rotate(-14deg);
        opacity: 1;
    }
}

.section-head {
    margin-bottom: 2rem;
    max-width: 760px;
}

.section-head h2 {
    line-height: 1.15;
}

.section-note {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-weight: 700;
}

.features-grid,
.testimonial-grid,
.pricing-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.features-section {
    background:
        linear-gradient(180deg, rgba(247, 252, 250, 0.7) 0%, rgba(242, 250, 247, 0.95) 100%);
    border-top: 1px solid rgba(207, 226, 219, 0.6);
    border-bottom: 1px solid rgba(207, 226, 219, 0.45);
}

.features-grid .feature-card {
    border-radius: 18px;
    border-color: #cfe1db;
    background:
        radial-gradient(circle at 92% 10%, rgba(87, 200, 187, 0.1), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 249, 0.96));
    padding: 1rem;
    box-shadow: 0 10px 24px rgba(18, 34, 31, 0.06);
    display: grid;
    gap: 0.55rem;
    align-content: start;
}

.features-grid .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(18, 34, 31, 0.1);
    border-color: #b6d8ce;
}

.feature-card-top {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.feature-card-index {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 154, 120, 0.1);
    color: #0a6f58;
    border: 1px solid rgba(15, 154, 120, 0.14);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.feature-card-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d3e5df;
    background: rgba(255, 255, 255, 0.88);
    color: #31574f;
    padding: 0.18rem 0.45rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.2;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.feature-card-outcome {
    border: 1px solid rgba(15, 154, 120, 0.14);
    background: rgba(15, 154, 120, 0.07);
    border-radius: 12px;
    padding: 0.55rem 0.65rem;
    color: #1d4f44;
    font-weight: 700;
    font-size: 0.87rem;
    line-height: 1.35;
}

.card,
.price-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: 0 8px 22px rgba(18, 34, 31, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(18, 34, 31, 0.14);
    border-color: #a9cac1;
}

.floating-card {
    animation: floatY 5.4s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-card:nth-child(3) {
    animation-delay: 1s;
}

.floating-card:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.product-showcase {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 154, 120, 0.05) 100%);
}

.pricing {
    position: relative;
    background:
        linear-gradient(180deg, rgba(248, 252, 251, 0.8) 0%, rgba(246, 251, 249, 0.96) 100%);
    border-top: 1px solid rgba(207, 226, 219, 0.4);
    border-bottom: 0;
}

.pricing::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 72px;
    background: linear-gradient(180deg, rgba(246, 251, 249, 0) 0%, rgba(241, 249, 245, 0.92) 100%);
    pointer-events: none;
    z-index: 0;
}

.pricing > .container {
    position: relative;
    z-index: 1;
}

.product-showcase .container {
    width: min(100% - 1.5rem, 1320px);
}

.shots-wrap {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: 1.25rem;
}

.shot {
    position: relative;
    grid-column: span 2;
    margin: 0;
    z-index: 2;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.55rem;
    box-shadow: var(--shadow);
    animation: floatY 5.2s ease-in-out infinite;
}

.shot img {
    width: 100%;
    height: auto;
}

.shot figcaption {
    margin-top: 0.45rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--muted);
}

.shot-a {
    animation-delay: 0.2s;
}

.shot-b {
    animation-delay: 0.5s;
}

.shot-c {
    animation-delay: 0.8s;
}

.shot-d {
    animation-delay: 1.1s;
}

.shot-e {
    animation-delay: 1.4s;
}

.shot-a {
    grid-column: span 3;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.shot-a img {
    width: auto;
    max-width: 100%;
    height: 250px;
    margin: 0 auto;
    object-fit: contain;
}

.shot-b {
    grid-column: span 3;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.shot-b img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.shot-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.shot-lines path {
    fill: none;
    stroke: #1f7a67;
    stroke-width: 2;
    stroke-dasharray: 5 10;
    opacity: 0.8;
    animation: dashMove 7s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -160;
    }
}

.tour-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    grid-template-areas:
        "proof ."
        "steps map";
    column-gap: 1.25rem;
    row-gap: 1rem;
    align-items: start;
}

.tour-proof {
    grid-area: proof;
}

.tour-steps {
    grid-area: steps;
    align-self: start;
}

.tour-map-curved {
    grid-area: map;
    align-self: start;
}

.tour-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.tour-proof-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #b9d8cf;
    background: rgba(255, 255, 255, 0.85);
    color: #234740;
    border-radius: 999px;
    padding: 0.38rem 0.7rem;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(18, 34, 31, 0.05);
}

.tour-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 2.15rem;
    position: relative;
}

.tour-steps::before {
    display: none;
}

.tour-step-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #c8dad5;
    border-radius: 16px;
    padding: 0.9rem;
    box-shadow: 0 10px 24px rgba(18, 34, 31, 0.07);
}

.tour-step-card h3 {
    margin: 0;
    font-size: 1.02rem;
    color: var(--text);
}

.tour-step-card p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.tour-step-line strong,
.tour-step-outcome strong {
    color: #163630;
}

.tour-step-outcome {
    color: #1e4f44;
    font-weight: 700;
    background: rgba(15, 154, 120, 0.08);
    border: 1px solid rgba(15, 154, 120, 0.14);
    border-radius: 10px;
    padding: 0.45rem 0.55rem;
}

.tour-step-num {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    background: linear-gradient(160deg, #0f9a78 0%, #57c8bb 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: "Baloo 2", "Nunito", sans-serif;
    box-shadow: 0 10px 18px rgba(15, 154, 120, 0.22);
    position: relative;
    z-index: 1;
}

.tour-map {
    position: sticky;
    top: 92px;
    min-height: 0;
    border: 1px solid rgba(200, 218, 213, 0.95);
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 10%, rgba(87, 200, 187, 0.12), transparent 45%),
        radial-gradient(circle at 88% 12%, rgba(15, 154, 120, 0.1), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 251, 0.96));
    box-shadow: 0 18px 40px rgba(18, 34, 31, 0.12);
    overflow: hidden;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.9rem;
    align-content: start;
}

.tour-map::before {
    content: "";
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-image: linear-gradient(#1f7a67 55%, rgba(31, 122, 103, 0) 0%);
    background-size: 2px 14px;
    background-repeat: repeat-y;
    animation: dashFlowY 7s linear infinite;
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
}

.tour-flow-lines {
    display: none;
}

.tour-node {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #c8dad5;
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 12px 28px rgba(18, 34, 31, 0.09);
    min-width: 0;
}

.tour-node h3 {
    margin: 0.15rem 0 0;
    font-size: 1rem;
    line-height: 1.2;
}

.tour-node p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.tour-node-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(15, 154, 120, 0.1);
    color: #0a6f58;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.22rem 0.46rem;
}

.tour-node-image {
    margin-top: 0.55rem;
    border: 1px solid #d6e4e0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.tour-node-image img {
    display: block;
    width: 100%;
    height: auto;
}

.tour-node-compact {
    background: rgba(249, 252, 251, 0.96);
}

.tour-node-import {
    grid-column: 1 / span 3;
}

.tour-node-map {
    grid-column: 4 / span 3;
}

.tour-node-sync {
    grid-column: 2 / span 4;
}

.tour-node-procedures {
    grid-column: 1 / span 3;
}

.tour-node-outreach {
    grid-column: 4 / span 3;
}

.tour-node-workspace {
    grid-column: 1 / span 3;
}

.tour-node-reports {
    grid-column: 4 / span 3;
}

.tour-node-import::after,
.tour-node-procedures::after,
.tour-node-workspace::after {
    content: "";
    position: absolute;
    top: 1.2rem;
    right: -0.95rem;
    width: 0.95rem;
    height: 2px;
    background-image: linear-gradient(to right, rgba(31, 122, 103, 0.5) 55%, rgba(31, 122, 103, 0) 0%);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    animation: dashFlowX 7s linear infinite;
}

.tour-node-map::before,
.tour-node-outreach::before,
.tour-node-reports::before {
    content: "";
    position: absolute;
    top: 1.2rem;
    left: -0.95rem;
    width: 0.95rem;
    height: 2px;
    background-image: linear-gradient(to right, rgba(31, 122, 103, 0.5) 55%, rgba(31, 122, 103, 0) 0%);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    animation: dashFlowX 7s linear infinite;
}

.tour-node-sync::before,
.tour-node-sync::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0.8rem;
    background-image: linear-gradient(rgba(31, 122, 103, 0.48) 55%, rgba(31, 122, 103, 0) 0%);
    background-size: 2px 12px;
    background-repeat: repeat-y;
    animation: dashFlowY 7s linear infinite;
}

.tour-node-sync::before {
    top: -0.9rem;
}

.tour-node-sync::after {
    bottom: -0.9rem;
}

@keyframes dashFlowX {
    to {
        background-position-x: -28px;
    }
}

@keyframes dashFlowY {
    to {
        background-position-y: -28px;
    }
}

.tour-micro-pills,
.tour-channel-split {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.tour-micro-pills span,
.tour-channel-split span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #cfe2dc;
    background: #fff;
    color: #305850;
    padding: 0.22rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.tour-channel-split span {
    border-style: dashed;
}

.tour-stat-row {
    margin-top: 0.38rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #d8e7e2;
    border-radius: 10px;
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.tour-stat-row strong {
    color: var(--text);
    font-size: 0.85rem;
}

.tour-flow-note {
    position: relative;
    z-index: 2;
    max-width: 220px;
    border: 1px dashed #9ccfc3;
    background: rgba(245, 252, 250, 0.9);
    color: #26574e;
    border-radius: 12px;
    padding: 0.45rem 0.55rem;
    font-size: 0.74rem;
    line-height: 1.3;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(18, 34, 31, 0.05);
}

.tour-flow-note-sync {
    grid-column: 2 / span 4;
    justify-self: center;
    max-width: 260px;
}

.tour-flow-note-loop {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: 270px;
}

@media (max-width: 1180px) {
    .tour-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "proof"
            "steps"
            "map";
    }

    .tour-map {
        position: relative;
        top: auto;
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .tour-map::before {
        display: none;
    }

    .tour-node {
        position: static;
        width: auto;
        left: auto;
        right: auto;
        top: auto;
    }

    .tour-node-import,
    .tour-node-map,
    .tour-node-sync,
    .tour-node-procedures,
    .tour-node-outreach,
    .tour-node-workspace,
    .tour-node-reports,
    .tour-flow-note-sync,
    .tour-flow-note-loop {
        grid-column: 1;
    }

    .tour-node-import::after,
    .tour-node-procedures::after,
    .tour-node-workspace::after,
    .tour-node-map::before,
    .tour-node-outreach::before,
    .tour-node-reports::before,
    .tour-node-sync::before,
    .tour-node-sync::after {
        display: none;
    }

    .tour-flow-note {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .tour-proof {
        gap: 0.4rem;
    }

    .tour-proof-pill {
        font-size: 0.76rem;
    }

    .tour-step-card {
        gap: 0.75rem;
        padding: 0.8rem;
    }

    .tour-step-card h3 {
        font-size: 0.95rem;
    }

    .tour-step-card p {
        font-size: 0.86rem;
    }

    .tour-step-num {
        width: 2rem;
        height: 2rem;
        font-size: 0.95rem;
    }

    .tour-map {
        grid-template-columns: 1fr;
        padding: 0.8rem;
        border-radius: 18px;
    }

    .tour-node {
        padding: 0.7rem;
    }

    .tour-node h3 {
        font-size: 0.95rem;
    }
}

/* Product tour map redesign: cleaner workflow spine with animated dotted flow */
.tour-map {
    position: sticky;
    top: 92px;
    min-height: 0;
    display: block;
    padding: 1rem;
}

.tour-map::before {
    display: none;
}

.tour-map-header {
    border: 1px solid #d7e7e1;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    padding: 0.85rem;
    box-shadow: 0 8px 22px rgba(18, 34, 31, 0.05);
}

.tour-map-label {
    margin: 0;
    color: #0a6f58;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-map-header h3 {
    margin: 0.35rem 0 0;
    font-size: 1.05rem;
    line-height: 1.2;
}

.tour-map-sub {
    margin: 0.38rem 0 0;
    font-size: 0.84rem;
    color: var(--muted);
}

.tour-flowboard {
    position: relative;
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.6rem minmax(0, 1fr);
    gap: 0.9rem 0.75rem;
}

.tour-flowboard-spine {
    grid-column: 2;
    grid-row: 1 / span 6;
    justify-self: center;
    width: 2px;
    border-radius: 999px;
    background-image: linear-gradient(#1f7a67 55%, rgba(31, 122, 103, 0) 0%);
    background-size: 2px 14px;
    background-repeat: repeat-y;
    opacity: 0.42;
    animation: dashFlowY 7s linear infinite;
}

.tour-stage {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #c8dad5;
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 12px 28px rgba(18, 34, 31, 0.09);
}

.tour-stage-left {
    grid-column: 1;
}

.tour-stage-right {
    grid-column: 3;
}

.tour-stage-left::after,
.tour-stage-right::after {
    content: "";
    position: absolute;
    top: 1rem;
    height: 2px;
    width: 1.2rem;
    background-image: linear-gradient(to right, rgba(31, 122, 103, 0.5) 55%, rgba(31, 122, 103, 0) 0%);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    animation: dashFlowX 7s linear infinite;
    opacity: 0.9;
}

.tour-stage-left::after {
    right: -1.55rem;
}

.tour-stage-right::after {
    left: -1.55rem;
}

.tour-stage-dot {
    position: absolute;
    top: 0.42rem;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, #0f9a78 0%, #57c8bb 100%);
    color: #fff;
    font-weight: 800;
    font-family: "Baloo 2", "Nunito", sans-serif;
    box-shadow: 0 10px 18px rgba(15, 154, 120, 0.2);
    z-index: 2;
}

.tour-stage-left .tour-stage-dot {
    right: -2.5rem;
}

.tour-stage-right .tour-stage-dot {
    left: -2.5rem;
}

.tour-stage-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(15, 154, 120, 0.1);
    color: #0a6f58;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
}

.tour-stage h4 {
    margin: 0.4rem 0 0;
    font-size: 0.98rem;
    line-height: 1.2;
}

.tour-stage p {
    margin: 0.35rem 0 0;
    font-size: 0.84rem;
    color: var(--muted);
}

.tour-stage-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.55rem;
}

.tour-stage-chips span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d2e4de;
    background: #fbfefd;
    color: #305850;
    padding: 0.2rem 0.48rem;
    font-size: 0.73rem;
    font-weight: 700;
}

.tour-stage-media {
    margin-top: 0.55rem;
    border: 1px solid #d6e4e0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.tour-stage-media img {
    width: 100%;
    display: block;
    height: auto;
}

.tour-loop-callout {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 420px;
    border: 1px dashed #9ccfc3;
    background: rgba(245, 252, 250, 0.9);
    color: #26574e;
    border-radius: 12px;
    padding: 0.5rem 0.65rem;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 20px rgba(18, 34, 31, 0.05);
}

@media (max-width: 1180px) {
    .tour-map {
        position: relative;
        top: auto;
    }

    .tour-flowboard {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .tour-flowboard-spine {
        display: none;
    }

    .tour-stage-left,
    .tour-stage-right,
    .tour-loop-callout {
        grid-column: 1;
    }

    .tour-stage-left::after,
    .tour-stage-right::after {
        display: none;
    }

    .tour-stage-dot {
        position: static;
        width: 1.7rem;
        height: 1.7rem;
        margin-bottom: 0.35rem;
    }
}

@media (max-width: 760px) {
    .tour-map {
        padding: 0.8rem;
        border-radius: 18px;
    }

    .tour-map-header {
        padding: 0.75rem;
    }

    .tour-map-header h3 {
        font-size: 1rem;
    }

    .tour-map-sub {
        font-size: 0.8rem;
    }

    .tour-stage {
        padding: 0.7rem;
    }

    .tour-stage h4 {
        font-size: 0.93rem;
    }

    .tour-stage p {
        font-size: 0.81rem;
    }
}

.testimonials,
.about {
    background: var(--surface-soft);
}

.testimonial-grid .card h3 {
    margin: 1rem 0 0.1rem;
    font-size: 1rem;
}

.testimonial-grid .card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.price-card .price {
    font-size: 2rem;
    margin: 0.4rem 0;
    font-family: "Baloo 2", "Nunito", sans-serif;
}

.price-card .price span {
    font-size: 0.95rem;
    font-family: "Nunito", sans-serif;
    color: var(--muted);
}

.price-card ul {
    list-style: none;
    margin: 1rem 0 1.2rem;
    padding: 0;
    color: var(--muted);
}

.price-card li {
    margin-bottom: 0.45rem;
}

.price-card.featured {
    border: 2px solid var(--brand);
    transform: translateY(-8px);
}

.badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--accent);
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.pricing-private {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
}

.pricing-private-main {
    background:
        radial-gradient(circle at 92% 10%, rgba(87, 200, 187, 0.14), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 250, 0.96));
    border: 1px solid #cddfd9;
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 12px 28px rgba(18, 34, 31, 0.08);
    display: grid;
    gap: 1rem;
}

.pricing-private-head h3 {
    margin: 0.12rem 0 0;
    font-size: 1.38rem;
    line-height: 1.15;
}

.pricing-private-head p:last-child {
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.45;
}

.pricing-private-badge {
    margin-bottom: 0.1rem;
    background: linear-gradient(135deg, #0f9a78 0%, #57c8bb 100%);
}

.pricing-private-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pricing-private-highlights span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #cfe2db;
    background: rgba(255, 255, 255, 0.9);
    color: #264d45;
    padding: 0.35rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.pricing-private-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.pricing-private-block {
    border: 1px solid #d7e7e1;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.85rem;
}

.pricing-private-block h4 {
    margin: 0;
    font-size: 0.95rem;
}

.pricing-private-block ul {
    margin: 0.7rem 0 0;
    padding-left: 1.05rem;
    color: var(--muted);
}

.pricing-private-block li + li {
    margin-top: 0.45rem;
}

.pricing-private-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding-top: 0.1rem;
}

.pricing-private-note {
    margin: 0;
    color: #56716b;
    font-size: 0.84rem;
    line-height: 1.35;
}

.pricing-private-side {
    display: grid;
    gap: 0.9rem;
}

.pricing-private-side-card {
    border: 1px solid #d5e5e0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 20px rgba(18, 34, 31, 0.05);
    padding: 0.9rem;
}

.pricing-private-side-card h4 {
    margin: 0;
    font-size: 0.95rem;
}

.pricing-private-side-card p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Final product tour visual: curved flowing path with fixed card placements */
.tour-map-curved {
    position: sticky;
    top: 92px;
    padding: 1rem;
}

.tour-curved-head {
    border: 1px solid #d7e7e1;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    padding: 0.85rem;
    box-shadow: 0 8px 22px rgba(18, 34, 31, 0.05);
}

.tour-curved-label {
    margin: 0;
    color: #0a6f58;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-curved-head h3 {
    margin: 0.35rem 0 0;
    font-size: 1.05rem;
    line-height: 1.2;
}

.tour-curved-head p:last-child {
    margin: 0.38rem 0 0;
    font-size: 0.84rem;
    color: var(--muted);
}

.tour-curve-canvas {
    position: relative;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: 320px 220px 320px;
    column-gap: 32px;
    row-gap: 40px;
    height: 940px;
    min-height: 0;
    align-items: stretch;
}

.tour-curve-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tour-curve-lines path {
    fill: none;
    stroke: #1f7a67;
    stroke-width: 2;
    stroke-dasharray: 5 10;
    opacity: 0.72;
    animation: dashMove 7s linear infinite;
}

.tour-curve-card {
    position: relative;
    z-index: 2;
    min-width: 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #c8dad5;
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 12px 28px rgba(18, 34, 31, 0.09);
    height: 100%;
}

.tour-curve-card-compact {
    background: rgba(249, 252, 251, 0.96);
}

.tour-curve-card-1 {
    grid-column: 1 / span 3;
    grid-row: 1;
}

.tour-curve-card-2 {
    grid-column: 4 / span 3;
    grid-row: 1;
}

.tour-curve-card-3 {
    grid-column: 2 / span 4;
    grid-row: 2;
}

.tour-curve-card-4 {
    grid-column: 1 / span 3;
    grid-row: 3;
    display: flex;
    flex-direction: column;
}

.tour-curve-card-5 {
    grid-column: 4 / span 3;
    grid-row: 3;
    display: flex;
    flex-direction: column;
}

.tour-curve-card-4,
.tour-curve-card-5 {
    margin-top: 30px;
    height: calc(100% - 30px);
}

.tour-curve-step {
    position: absolute;
    top: -0.45rem;
    left: -0.35rem;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, #0f9a78 0%, #57c8bb 100%);
    color: #fff;
    font-weight: 800;
    font-family: "Baloo 2", "Nunito", sans-serif;
    box-shadow: 0 10px 18px rgba(15, 154, 120, 0.2);
}

.tour-curve-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(15, 154, 120, 0.1);
    color: #0a6f58;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    margin-left: 1.55rem;
}

.tour-curve-card h4 {
    margin: 0.42rem 0 0;
    font-size: 0.97rem;
    line-height: 1.2;
}

.tour-curve-card p {
    margin: 0.35rem 0 0;
    font-size: 0.84rem;
    color: var(--muted);
}

.tour-curve-media {
    margin-top: 0.55rem;
    border: 1px solid #d6e4e0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    height: 7.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-curve-card-1 .tour-curve-media {
    height: 14rem;
    padding: 0.45rem;
    background: linear-gradient(180deg, #f7fbfa 0%, #f1f8f6 100%);
}

.tour-curve-card-2 .tour-curve-media {
    margin-top: 0.3rem;
    height: 14.9rem;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.tour-curve-card-2 .tour-curve-media img {
    background: transparent;
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
}

.tour-templates-graphic {
    width: 100%;
    height: 100%;
    border: 1px solid #d7e8e2;
    border-radius: 12px;
    background: linear-gradient(180deg, #fbfefd 0%, #f4faf8 100%);
    padding: 0.55rem;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.5rem;
}

.tour-templates-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.6rem;
}

.tour-templates-title {
    margin: 0;
    color: #132a26;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.1;
}

.tour-templates-sub {
    margin: 0.14rem 0 0;
    color: #5a756f;
    font-size: 0.66rem;
    line-height: 1.15;
}

.tour-templates-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    background: rgba(15, 154, 120, 0.12);
    color: #0a6f58;
    border: 1px solid rgba(15, 154, 120, 0.16);
    font-size: 0.7rem;
    font-weight: 800;
}

.tour-template-list {
    display: grid;
    gap: 0.45rem;
    align-content: start;
}

.tour-template-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.45rem;
    align-items: center;
    border: 1px solid #dceae6;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.38rem 0.42rem;
}

.tour-template-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, #0f9a78 0%, #57c8bb 100%);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.tour-template-icon-xero {
    background: linear-gradient(155deg, #0ea5e9 0%, #38bdf8 100%);
}

.tour-template-icon-sf {
    background: linear-gradient(155deg, #64748b 0%, #94a3b8 100%);
}

.tour-template-meta {
    min-width: 0;
    display: grid;
    gap: 0.08rem;
}

.tour-template-meta strong {
    color: #1e3b36;
    font-size: 0.71rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-template-meta span {
    color: #607974;
    font-size: 0.62rem;
    line-height: 1.1;
}

.tour-template-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #cfe3dc;
    background: #f6fcfa;
    color: #2b6f60;
    padding: 0.14rem 0.36rem;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.tour-curve-card-4 .tour-curve-media {
    height: auto;
    flex: 1 1 auto;
    min-height: 0;
}

.tour-curve-card-5 .tour-curve-media {
    height: auto;
    flex: 1 1 auto;
    min-height: 0;
}

.tour-curve-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

.tour-upload-graphic {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 0.45rem;
}

.tour-upload-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}

.tour-upload-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d4e5df;
    background: #ffffff;
    color: #31574f;
    padding: 0.18rem 0.45rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tour-upload-pill-success {
    border-color: #bfe3d7;
    background: #eaf8f3;
    color: #0e745d;
}

.tour-upload-dropzone {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
    align-items: center;
    border: 1px dashed #9fcfbe;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.55rem;
}

.tour-upload-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, #0f9a78 0%, #57c8bb 100%);
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 8px 16px rgba(15, 154, 120, 0.18);
}

.tour-upload-title {
    margin: 0;
    color: #132a26;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.15;
}

.tour-upload-sub {
    margin: 0.15rem 0 0;
    color: #5a756f;
    font-size: 0.7rem;
    line-height: 1.2;
}

.tour-upload-mapping {
    border: 1px solid #d8e8e2;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto repeat(3, 1fr);
}

.tour-upload-mapping-head,
.tour-upload-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0.5rem;
    align-items: center;
    padding: 0.38rem 0.5rem;
}

.tour-upload-mapping-head {
    background: #eef5f3;
    color: #58736d;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid #ddeae5;
}

.tour-upload-row {
    font-size: 0.72rem;
    color: #2f4d46;
    border-top: 1px solid #edf4f2;
}

.tour-upload-row strong {
    color: #0b5c4b;
    font-weight: 800;
    background: rgba(15, 154, 120, 0.08);
    border: 1px solid rgba(15, 154, 120, 0.14);
    border-radius: 999px;
    padding: 0.15rem 0.35rem;
    justify-self: start;
}

.tour-curve-card-4 .tour-curve-media img,
.tour-curve-card-5 .tour-curve-media img {
    transform: scale(1.08);
    transform-origin: top center;
}

.tour-curve-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.55rem;
}

.tour-curve-pills span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d2e4de;
    background: #fbfefd;
    color: #305850;
    padding: 0.2rem 0.48rem;
    font-size: 0.73rem;
    font-weight: 700;
}

.tour-curve-mini-stats {
    margin-top: 0.55rem;
    display: grid;
    gap: 0.4rem;
}

.tour-curve-mini-stats div {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    border: 1px solid #d8e7e2;
    border-radius: 10px;
    padding: 0.32rem 0.48rem;
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.77rem;
    color: var(--muted);
}

.tour-curve-mini-stats strong {
    color: var(--text);
    font-size: 0.8rem;
}

.tour-assign-graphic {
    position: relative;
    margin-top: 0.45rem;
    min-height: 6.2rem;
    border: 1px solid #d8e8e2;
    border-radius: 12px;
    background: linear-gradient(180deg, #fbfefd 0%, #f4faf8 100%);
    padding: 0.45rem 0.5rem;
    display: grid;
    grid-template-columns: 1.1fr auto 1.25fr;
    gap: 0.5rem;
    align-items: center;
    overflow: hidden;
}

.tour-assign-track {
    position: absolute;
    left: 34%;
    right: 34%;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background-image: linear-gradient(to right, rgba(31, 122, 103, 0.45) 55%, rgba(31, 122, 103, 0) 0%);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    animation: dashFlowX 6.2s linear infinite;
    z-index: 1;
}

.tour-assign-packet {
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, #c8fff0 0%, #57c8bb 45%, #0f9a78 100%);
    box-shadow: 0 0 0 6px rgba(87, 200, 187, 0.12);
    transform: translateY(-50%);
    animation: assignPacketMove 3.2s ease-in-out infinite;
}

.tour-assign-stream {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0.32rem;
}

.tour-assign-row {
    border: 1px solid #dbeae6;
    background: rgba(255, 255, 255, 0.95);
    color: #355a52;
    border-radius: 999px;
    padding: 0.18rem 0.45rem;
    font-size: 0.62rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: assignRowPulse 2.8s ease-in-out infinite;
}

.tour-assign-row:nth-child(2) {
    animation-delay: 0.45s;
}

.tour-assign-row:nth-child(3) {
    animation-delay: 0.9s;
}

.tour-assign-center {
    position: relative;
    z-index: 2;
    width: 4.2rem;
    display: grid;
    justify-items: center;
    gap: 0.2rem;
}

.tour-assign-core {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid #bfe3d7;
    background: radial-gradient(circle at 40% 35%, #ffffff 0%, #e9f8f3 55%, #d9f0ea 100%);
    box-shadow: inset 0 0 0 5px rgba(87, 200, 187, 0.1);
    position: relative;
}

.tour-assign-core::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 1px solid rgba(15, 154, 120, 0.18);
    animation: assignCorePulse 2.2s ease-out infinite;
}

.tour-assign-core span {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    border: 2px solid #0f9a78;
    border-top-color: transparent;
    animation: assignSpin 1.2s linear infinite;
}

.tour-assign-center p {
    margin: 0;
    color: #285c50;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.tour-assign-buckets {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0.34rem;
}

.tour-assign-bucket {
    border: 1px solid #dceae6;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.97);
    padding: 0.28rem 0.35rem 0.32rem;
    display: grid;
    gap: 0.2rem;
}

.tour-assign-bucket-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}

.tour-assign-bucket-head strong {
    color: #1e3b36;
    font-size: 0.62rem;
    line-height: 1.1;
}

.tour-assign-bucket-head span {
    color: #2b6f60;
    font-size: 0.6rem;
    font-weight: 800;
}

.tour-assign-bucket-bar {
    height: 0.32rem;
    border-radius: 999px;
    background: #e8f2ef;
    overflow: hidden;
}

.tour-assign-bucket-bar i {
    display: block;
    height: 100%;
    width: 55%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0f9a78 0%, #57c8bb 100%);
    transform-origin: left center;
    animation: assignBarGrow 2.4s ease-in-out infinite;
}

.tour-assign-bucket:nth-child(2) .tour-assign-bucket-bar i {
    width: 42%;
    animation-delay: 0.35s;
}

.tour-assign-bucket:nth-child(3) .tour-assign-bucket-bar i {
    width: 27%;
    animation-delay: 0.7s;
    background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
}

.tour-collect-graphic {
    width: 100%;
    height: 100%;
    border: 1px solid #d8e8e2;
    border-radius: 12px;
    background: linear-gradient(180deg, #fbfefd 0%, #f4faf8 100%);
    padding: 0.5rem;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.45rem;
}

.tour-collect-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.tour-collect-title {
    margin: 0;
    color: #132a26;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.1;
}

.tour-collect-sub {
    margin: 0.12rem 0 0;
    color: #5a756f;
    font-size: 0.64rem;
    line-height: 1.15;
}

.tour-collect-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #cfe3dc;
    background: #f6fcfa;
    color: #2b6f60;
    padding: 0.14rem 0.38rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tour-collect-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0.45rem;
    min-height: 0;
}

.tour-collect-steps {
    position: relative;
    border: 1px solid #dceae6;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.35rem;
    display: grid;
    gap: 0.28rem;
}

.tour-collect-steps::before {
    content: "";
    position: absolute;
    left: 0.88rem;
    top: 0.8rem;
    bottom: 0.8rem;
    width: 2px;
    background-image: linear-gradient(#9ccfc3 55%, rgba(156, 207, 195, 0) 0%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
    opacity: 0.8;
}

.tour-collect-step-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem;
    align-items: start;
    border-radius: 8px;
    padding: 0.2rem 0.22rem;
}

.tour-collect-step-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    margin-top: 0.15rem;
    border: 2px solid #b8d8cf;
    background: #fff;
}

.tour-collect-step-row strong {
    display: block;
    color: #1f3e38;
    font-size: 0.65rem;
    line-height: 1.05;
}

.tour-collect-step-row span {
    display: block;
    color: #67827c;
    font-size: 0.58rem;
    line-height: 1.1;
    margin-top: 0.08rem;
}

.tour-collect-step-row.is-complete .tour-collect-step-dot {
    background: #0f9a78;
    border-color: #0f9a78;
    box-shadow: inset 0 0 0 2px #e9f8f3;
}

.tour-collect-step-row.is-active {
    background: rgba(15, 154, 120, 0.08);
    border: 1px solid rgba(15, 154, 120, 0.14);
    animation: collectActivePulse 2.2s ease-in-out infinite;
}

.tour-collect-step-row.is-active .tour-collect-step-dot {
    border-color: #57c8bb;
    box-shadow: 0 0 0 5px rgba(87, 200, 187, 0.14);
    animation: collectDotPulse 2.2s ease-in-out infinite;
}

.tour-collect-actions {
    border: 1px solid #dceae6;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.35rem;
    display: grid;
    align-content: start;
    gap: 0.35rem;
}

.tour-collect-btn {
    border: 1px solid #d6e5e0;
    background: #ffffff;
    color: #274d45;
    border-radius: 9px;
    padding: 0.38rem 0.45rem;
    font-size: 0.62rem;
    font-weight: 800;
    text-align: left;
    line-height: 1;
}

.tour-collect-btn-primary {
    border-color: rgba(15, 154, 120, 0.2);
    background: linear-gradient(180deg, #eaf8f3 0%, #def4ec 100%);
    color: #0b6a54;
    box-shadow: 0 0 0 0 rgba(15, 154, 120, 0.2);
    animation: collectButtonGlow 2.4s ease-in-out infinite;
}

.tour-report-graphic {
    width: 100%;
    height: 100%;
    border: 1px solid #d8e8e2;
    border-radius: 12px;
    background:
        radial-gradient(circle at 92% 8%, rgba(87, 200, 187, 0.16) 0%, rgba(87, 200, 187, 0) 48%),
        linear-gradient(180deg, #fbfefd 0%, #f3faf7 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 0.38rem;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 0.26rem;
}

.tour-report-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.4rem;
}

.tour-report-head-tags {
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.tour-report-live {
    display: inline-flex;
    align-items: center;
    gap: 0.18rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 154, 120, 0.18);
    background: rgba(15, 154, 120, 0.08);
    color: #0a6f58;
    padding: 0.14rem 0.35rem;
    font-size: 0.55rem;
    font-weight: 800;
    white-space: nowrap;
}

.tour-report-live::before {
    content: "";
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 999px;
    background: #0f9a78;
    box-shadow: 0 0 0 0 rgba(15, 154, 120, 0.24);
    animation: reportLivePulse 2s ease-in-out infinite;
}

.tour-report-title {
    margin: 0;
    color: #132a26;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.05;
}

.tour-report-sub {
    margin: 0.12rem 0 0;
    color: #5a756f;
    font-size: 0.62rem;
    line-height: 1.1;
}

.tour-report-range {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d2e4de;
    background: #ffffff;
    color: #355a52;
    padding: 0.14rem 0.36rem;
    font-size: 0.58rem;
    font-weight: 800;
    white-space: nowrap;
}

.tour-report-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.22rem;
}

.tour-report-kpi {
    border: 1px solid #dceae6;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.97);
    padding: 0.24rem 0.28rem 0.22rem;
    display: grid;
    gap: 0.06rem;
}

.tour-report-kpi span {
    color: #607974;
    font-size: 0.53rem;
    line-height: 1.05;
}

.tour-report-kpi strong {
    color: #1d3c36;
    font-size: 0.66rem;
    line-height: 1.05;
}

.tour-report-kpi em {
    font-style: normal;
    font-size: 0.54rem;
    font-weight: 800;
    line-height: 1;
    color: #64748b;
}

.tour-report-kpi em.is-up {
    color: #0b6a54;
}

.tour-report-kpi em.is-good {
    color: #0e7a61;
}

.tour-report-legend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.28rem;
    flex-wrap: wrap;
}

.tour-report-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
    color: #536e68;
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 1;
}

.tour-report-swatch {
    display: inline-block;
    width: 0.72rem;
    height: 0.32rem;
    border-radius: 999px;
    flex: 0 0 auto;
}

.tour-report-swatch-bars {
    background: linear-gradient(180deg, rgba(87, 200, 187, 0.95) 0%, rgba(15, 154, 120, 0.95) 100%);
}

.tour-report-swatch-line {
    height: 0;
    width: 0.78rem;
    border-top: 2px solid #f59e0b;
    border-radius: 0;
    position: relative;
}

.tour-report-swatch-line::after {
    content: "";
    position: absolute;
    right: -0.03rem;
    top: -0.2rem;
    width: 0.26rem;
    height: 0.26rem;
    border-radius: 999px;
    background: #fff;
    border: 2px solid #f59e0b;
}

.tour-report-chart {
    position: relative;
    border: 1px solid #dceae6;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.28rem 0.3rem 0.26rem;
    overflow: hidden;
}

.tour-report-gridline {
    position: absolute;
    left: 0.3rem;
    right: 0.3rem;
    height: 1px;
    background: #eaf3f0;
}

.tour-report-gridline:nth-child(1) { top: 24%; }
.tour-report-gridline:nth-child(2) { top: 48%; }
.tour-report-gridline:nth-child(3) { top: 72%; }

.tour-report-bars {
    position: absolute;
    left: 0.38rem;
    right: 0.38rem;
    bottom: 0.32rem;
    top: 0.28rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.24rem;
    align-items: end;
}

.tour-report-bars span {
    display: block;
    height: var(--h);
    border-radius: 6px 6px 3px 3px;
    background: linear-gradient(180deg, rgba(87, 200, 187, 0.95) 0%, rgba(15, 154, 120, 0.95) 100%);
    opacity: 0.9;
    box-shadow: 0 4px 10px rgba(15, 154, 120, 0.14);
    transform-origin: center bottom;
    animation: reportBarRise 1.7s cubic-bezier(0.34, 0.08, 0.2, 1) infinite;
}

.tour-report-bars span:nth-child(2) { animation-delay: 0.12s; }
.tour-report-bars span:nth-child(3) { animation-delay: 0.24s; }
.tour-report-bars span:nth-child(4) { animation-delay: 0.36s; }
.tour-report-bars span:nth-child(5) { animation-delay: 0.48s; }
.tour-report-bars span:nth-child(6) { animation-delay: 0.6s; }

.tour-report-line {
    position: absolute;
    left: 0.38rem;
    right: 0.38rem;
    top: 0.28rem;
    bottom: 0.32rem;
    width: calc(100% - 0.76rem);
    height: calc(100% - 0.6rem);
    overflow: visible;
}

.tour-report-line polyline {
    fill: none;
    stroke: #f59e0b;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.16));
    animation: reportLineDraw 2.15s ease-out infinite;
}

.tour-report-tracker-glow {
    fill: rgba(249, 115, 22, 0.22);
}

.tour-report-tracker {
    fill: #ffffff;
    stroke: #f97316;
    stroke-width: 2;
    filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.22));
}

.tour-report-dot {
    position: absolute;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    left: calc(0.38rem + (100% - 0.76rem) * var(--x) / 100);
    top: calc(0.28rem + (100% - 0.6rem) * var(--y) / 100);
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 2px solid #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.18);
}

.tour-report-dot.is-active {
    width: 0.46rem;
    height: 0.46rem;
    border-color: #f97316;
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.1);
    animation: reportDotPulse 2s ease-in-out infinite;
}

.tour-report-foot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem;
    border: 1px solid #dceae6;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.97);
    padding: 0.24rem 0.3rem;
}

.tour-report-foot div {
    display: grid;
    gap: 0.05rem;
}

.tour-report-foot span {
    color: #607974;
    font-size: 0.55rem;
    line-height: 1.05;
}

.tour-report-foot strong {
    color: #1e3b36;
    font-size: 0.65rem;
    line-height: 1.05;
}

@keyframes reportLivePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(15, 154, 120, 0.2);
        opacity: 0.8;
    }
    50% {
        box-shadow: 0 0 0 4px rgba(15, 154, 120, 0.06);
        opacity: 1;
    }
}

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

@keyframes assignCorePulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

@keyframes assignPacketMove {
    0%,
    8% {
        left: 0%;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    82% {
        opacity: 1;
    }
    92%,
    100% {
        left: calc(100% - 0.55rem);
        opacity: 0;
    }
}

@keyframes assignRowPulse {
    0%,
    100% {
        border-color: #dbeae6;
        background: rgba(255, 255, 255, 0.95);
    }
    50% {
        border-color: #bfe3d7;
        background: rgba(234, 248, 243, 0.95);
    }
}

@keyframes assignBarGrow {
    0%,
    100% {
        transform: scaleX(0.7);
        opacity: 0.9;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes collectActivePulse {
    0%,
    100% {
        background: rgba(15, 154, 120, 0.08);
        border-color: rgba(15, 154, 120, 0.14);
    }
    50% {
        background: rgba(15, 154, 120, 0.12);
        border-color: rgba(15, 154, 120, 0.24);
    }
}

@keyframes collectDotPulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(87, 200, 187, 0.1);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(87, 200, 187, 0.2);
    }
}

@keyframes collectButtonGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(15, 154, 120, 0.15);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(15, 154, 120, 0.08);
        transform: translateY(-1px);
    }
}

@keyframes reportBarRise {
    0%,
    100% {
        transform: scaleY(0.78) translateY(1px);
        opacity: 0.82;
    }
    35% {
        transform: scaleY(1.08) translateY(-1px);
        opacity: 1;
    }
    65% {
        transform: scaleY(0.92) translateY(0);
        opacity: 0.94;
    }
}

@keyframes reportLineDraw {
    0% {
        stroke-dashoffset: 240;
        opacity: 0.55;
    }
    18% {
        opacity: 1;
    }
    48% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    70% {
        stroke-dashoffset: -12;
        opacity: 0.95;
    }
    100% {
        stroke-dashoffset: -24;
        opacity: 0.9;
    }
}

@keyframes reportDotPulse {
    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.08);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.15);
    }
}

@media (max-width: 1180px) {
    .tour-map-curved {
        position: relative;
        top: auto;
    }

    .tour-curve-canvas {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: auto;
        height: auto;
        min-height: 0;
        overflow: visible;
        gap: 0.8rem;
    }

    .tour-curve-lines {
        display: none;
    }

    .tour-curve-card-1,
    .tour-curve-card-2,
    .tour-curve-card-3,
    .tour-curve-card-4,
    .tour-curve-card-5 {
        grid-column: 1;
        grid-row: auto;
    }

    .tour-curve-card {
        height: auto;
    }

    .tour-curve-card-2 .tour-curve-media {
        margin-top: 0.55rem;
        height: 10.5rem;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .tour-curve-card-2 .tour-curve-media img {
        background: transparent;
        width: auto;
        max-width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transform: none;
    }

    .tour-curve-card-4,
    .tour-curve-card-5 {
        margin-top: 0;
    }
}

@media (max-width: 760px) {
    .tour-map-curved {
        padding: 0.8rem;
    }

    .tour-curved-head {
        padding: 0.75rem;
    }

    .tour-curved-head h3 {
        font-size: 1rem;
    }

    .tour-curved-head p:last-child {
        font-size: 0.8rem;
    }

    .tour-curve-card {
        padding: 0.7rem;
    }

    .tour-curve-kicker {
        margin-left: 1.45rem;
        font-size: 0.69rem;
    }

    .tour-curve-card h4 {
        font-size: 0.92rem;
    }

    .tour-curve-card p {
        font-size: 0.8rem;
    }

    .tour-curve-media {
        height: auto;
        min-height: 7.4rem;
    }

    .tour-curve-card-2 .tour-curve-media {
        height: 12.4rem;
        min-height: 12.4rem;
    }

    .tour-curve-card-4 .tour-curve-media {
        height: auto;
        min-height: 12rem;
    }

    .tour-curve-card-5 .tour-curve-media {
        height: auto;
        min-height: 13rem;
    }

    .tour-templates-graphic,
    .tour-collect-graphic,
    .tour-report-graphic {
        height: auto;
    }

    .tour-templates-graphic {
        min-height: 11.7rem;
    }

    .tour-collect-graphic {
        min-height: 11.3rem;
    }

    .tour-report-graphic {
        min-height: 12.3rem;
    }
}

.about-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
}

.about-grid-text-only {
    grid-template-columns: 1fr;
    max-width: 920px;
}

.about {
    position: relative;
    background:
        radial-gradient(circle at 14% 0%, rgba(87, 200, 187, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(241, 249, 245, 0.96) 0%, rgba(248, 252, 251, 0.97) 100%);
    border-top: 0;
}

.about::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 219, 211, 0.75), transparent);
    opacity: 0.7;
    pointer-events: none;
}

.about-copy {
    display: grid;
    gap: 0.25rem;
}

.about-copy .eyebrow {
    margin-top: 0;
}

.about-copy h2 {
    margin-bottom: 0.6rem;
}

.about-copy p {
    color: var(--muted);
    margin: 0.6rem 0 0;
}

.about-lead {
    color: #21463f;
    font-weight: 700;
}

.about-standout {
    color: #153b33;
    font-weight: 800;
    border-left: 4px solid #0f9a78;
    background: rgba(15, 154, 120, 0.06);
    border-radius: 0 12px 12px 0;
    padding: 0.6rem 0.75rem;
}

.about-points {
    margin-top: 1rem;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-point {
    border: 1px solid #d5e5e0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(18, 34, 31, 0.05);
    padding: 0.8rem 0.85rem;
    display: grid;
    gap: 0.18rem;
}

.about-point strong {
    color: #14342e;
    font-size: 0.92rem;
    line-height: 1.1;
}

.about-point span {
    color: #5d7670;
    font-size: 0.84rem;
    line-height: 1.2;
}

.about-footer-note {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.about-footer-note span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d3e5df;
    background: rgba(255, 255, 255, 0.88);
    color: #31574f;
    padding: 0.28rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.about-media {
    position: relative;
}

.about-ops-board {
    border: 1px solid #cfe1db;
    border-radius: 18px;
    background:
        radial-gradient(circle at 92% 8%, rgba(87, 200, 187, 0.16), transparent 44%),
        radial-gradient(circle at 10% 90%, rgba(15, 154, 120, 0.08), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 248, 0.97));
    box-shadow: 0 14px 30px rgba(18, 34, 31, 0.08);
    padding: 0.9rem;
    display: grid;
    gap: 0.75rem;
    min-height: 340px;
}

.about-ops-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.6rem;
}

.about-ops-kicker {
    margin: 0;
    color: #0a6f58;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-ops-title {
    margin: 0.35rem 0 0;
    color: #14332d;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-ops-badge {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(15, 154, 120, 0.18);
    background: rgba(15, 154, 120, 0.08);
    color: #0a6f58;
    padding: 0.22rem 0.46rem;
    font-size: 0.64rem;
    font-weight: 800;
}

.about-ops-grid {
    display: grid;
    gap: 0.55rem;
}

.about-ops-card {
    border: 1px solid #d8e8e2;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    padding: 0.55rem 0.65rem;
    display: grid;
    gap: 0.14rem;
    box-shadow: 0 6px 14px rgba(18, 34, 31, 0.04);
}

.about-ops-card span {
    color: #5b756f;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-ops-card strong {
    color: #173a33;
    font-size: 0.78rem;
    line-height: 1.15;
}

.about-ops-card p {
    margin: 0;
    color: #617a74;
    font-size: 0.69rem;
    line-height: 1.2;
}

.about-ops-card-highlight {
    border-color: rgba(15, 154, 120, 0.2);
    background:
        linear-gradient(180deg, rgba(234, 248, 243, 0.8), rgba(248, 253, 251, 0.95));
}

.about-ops-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
    align-items: center;
}

.about-ops-node {
    border: 1px solid #d9e8e3;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.5rem 0.55rem;
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.about-ops-node small {
    color: #6a827d;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-ops-node strong {
    color: #203f39;
    font-size: 0.72rem;
    line-height: 1.15;
}

.about-ops-node-active {
    border-color: rgba(15, 154, 120, 0.22);
    background: rgba(15, 154, 120, 0.05);
}

.about-ops-line {
    position: relative;
    width: 46px;
    height: 10px;
}

.about-ops-line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 10px;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background-image: linear-gradient(#1f7a67 55%, rgba(31, 122, 103, 0) 0%);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    opacity: 0.7;
}

.about-ops-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #1f7a67;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    opacity: 0.8;
}

.about-ops-line i {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #0f9a78;
    transform: translateY(-50%);
    box-shadow: 0 0 0 0 rgba(15, 154, 120, 0.18);
    animation: aboutFlowMove 2.4s linear infinite;
}

.about-ops-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.about-ops-foot span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d3e5df;
    background: rgba(255, 255, 255, 0.9);
    color: #31574f;
    padding: 0.24rem 0.5rem;
    font-size: 0.64rem;
    font-weight: 700;
}

@keyframes aboutFlowMove {
    0% {
        left: 0;
        opacity: 0.3;
        box-shadow: 0 0 0 0 rgba(15, 154, 120, 0.08);
    }
    20% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        left: calc(100% - 8px);
        opacity: 0.25;
        box-shadow: 0 0 0 6px rgba(15, 154, 120, 0.02);
    }
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.about-overlay {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    border: 1px solid rgba(212, 230, 224, 0.9);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 26px rgba(18, 34, 31, 0.1);
    padding: 0.7rem 0.8rem;
}

.about-overlay-kicker {
    margin: 0;
    color: #0a6f58;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-overlay-text {
    margin: 0.35rem 0 0;
    color: #284a43;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
}

.contact-wrap {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.contact-message-controls {
    margin: -0.15rem 0 0.55rem;
}

.contact-message-toggle {
    border: 1px solid #d0e3dc;
    background: rgba(255, 255, 255, 0.9);
    color: #2a5048;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
    min-height: 36px;
    touch-action: manipulation;
}

.contact-message-toggle:hover {
    background: rgba(15, 154, 120, 0.08);
    border-color: rgba(15, 154, 120, 0.2);
    transform: translateY(-1px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 0.3rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.7rem;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(15, 154, 120, 0.35);
    border-color: var(--brand);
}

.contact-message-wrap.is-hidden {
    display: none;
}

.contact-form-status {
    margin: 0.1rem 0 0.7rem;
    font-size: 0.84rem;
    line-height: 1.35;
    font-weight: 700;
    color: #56716b;
    overflow-wrap: anywhere;
}

.contact-form-status.is-muted {
    color: #56716b;
}

.contact-form-status.is-success {
    color: #0a6f58;
}

.contact-form-status.is-error {
    color: #9e4e28;
}

.site-footer {
    background: #0f1d1a;
    color: #dbe7e3;
    padding: 2rem 0 1.2rem;
}

.footer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.socials {
    display: flex;
    gap: 0.55rem;
}

.socials a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid #29443e;
    border-radius: 50%;
}

.socials svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.copyright {
    margin: 1rem 0 0;
    text-align: center;
    color: #9cb6b0;
    font-size: 0.92rem;
}

/* Scroll reveal helper */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}

/* Responsive layout */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .about-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

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

    .shots-wrap {
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shot-a,
    .shot-b {
        grid-column: span 2;
        min-height: 0;
    }

    .shot-c,
    .shot-d,
    .shot-e {
        grid-column: span 1;
    }

    .price-card.featured {
        transform: translateY(0);
    }

    .hero-panel {
        animation: none;
    }

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

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

    .hero-copy {
        max-width: none;
    }

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

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

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

@media (max-width: 760px) {
    .section {
        padding: 3.8rem 0;
    }

    html {
        scroll-padding-top: 84px;
    }

    section[id] {
        scroll-margin-top: 84px;
    }

    .brand-area {
        gap: 0.55rem;
    }

    .brand-text {
        font-size: 0.92rem;
    }

    .logo-options {
        gap: 0.28rem;
    }

    .logo-sample {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.8rem;
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow);
        max-height: calc(100svh - 88px);
        overflow-y: auto;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 0.6rem 0.75rem;
        border-radius: 10px;
        line-height: 1.2;
    }

    .main-nav a:not(.btn):hover {
        background: rgba(15, 154, 120, 0.08);
    }

    .main-nav .btn {
        text-align: center;
        width: 100%;
    }

    .features-grid,
    .pricing-grid,
    .testimonial-grid,
    .shots-wrap,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .shots-wrap {
        min-height: 0;
    }

    .shot-a,
    .shot-b,
    .shot-c,
    .shot-d,
    .shot-e {
        grid-column: span 1;
    }

    .shot-a img,
    .shot-b img {
        height: auto;
        width: 100%;
        max-width: 100%;
    }

    .shot-lines {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .btn,
    .contact-form button[type="submit"] {
        min-height: 46px;
    }

    .hero-points {
        gap: 0.4rem;
    }

    .hero-points li {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-microproof {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .hero-value-board {
        padding: 0.65rem;
        gap: 0.55rem;
    }

    .hero-value-top {
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
    }

    .hero-value-top h3 {
        font-size: 0.98rem;
    }

    .hero-value-badge {
        width: fit-content;
    }

    .hero-kpi-strip {
        gap: 0.4rem;
    }

    .hero-kpi-item {
        padding: 0.38rem 0.42rem;
    }

    .hero-value-card {
        padding: 0.5rem;
        gap: 0.42rem;
    }

    .hero-value-card-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .hero-after-results {
        grid-template-columns: 1fr;
    }

    .hero-value-foot {
        gap: 0.35rem;
    }

    .hero-value-foot span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .about-ops-board {
        padding: 0.75rem;
        gap: 0.65rem;
        min-height: 0;
    }

    .about-ops-head {
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
    }

    .about-ops-badge {
        width: fit-content;
    }

    .about-ops-flow {
        grid-template-columns: 1fr;
    }

    .about-ops-line {
        display: none;
    }

    .about-ops-foot span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .pricing-private-main {
        padding: 0.85rem;
        gap: 0.75rem;
    }

    .pricing-private-head h3 {
        font-size: 1.12rem;
    }

    .pricing-private-head p:last-child {
        font-size: 0.9rem;
    }

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

    .pricing-private-block,
    .pricing-private-side-card {
        padding: 0.75rem;
    }

    .pricing-private-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-private-actions .btn {
        width: 100%;
    }

    .feature-card {
        padding: 0.85rem;
        gap: 0.5rem;
    }

    .feature-card h3 {
        font-size: 0.96rem;
    }

    .feature-card-outcome {
        font-size: 0.83rem;
        padding: 0.48rem 0.55rem;
    }

    .contact-wrap {
        gap: 1.15rem;
    }

    .contact-form {
        padding: 0.9rem;
    }

    .contact-form label {
        margin-bottom: 0.72rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }

    .contact-form .btn {
        width: 100%;
    }

    .about-standout {
        padding: 0.55rem 0.65rem;
    }

    .about-footer-note span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer-grid {
        text-align: center;
        justify-items: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 1.25rem, var(--container));
    }

    .site-header {
        background: rgba(244, 248, 247, 0.92);
    }

    .nav-wrap {
        min-height: 68px;
    }

    .hero {
        padding: 4.9rem 0 3.7rem;
    }

    .hero-grid {
        gap: 1.1rem;
    }

    .hero-copy {
        gap: 0.72rem;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        line-height: 1.04;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-points li {
        padding: 0.36rem 0.6rem;
        font-size: 0.76rem;
    }

    .hero-panel {
        padding: 0.7rem;
        border-radius: 16px;
    }

    .hero-value-board {
        padding: 0.6rem;
        gap: 0.5rem;
    }

    .section-head {
        margin-bottom: 1.35rem;
    }

    .section-note {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .features-grid {
        gap: 0.85rem;
    }

    .pricing-private-main {
        padding: 0.8rem;
    }

    .pricing-private-note {
        font-size: 0.84rem;
    }

    .contact-form {
        border-radius: 14px;
    }

    .footer-links {
        justify-content: center;
        gap: 0.8rem;
    }

    .copyright {
        font-size: 0.84rem;
        line-height: 1.35;
        padding-inline: 0.75rem;
    }
}
