:root {
    --bg: #f5f1e8;
    --bg-soft: #fbf8f2;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: #ffffff;
    --surface-alt: #fff6f3;
    --line: rgba(34, 30, 28, 0.1);
    --line-strong: rgba(34, 30, 28, 0.16);
    --text: #181311;
    --muted: #645a55;
    --brand: #dd3b31;
    --brand-deep: #b72822;
    --brand-soft: rgba(221, 59, 49, 0.12);
    --brand-wash: rgba(221, 59, 49, 0.08);
    --accent: #f6cf6d;
    --success: #1f8f62;
    --shadow-lg: 0 26px 80px rgba(44, 29, 22, 0.12);
    --shadow-md: 0 20px 46px rgba(44, 29, 22, 0.1);
    --shadow-sm: 0 10px 24px rgba(44, 29, 22, 0.08);
    --radius-xl: 2rem;
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-sm: 0.8rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background:
        radial-gradient(circle at 12% 14%, rgba(246, 207, 109, 0.3), transparent 26%),
        radial-gradient(circle at 88% 8%, rgba(221, 59, 49, 0.12), transparent 24%),
        linear-gradient(180deg, #f7f2ea 0%, #f3eee6 46%, #f9f6f0 100%);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

body.nav-drawer-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}

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

main,
section,
footer {
    position: relative;
}

[id] {
    scroll-margin-top: 6rem;
}

.container {
    width: min(1180px, calc(100% - 2.2rem));
    margin: 0 auto;
}

.glass-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--brand) 0%, #ff6b49 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(221, 59, 49, 0.22);
}

.button-primary:hover {
    box-shadow: 0 18px 34px rgba(221, 59, 49, 0.28);
}

.button-secondary {
    border-color: rgba(34, 30, 28, 0.14);
    background: rgba(255, 255, 255, 0.56);
    color: var(--text);
}

.button-secondary:hover {
    border-color: rgba(34, 30, 28, 0.2);
    background: rgba(255, 255, 255, 0.76);
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(34, 30, 28, 0.08);
    color: var(--brand-deep);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.section-title,
.hero-title,
.final-cta-title {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.section-heading {
    width: min(700px, 100%);
    margin: 0 auto 2.6rem;
    text-align: center;
}

.section-heading-left {
    margin-left: 0;
    text-align: left;
}

.section-title {
    margin-top: 1rem;
    font-size: clamp(2rem, 4.1vw, 3.5rem);
    line-height: 1.04;
}

.section-subtitle {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.7;
}

.section-subtitle-left {
    max-width: 36rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 1rem 0 0;
}

.site-header-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem 1.4rem;
    width: min(1240px, calc(100% - 1.6rem));
    margin: 0 auto;
    padding: 0.95rem 1.1rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(250, 246, 239, 0.72);
    box-shadow: 0 16px 38px rgba(44, 29, 22, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.brand-lockup,
.footer-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-lockup-logo {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 1rem;
    box-shadow: 0 12px 22px rgba(221, 59, 49, 0.14);
}

.brand-lockup-copy {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
    min-width: 0;
}

.brand-lockup-name {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-lockup-tag {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.35;
}

.nav-toggle {
    display: none;
}

.header-drawer-backdrop {
    display: none;
}

.header-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-panel-top {
    display: none;
}

.header-panel-brand {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-width: 0;
}

.header-panel-brand-logo {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 0.95rem;
    box-shadow: 0 12px 24px rgba(221, 59, 49, 0.18);
}

.header-panel-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
}

.header-panel-brand-name {
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.header-panel-brand-hint {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.3;
}

.header-panel-close {
    display: none;
}

.header-panel.is-dragging,
.header-drawer-backdrop.is-dragging {
    transition: none;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 1.35rem;
}

.site-nav-link {
    color: rgba(24, 19, 17, 0.76);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.site-nav-link:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
}

.language-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.34rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.language-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 4.05rem;
    padding: 0.64rem 0.78rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.language-button:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.5);
}

.language-button.is-active {
    border-color: rgba(221, 59, 49, 0.18);
    background: linear-gradient(135deg, rgba(221, 59, 49, 0.12), rgba(255, 255, 255, 0.78));
    color: var(--brand-deep);
}

.flag {
    width: 1rem;
    height: 1rem;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.header-cta {
    min-height: 3rem;
    padding-inline: 1.15rem;
}

.hero-section {
    padding: 3.2rem 0 2rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.hero-glow-one {
    top: 8%;
    left: -6%;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(246, 207, 109, 0.28), transparent 70%);
    animation: glowDrift 11s ease-in-out infinite alternate;
}

.hero-glow-two {
    top: 2%;
    right: -5%;
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(221, 59, 49, 0.16), transparent 70%);
    animation: glowDrift 13s ease-in-out infinite alternate-reverse;
}

.hero-grid {
    position: absolute;
    inset: 18% auto auto 52%;
    width: 38rem;
    height: 26rem;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(24, 19, 17, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 19, 17, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, #000 34%, transparent 72%);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    gap: 3rem;
}

.hero-copy {
    padding: 4rem 0 2rem;
}

.hero-title {
    margin-top: 1.1rem;
    max-width: 12ch;
    font-size: clamp(3rem, 6.1vw, 5.8rem);
    line-height: 0.95;
}

.hero-subtitle {
    margin-top: 1.4rem;
    max-width: 41rem;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero-proof-list,
.credibility-grid,
.steps-grid,
.feature-grid,
.use-cases-grid {
    display: grid;
}

.hero-proof-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: 46rem;
    margin-top: 1.7rem;
}

.proof-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.95rem 1rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.proof-card-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.7rem;
    background: rgba(221, 59, 49, 0.1);
    color: var(--brand-deep);
    font-size: 0.76rem;
    font-weight: 800;
}

.proof-card-text strong,
.credibility-card strong,
.feature-card-title,
.use-case-card-title {
    display: block;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.proof-card-text span,
.credibility-card span,
.feature-card-text,
.use-case-card-text,
.comparison-list li,
.step-card-text,
.faq-item p,
.footer-copy {
    display: block;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.hero-visual {
    position: relative;
    min-height: 720px;
}

.product-stage {
    position: relative;
    height: 100%;
    padding: 3rem 0 0 1rem;
}

.product-window {
    position: relative;
    padding: 1.1rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.window-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.95rem;
}

.window-dots {
    display: inline-flex;
    gap: 0.36rem;
}

.window-dots span {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: rgba(24, 19, 17, 0.12);
}

.window-dots span:first-child {
    background: rgba(221, 59, 49, 0.35);
}

.window-label,
.workflow-card-label,
.mini-stat-label,
.floating-note-kicker,
.comparison-card-label,
.preview-sheet-overline,
.report-sheet-overline,
.preview-box-label,
.preview-content-label,
.team-card-pill,
.footer-title,
.report-section-label,
.report-meta-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(24, 19, 17, 0.52);
}

.workflow-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1rem;
}

.workflow-column {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.mini-stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.mini-stat-card,
.workflow-card,
.export-card,
.floating-note,
.credibility-card,
.step-card,
.comparison-card,
.feature-card,
.use-case-card,
.team-card,
.faq-item,
.preview-sheet-shell,
.final-cta-card {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-md);
}

.mini-stat-card {
    padding: 1rem;
}

.mini-stat-value {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.mini-stat-label {
    margin-top: 0.4rem;
}

.workflow-card {
    padding: 1rem;
}

.workflow-card-head,
.export-card-head,
.team-card-top,
.preview-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.workflow-chip,
.export-badge,
.preview-sheet-pill,
.signature-chip,
.connector-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(24, 19, 17, 0.06);
    color: var(--text);
    font-size: 0.74rem;
    font-weight: 800;
}

.workflow-chip-brand,
.export-badge,
.preview-sheet-pill,
.team-card-pill {
    background: rgba(221, 59, 49, 0.12);
    color: var(--brand-deep);
}

.workflow-card-text,
.structured-list,
.export-status,
.report-sheet-footer,
.team-card-value {
    margin-top: 0.8rem;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--muted);
}

.workflow-card-text,
.structured-list {
    margin-top: 1rem;
}

.structured-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.structured-list li {
    padding: 0.8rem 0.9rem;
    border-radius: 1rem;
    background: rgba(24, 19, 17, 0.04);
    color: var(--text);
    font-size: 0.88rem;
}

.workflow-connector {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-inline: 0.5rem;
}

.connector-line {
    height: 1px;
    flex: 1 1 auto;
    background: linear-gradient(90deg, rgba(221, 59, 49, 0.24), rgba(24, 19, 17, 0.12));
}

.export-card {
    padding: 1rem;
    min-height: 100%;
}

.report-sheet {
    margin-top: 1rem;
    padding: 1.1rem;
    border-radius: 1.25rem;
    background: #fffdfa;
    border: 1px solid rgba(24, 19, 17, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.report-sheet-top,
.report-sheet-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.report-sheet-title,
.preview-sheet-title {
    margin-top: 0.45rem;
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.report-sheet-code,
.preview-sheet-ref {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(24, 19, 17, 0.05);
    font-size: 0.76rem;
    font-weight: 800;
}

.report-sheet-meta {
    margin-top: 1rem;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(24, 19, 17, 0.08);
    border-bottom: 1px solid rgba(24, 19, 17, 0.08);
}

.report-sheet-meta strong {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.96rem;
    letter-spacing: -0.02em;
}

.report-sheet-section {
    margin-top: 0.95rem;
}

.report-sheet-section p {
    margin-top: 0.4rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.report-sheet-footer {
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px dashed rgba(24, 19, 17, 0.12);
}

.floating-note {
    position: absolute;
    width: min(13rem, 100%);
    padding: 1rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: floatCard 7s ease-in-out infinite;
}

.floating-note strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.95rem;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.floating-note-top {
    top: 1rem;
    right: -1.4rem;
}

.floating-note-middle {
    top: 47%;
    left: -1rem;
    animation-delay: -2s;
}

.floating-note-bottom {
    right: 1.2rem;
    bottom: -1.3rem;
    animation-delay: -4s;
}

.credibility-strip {
    padding: 1.2rem 0 0;
}

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

.credibility-card {
    padding: 1.15rem;
}

.credibility-card strong {
    margin-top: 0.2rem;
}

.section-impact {
    padding-top: 2rem;
}

.impact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 1.4rem;
    align-items: start;
}

.impact-copy {
    position: sticky;
    top: 7.2rem;
}

.impact-assumptions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.35rem;
}

.impact-assumption,
.calculator-results-kicker,
.calculator-process-tag,
.priority-card-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2rem;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(34, 30, 28, 0.08);
    color: rgba(24, 19, 17, 0.68);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.impact-calculator {
    padding: 1.3rem;
    border-radius: 1.8rem;
}

.calculator-input-grid,
.calculator-metric-grid,
.calculator-process-grid {
    display: grid;
    gap: 0.9rem;
}

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

.calculator-field {
    display: grid;
    gap: 0.55rem;
}

.calculator-field-label {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.calculator-field input {
    width: 100%;
    min-height: 3.4rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(34, 30, 28, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    outline: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.calculator-field input:focus {
    border-color: rgba(221, 59, 49, 0.28);
    box-shadow: 0 0 0 4px rgba(221, 59, 49, 0.1);
}

.calculator-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(34, 30, 28, 0.08);
    border-bottom: 1px solid rgba(34, 30, 28, 0.08);
}

.calculator-note {
    max-width: 42rem;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

.calculator-button {
    flex-shrink: 0;
}

.calculator-results {
    margin-top: 1rem;
}

.calculator-results-summary {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.calculator-metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.1rem;
}

.calculator-metric-card,
.calculator-process-card,
.priority-card {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
}

.calculator-metric-card {
    padding: 1.2rem;
}

.calculator-metric-card-brand {
    background: linear-gradient(180deg, rgba(255, 245, 242, 0.98), rgba(255, 255, 255, 0.84));
    box-shadow: 0 18px 46px rgba(221, 59, 49, 0.12);
}

.calculator-metric-label {
    display: block;
    color: rgba(24, 19, 17, 0.62);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.calculator-metric-value {
    display: block;
    margin-top: 0.7rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.45rem, 2.3vw, 2.05rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
}

.calculator-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.calculator-process-card {
    padding: 1.25rem;
}

.calculator-process-card-accent {
    background: linear-gradient(180deg, rgba(255, 248, 243, 0.98), rgba(255, 255, 255, 0.84));
}

.calculator-process-title {
    margin-top: 0.85rem;
    font-family: "Sora", sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.calculator-process-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(24, 19, 17, 0.12);
    color: var(--muted);
    font-size: 0.95rem;
}

.calculator-process-line strong {
    color: var(--text);
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    max-width: 13rem;
    text-align: right;
}

.calculator-process-value-main {
    display: block;
}

.calculator-process-value-note {
    display: block;
    margin-top: 0.22rem;
    color: var(--muted);
    font-family: "Manrope", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.priority-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.priority-card {
    padding: 1.2rem;
}

.priority-card-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.priority-card-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(221, 59, 49, 0.12);
    color: var(--brand-deep);
    font-family: "Sora", sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.priority-card-title {
    margin-top: 0.9rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.2rem, 1.7vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.priority-card-text {
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.62;
}

.priority-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.95rem;
}

.priority-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.95rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(24, 19, 17, 0.05);
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.section-coupon {
    padding-top: 2.4rem;
}

.coupon-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    justify-content: center;
}

.coupon-card {
    width: 100%;
    padding: 1.85rem 2rem;
    border-radius: 1.85rem;
    border: 1px solid rgba(24, 19, 17, 0.08);
    background:
        radial-gradient(circle at top right, rgba(246, 207, 109, 0.2), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 244, 0.98));
    box-shadow: 0 24px 60px rgba(46, 31, 23, 0.08);
}

.coupon-main {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.98fr);
    align-items: stretch;
    gap: 1.8rem;
}

.coupon-copy {
    display: grid;
    align-content: center;
    align-items: start;
    gap: 0;
    padding: 0.25rem 1.85rem 0.25rem 0;
    border-right: 1px solid rgba(24, 19, 17, 0.08);
}

.coupon-hero-code {
    margin: 1rem 0 0;
    color: var(--brand-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1.3;
    text-transform: uppercase;
}

.coupon-hero-code:empty {
    display: none;
}

.coupon-copy .coupon-title {
    max-width: 9ch;
    margin-top: 0.45rem;
    font-size: clamp(2.45rem, 4.8vw, 4rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.05em;
}

html[lang="pt-BR"] .coupon-copy .coupon-title {
    font-size: clamp(1.23rem, 2.42vw, 2.02rem);
}

.coupon-copy .coupon-text {
    max-width: 26rem;
    margin-top: 0.95rem;
    font-size: 1rem;
    line-height: 1.65;
}

.coupon-copy .coupon-text:empty {
    display: none;
}

.coupon-copy .coupon-meta {
    width: min(100%, 34rem);
    margin-top: 1.1rem;
}

.coupon-copy .coupon-copy-feedback {
    margin-top: 0.7rem;
    text-align: left;
}

.coupon-panel {
    display: grid;
    align-content: start;
    gap: 1.05rem;
    padding: 1.35rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 253, 250, 0.98));
    border: 1px solid rgba(24, 19, 17, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 16px 34px rgba(64, 38, 22, 0.06);
}

.coupon-title {
    margin-top: 0.95rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.coupon-text {
    margin-top: 0.95rem;
    max-width: 38rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.62;
}

.coupon-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 1.35rem;
    background: rgba(248, 245, 240, 0.84);
    border: 1px solid rgba(24, 19, 17, 0.08);
}

.coupon-meta-copy {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.coupon-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(24, 19, 17, 0.5);
}

.coupon-code {
    font-family: "Sora", sans-serif;
    font-size: clamp(0.93rem, 1.72125vw, 1.377rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.95;
    color: var(--text);
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.coupon-code-hint {
    color: rgba(24, 19, 17, 0.56);
    font-size: 0.82rem;
    line-height: 1.45;
}

.coupon-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.1rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(221, 59, 49, 0.12);
    color: var(--brand-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-align: center;
}

.coupon-webapp-copy {
    display: grid;
    gap: 0.42rem;
    padding: 0;
}

.coupon-webapp-label {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(24, 19, 17, 0.48);
}

.coupon-webapp-label:empty {
    display: none;
}

.coupon-panel .coupon-webapp-title {
    margin-top: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.75rem, 2.8vw, 2.45rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
    max-width: 11ch;
}

.coupon-panel .coupon-webapp-text {
    margin-top: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.58;
    max-width: 28rem;
}

.coupon-copy-action {
    justify-self: end;
    width: fit-content;
    min-width: 0;
    min-height: 2.55rem;
    padding: 0.58rem 1rem;
    font-size: 0.96rem;
    line-height: 1;
    white-space: nowrap;
    border-color: rgba(24, 19, 17, 0.11);
    background: rgba(255, 255, 255, 0.9);
}

.coupon-copy-action:hover {
    border-color: rgba(24, 19, 17, 0.18);
    background: rgba(255, 255, 255, 1);
}

.coupon-copy-action.is-copied {
    border-color: #199c57;
    background: linear-gradient(180deg, #27c26a, #1fa85b);
    color: #fff;
    box-shadow: 0 12px 24px rgba(31, 168, 91, 0.28);
}

.coupon-copy-action.is-error {
    border-color: #d94c43;
    background: linear-gradient(180deg, #fbe1df, #f7d0cc);
    color: #a12720;
    box-shadow: 0 10px 22px rgba(217, 76, 67, 0.16);
}

.coupon-copy .coupon-meta.is-copied {
    border-color: rgba(31, 168, 91, 0.34);
    background: linear-gradient(180deg, rgba(235, 252, 242, 0.98), rgba(218, 247, 228, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 14px 28px rgba(31, 168, 91, 0.14);
}

.coupon-copy .coupon-meta.is-error {
    border-color: rgba(217, 76, 67, 0.3);
    background: linear-gradient(180deg, rgba(253, 239, 238, 0.98), rgba(249, 222, 219, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 14px 28px rgba(217, 76, 67, 0.1);
}

.coupon-panel-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
}

.coupon-copy-feedback {
    min-height: 1.1rem;
    margin: 0;
    padding: 0;
    color: rgba(24, 19, 17, 0.62);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: right;
}

.coupon-copy-feedback.is-copied {
    color: #1a7b4a;
}

.coupon-copy-feedback.is-error {
    color: #b3372f;
}

.coupon-webapp-action {
    width: 100%;
    min-height: 3.7rem;
    font-size: 1rem;
    box-shadow: 0 18px 35px rgba(221, 59, 49, 0.24);
}

.coupon-webapp-action:hover {
    box-shadow: 0 20px 40px rgba(221, 59, 49, 0.3);
}

.section-block {
    padding: 5rem 0 0;
}

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

.step-card,
.feature-card,
.use-case-card {
    position: relative;
    overflow: hidden;
    padding: 1.35rem;
}

.step-number,
.feature-icon,
.use-case-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(221, 59, 49, 0.12);
    color: var(--brand-deep);
    font-family: "Sora", sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.step-card-title,
.feature-card-title,
.use-case-card-title {
    margin-top: 1.1rem;
}

.step-card-text,
.feature-card-text,
.use-case-card-text {
    margin-top: 0.7rem;
}

.comparison-layout {
    display: grid;
    gap: 2rem;
}

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

.comparison-card {
    padding: 1.4rem;
}

.comparison-card-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(245, 238, 233, 0.82));
}

.comparison-card-brand {
    background: linear-gradient(180deg, rgba(255, 249, 247, 0.96), rgba(255, 255, 255, 0.84));
    box-shadow: 0 20px 50px rgba(221, 59, 49, 0.1);
}

.comparison-card-title {
    margin-top: 0.9rem;
    font-family: "Sora", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.comparison-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.comparison-list li {
    position: relative;
    padding-left: 1.3rem;
}

.comparison-list li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: rgba(24, 19, 17, 0.22);
}

.comparison-card-brand .comparison-list li::before {
    background: var(--brand);
}

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

.feature-card {
    min-height: 17rem;
}

.preview-layout,
.team-layout,
.faq-layout,
.footer-layout {
    display: grid;
    gap: 2rem;
}

.preview-layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
}

.benefit-checklist {
    list-style: none;
    display: grid;
    gap: 0.95rem;
    margin-top: 1.6rem;
}

.benefit-checklist li {
    position: relative;
    padding-left: 2rem;
    color: var(--muted);
    line-height: 1.65;
}

.benefit-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0 26%, transparent 28%),
        linear-gradient(135deg, rgba(31, 143, 98, 0.28), rgba(31, 143, 98, 0.12));
    box-shadow: inset 0 0 0 1px rgba(31, 143, 98, 0.18);
}

.preview-sheet-shell {
    padding: 1.2rem;
}

.preview-sheet-header {
    padding-bottom: 0.9rem;
}

.preview-sheet-pill-soft {
    background: rgba(24, 19, 17, 0.06);
    color: var(--text);
}

.preview-sheet {
    padding: 1.2rem;
    border-radius: 1.4rem;
    background: #fffefa;
    border: 1px solid rgba(24, 19, 17, 0.08);
}

.preview-sheet-title-row,
.preview-sheet-grid,
.preview-signature-row,
.footer-bottom-inner {
    display: flex;
}

.preview-sheet-title-row {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.preview-sheet-grid {
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.preview-sheet-box,
.preview-content-block {
    border-radius: 1rem;
    border: 1px solid rgba(24, 19, 17, 0.08);
    background: rgba(24, 19, 17, 0.025);
}

.preview-sheet-box {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 12rem;
    padding: 0.9rem;
}

.preview-sheet-box strong {
    display: block;
    margin-top: 0.36rem;
    letter-spacing: -0.02em;
}

.preview-content-block {
    margin-top: 0.85rem;
    padding: 1rem;
}

.preview-content-block p {
    margin-top: 0.45rem;
    color: var(--muted);
    line-height: 1.65;
}

.preview-signature-row {
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.section-security .section-heading {
    margin-bottom: 2rem;
}

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

.security-card {
    padding: 1.3rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-md);
}

.security-card-kicker,
.security-note-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(24, 19, 17, 0.5);
}

.security-card-title {
    margin-top: 0.8rem;
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.security-card-text {
    margin-top: 0.7rem;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.security-note {
    margin-top: 1.2rem;
    padding: 1.2rem 1.3rem;
    border-radius: 1.4rem;
    background:
        radial-gradient(circle at top right, rgba(221, 59, 49, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 243, 0.8));
}

.security-note-text {
    margin-top: 0.7rem;
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.7;
}

.use-cases-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

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

.team-card {
    padding: 1.3rem;
}

.team-card-value {
    margin-top: 0;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.faq-layout {
    grid-template-columns: 1fr;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    padding: 1rem 1.15rem;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(24, 19, 17, 0.06);
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin-top: 0.95rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(24, 19, 17, 0.08);
}

.section-final-cta {
    padding-bottom: 5.4rem;
}

.final-cta-card {
    padding: 2.2rem;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(246, 207, 109, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 247, 0.88));
}

.final-cta-title {
    margin-top: 1rem;
    font-size: clamp(2.2rem, 4.8vw, 4.2rem);
    line-height: 1.02;
}

.final-cta-text {
    width: min(42rem, 100%);
    margin: 1rem auto 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.7;
}

.final-cta-actions {
    justify-content: center;
}

.site-footer {
    border-top: 1px solid rgba(24, 19, 17, 0.08);
    background: rgba(255, 255, 255, 0.38);
}

.footer-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.72fr) minmax(0, 1.15fr);
    align-items: start;
    padding: 2.4rem 0;
}

.footer-copy {
    max-width: 24rem;
    margin-top: 1rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.78rem;
    width: fit-content;
    margin-top: 1rem;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 30, 28, 0.1);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
    transform: translateY(-1px);
    border-color: rgba(221, 59, 49, 0.2);
    background: rgba(255, 255, 255, 0.92);
}

.footer-social-icon {
    width: 1.35rem;
    height: 1.35rem;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 3.5rem;
}

.footer-title {
    color: var(--text);
}

.footer-link {
    display: block;
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-link:hover {
    color: var(--text);
}

.footer-location-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
}

.footer-location-copy {
    display: grid;
    gap: 0.55rem;
}

.footer-location-label {
    color: var(--brand-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-location-address {
    display: grid;
    gap: 0.18rem;
    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.55;
}

.footer-location-address span:last-child {
    color: var(--muted);
}

.footer-contact-row {
    display: grid;
    gap: 0.35rem;
}

.footer-contact-link {
    width: fit-content;
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-word;
}

.footer-contact-link:hover {
    color: var(--brand-deep);
}

.footer-map-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2.85rem;
    padding: 0.82rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 30, 28, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-map-action:hover {
    transform: translateY(-1px);
    border-color: rgba(221, 59, 49, 0.24);
    background: rgba(255, 255, 255, 0.92);
}

.footer-map-frame {
    overflow: hidden;
    min-height: 220px;
    border-radius: 1.2rem;
    border: 1px solid rgba(34, 30, 28, 0.08);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.footer-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(24, 19, 17, 0.08);
    padding: 1rem 0 1.4rem;
}

.footer-bottom-inner {
    justify-content: space-between;
    align-items: center;
    color: rgba(24, 19, 17, 0.6);
    font-size: 0.86rem;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes glowDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(16px, 18px, 0) scale(1.08);
    }
}

@media (max-width: 1180px) {
    .impact-layout,
    .hero-layout,
    .preview-layout,
    .team-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-top: 2.2rem;
    }

    .hero-title {
        max-width: 14ch;
    }

    .hero-visual {
        min-height: auto;
    }

    .product-stage {
        padding-left: 0;
    }

    .impact-copy {
        position: static;
    }

    .floating-note-middle {
        left: 0;
    }

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

@media (max-width: 980px) {
    .site-header.is-open {
        z-index: 60;
    }

    .site-header {
        padding-top: 0.7rem;
    }

    .site-header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.26rem;
        width: 3.15rem;
        height: 3.15rem;
        padding: 0.78rem;
        border-radius: 1.05rem;
        border: 1px solid rgba(24, 19, 17, 0.1);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56));
        box-shadow:
            0 16px 30px rgba(44, 29, 22, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .nav-toggle-line {
        width: 1.12rem;
        height: 2px;
        border-radius: 999px;
        background: var(--text);
        transform-origin: center;
        transition: transform 0.24s ease, opacity 0.2s ease;
    }

    .nav-toggle-text {
        display: none;
    }

    .site-header.is-open .nav-toggle-line:nth-child(1) {
        transform: translateY(0.39rem) rotate(45deg);
    }

    .site-header.is-open .nav-toggle-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0.45);
    }

    .site-header.is-open .nav-toggle-line:nth-child(3) {
        transform: translateY(-0.39rem) rotate(-45deg);
    }

    .header-drawer-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 48;
        opacity: 0;
        pointer-events: none;
        border: 0;
        background:
            linear-gradient(180deg, rgba(17, 12, 10, 0.18), rgba(17, 12, 10, 0.34)),
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        transition: opacity 0.28s ease;
    }

    .site-header.is-open .header-drawer-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .header-panel {
        position: fixed;
        top: 0.8rem;
        right: 0.8rem;
        z-index: 49;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: min(clamp(15.5rem, 62vw, 18.75rem), calc(100vw - 1.1rem));
        max-height: min(31rem, calc(100svh - 1.6rem));
        gap: 0.7rem;
        margin-top: 0;
        padding: 0.8rem;
        border-radius: 1.3rem;
        border: 1px solid rgba(255, 255, 255, 0.76);
        background:
            linear-gradient(180deg, rgba(252, 248, 242, 0.86), rgba(255, 255, 255, 0.68)),
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.56), transparent 38%);
        box-shadow:
            0 28px 60px rgba(27, 18, 14, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(24px) saturate(165%);
        -webkit-backdrop-filter: blur(24px) saturate(165%);
        transform: translateX(calc(100% + 1.25rem));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow: auto;
        overscroll-behavior: contain;
        will-change: transform;
        transition: transform 0.32s ease, opacity 0.24s ease, visibility 0.24s ease;
    }

    .site-header.is-open .header-panel {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-panel-top {
        display: none;
    }

    .site-nav {
        align-items: stretch;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0;
    }

    .site-nav-link {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        min-height: 2.6rem;
        padding: 0.72rem 0.82rem;
        border-radius: 0.9rem;
        border: 1px solid rgba(24, 19, 17, 0.08);
        background: rgba(255, 255, 255, 0.54);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
        font-size: 0.88rem;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
        margin-top: 0;
        padding-top: 0;
    }

    .marketing-language-bar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.35rem;
        width: 100%;
        padding: 0.34rem;
        border-radius: 1rem;
        justify-content: stretch;
        flex-wrap: nowrap;
    }

    .marketing-language-bar .language-button {
        width: 100%;
        min-width: 0;
        min-height: 2.45rem;
        padding: 0.56rem 0.42rem;
        gap: 0.28rem;
        font-size: 0.72rem;
    }

    .marketing-language-bar .flag {
        width: 0.88rem;
        height: 0.88rem;
    }

    .header-cta {
        width: 100%;
        min-height: 2.75rem;
        padding-inline: 0.95rem;
        font-size: 0.9rem;
    }

    .workflow-shell,
    .calculator-input-grid,
    .calculator-metric-grid,
    .calculator-process-grid,
    .priority-stack,
    .steps-grid,
    .feature-grid,
    .security-grid,
    .comparison-grid,
    .footer-layout {
        grid-template-columns: 1fr;
    }

    .calculator-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .coupon-main {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .coupon-copy {
        padding: 0 0 1rem;
        border-right: 0;
        border-bottom: 1px solid rgba(24, 19, 17, 0.08);
    }

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

    .footer-links {
        justify-content: flex-start;
    }

    .footer-location-card {
        max-width: 34rem;
    }

    .floating-note-top,
    .floating-note-middle,
    .floating-note-bottom {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
    }

    .product-stage {
        display: grid;
        gap: 1rem;
    }
}

@media (max-width: 760px) {
    .container {
        width: calc(100% - 1rem);
    }

    .site-header-inner {
        width: calc(100% - 0.8rem);
        padding: 0.78rem 0.8rem;
        border-radius: 1.1rem;
    }

    .brand-lockup-tag {
        display: none;
    }

    .hero-section {
        padding-top: 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 13vw, 4rem);
        max-width: 11ch;
    }

    .hero-subtitle,
    .section-subtitle,
    .final-cta-text {
        font-size: 0.98rem;
    }

    .hero-proof-list,
    .credibility-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .impact-assumptions {
        gap: 0.55rem;
    }

    .mini-stat-row,
    .preview-sheet-grid {
        grid-template-columns: 1fr;
    }

    .preview-sheet-grid {
        display: grid;
    }

    .preview-sheet-box {
        min-width: 0;
    }

    .section-block {
        padding-top: 4.3rem;
    }

    .section-coupon {
        padding-top: 2rem;
    }

    .coupon-card {
        padding: 1.15rem;
        border-radius: 1.45rem;
    }

    .coupon-panel {
        padding: 1rem;
        border-radius: 1.25rem;
    }

    .coupon-copy .coupon-title {
        max-width: none;
        font-size: clamp(2.2rem, 12vw, 3.1rem);
    }

    html[lang="pt-BR"] .coupon-copy .coupon-title {
        font-size: clamp(1.11rem, 6.05vw, 1.56rem);
    }

    .coupon-meta {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .coupon-copy-action {
        width: fit-content;
        min-width: 0;
        justify-self: start;
    }

    .coupon-copy .coupon-meta {
        width: 100%;
    }

    .coupon-panel-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .coupon-copy-feedback {
        text-align: left;
    }

    .section-final-cta {
        padding-bottom: 4.4rem;
    }

    .product-window,
    .impact-calculator,
    .preview-sheet-shell,
    .final-cta-card,
    .team-card {
        padding: 0.95rem;
        border-radius: 1.35rem;
    }

    .report-sheet,
    .preview-sheet {
        padding: 0.95rem;
    }

    .report-sheet-top,
    .report-sheet-meta,
    .preview-sheet-title-row,
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-layout {
        padding: 2rem 0;
    }

    .footer-location-card {
        width: 100%;
        max-width: none;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 0.8rem);
    }

    .site-header {
        padding-top: 0.55rem;
    }

    .site-header-inner {
        width: calc(100% - 0.6rem);
        padding: 0.72rem;
        gap: 0.72rem;
        border-radius: 1rem;
    }

    .brand-lockup {
        gap: 0.65rem;
    }

    .brand-lockup-logo {
        width: 2.45rem;
        height: 2.45rem;
        border-radius: 0.88rem;
    }

    .brand-lockup-name {
        font-size: 0.94rem;
    }

    .header-panel {
        top: 0.58rem;
        right: 0.58rem;
        width: min(clamp(14.75rem, 64vw, 17.25rem), calc(100vw - 0.85rem));
        max-height: min(28rem, calc(100svh - 1.2rem));
        padding: 0.72rem;
        border-radius: 1.18rem;
    }

    .site-nav {
        gap: 0.44rem;
    }

    .site-nav-link {
        min-height: 2.42rem;
        padding: 0.68rem 0.78rem;
        font-size: 0.84rem;
    }

    .marketing-language-bar {
        gap: 0.28rem;
        padding: 0.3rem;
        border-radius: 0.92rem;
    }

    .marketing-language-bar .language-button {
        min-height: 2.28rem;
        padding: 0.5rem 0.34rem;
        font-size: 0.68rem;
    }

    .marketing-language-bar .flag {
        width: 0.78rem;
        height: 0.78rem;
    }

    .header-cta {
        min-height: 2.55rem;
        padding-inline: 0.85rem;
        font-size: 0.84rem;
    }

    .coupon-copy-action {
        width: 100%;
        justify-self: stretch;
        white-space: normal;
    }

.footer-links {
    gap: 1.25rem;
}

    .footer-social-link {
        width: 100%;
        justify-content: center;
    }

    .footer-map-frame,
    .footer-map-frame iframe {
        min-height: 200px;
    }
}

@media (max-width: 520px) {
    .button,
    .hero-actions .button {
        width: 100%;
    }

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

    .language-bar {
        width: 100%;
        justify-content: space-between;
    }

    .language-button {
        flex: 1 1 0;
        min-width: 0;
        padding-inline: 0.5rem;
    }

    .hero-title {
        max-width: 9.5ch;
    }

    .comparison-card,
    .step-card,
    .feature-card,
    .use-case-card,
    .proof-card,
    .credibility-card {
        padding: 1rem;
    }

    .workflow-card,
    .export-card,
    .mini-stat-card {
        padding: 0.9rem;
    }

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

.hero-sales-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    gap: 1.4rem;
    align-items: start;
}

.hero-story {
    display: grid;
    gap: 1.3rem;
}

.hero-copy-sales {
    padding: 2.2rem 0 0;
}

.hero-copy-sales .hero-title {
    max-width: 12ch;
}

.hero-copy-sales .hero-proof-list {
    max-width: none;
}

.hero-visual-sales {
    min-height: auto;
}

.hero-visual-sales .product-stage {
    padding: 0;
}

.hero-visual-sales .product-window {
    box-shadow: 0 22px 60px rgba(44, 29, 22, 0.1);
}

.calculator-dock-outer {
    position: sticky;
    top: 7.1rem;
}

.calculator-dock {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1.2rem;
    border-radius: 1.85rem;
    overflow: hidden;
    transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.calculator-dock.is-expanded {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.calculator-input-side {
    display: grid;
    gap: 1rem;
}

.calculator-dock-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.calculator-dock-subtitle {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.72;
}

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

.calculator-dock .calculator-field:last-child {
    grid-column: 1 / -1;
}

.calculator-dock .calculator-toolbar {
    flex-direction: column;
    align-items: flex-start;
}

.calculator-dock .calculator-button {
    width: 100%;
}

.calculator-dock .calculator-results {
    max-width: 0;
    opacity: 0;
    transform: translateX(20px);
    overflow: hidden;
    pointer-events: none;
    margin-top: 0;
    transition: max-width 0.35s ease, opacity 0.28s ease, transform 0.28s ease, padding 0.28s ease, margin 0.28s ease, border-color 0.28s ease;
}

.calculator-dock.is-expanded .calculator-results {
    max-width: 1200px;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(24, 19, 17, 0.08);
}

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

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

.calculator-bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.calculator-bonus-card {
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(24, 19, 17, 0.035);
    border: 1px solid rgba(24, 19, 17, 0.08);
}

.calculator-bonus-label {
    display: block;
    color: rgba(24, 19, 17, 0.58);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.5;
}

.calculator-bonus-value {
    display: block;
    margin-top: 0.55rem;
    font-family: "Sora", sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.section-comparison .section-heading,
.section-use-cases .section-heading {
    margin-bottom: 2.4rem;
}

@media (max-width: 1180px) {
    .hero-sales-layout {
        grid-template-columns: 1fr;
    }

    .calculator-dock-outer {
        position: static;
    }

    .calculator-dock.is-expanded {
        grid-template-columns: 1fr;
    }

    .calculator-dock.is-expanded .calculator-results {
        margin-left: 0;
        margin-top: 1rem;
        padding-left: 0;
        padding-top: 1rem;
        border-left: 0;
        border-top: 1px solid rgba(24, 19, 17, 0.08);
    }
}

@media (max-width: 980px) {
    .calculator-dock .calculator-input-grid,
    .calculator-metric-grid-dock,
    .calculator-process-grid-dock,
    .calculator-bonus-grid {
        grid-template-columns: 1fr;
    }

    .calculator-dock .calculator-field:last-child {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .calculator-dock,
    .calculator-dock.is-expanded {
        padding: 1rem;
        border-radius: 1.35rem;
    }

    .calculator-dock-title {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
    }
}
