@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --ink: #111827;
    --muted: #5f6b7a;
    --line: #e2e8f0;
    --paper: #ffffff;
    --soft: #f6f8fb;
    --coal: #172033;
    --teal: #12315e;
    --teal-soft: #dff7f5;
    --amber: #f2a71b;
    --amber-soft: #fff4d8;
    --green: #1f9d63;
    --green-soft: #e3f6eb;
    --rose: #d94862;
    --rose-soft: #fde8ed;
    --blue: #3467d6;
    --blue-soft: #e7efff;
    --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    letter-spacing: 0;
}

body::selection {
    color: #ffffff;
    background: var(--teal);
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 78px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 100px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 600;
}

.main-nav a {
    transition: color 160ms ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.nav-login {
    color: #374151;
    font-size: 14px;
    font-weight: 650;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 8px;
    padding: 0 20px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
    color: #17110a;
    background: var(--amber);
    box-shadow: 0 16px 34px rgba(242, 167, 27, 0.28);
}

.button-primary:hover {
    background: #ffc247;
}

.button-dark {
    color: #ffffff;
    background: var(--coal);
    box-shadow: 0 14px 30px rgba(23, 32, 51, 0.18);
}

.button-dark:hover {
    background: #0e1626;
}

.button-ghost {
    color: var(--coal);
    background: #ffffff;
    border-color: var(--line);
}

.button-light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 84px 0 68px;
    background:
        linear-gradient(115deg, rgba(15, 159, 154, 0.12) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    align-items: center;
    gap: 54px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1 {
    max-width: 720px;
    font-size: clamp(30px, 4vw, 62px);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: 0;
}

h2 {
    color: var(--ink);
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0;
}

h3 {
    font-size: 20px;
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 620px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 13px;
    color: #415064;
    background: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 650;
}

.product-visual {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.visual-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    background: #f8fafc;
}

.visual-topbar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #cbd5e1;
}

.visual-topbar span:nth-child(1) {
    background: var(--rose);
}

.visual-topbar span:nth-child(2) {
    background: var(--amber);
}

.visual-topbar span:nth-child(3) {
    background: var(--green);
}

.visual-layout {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 538px;
}

.visual-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px 18px;
    border-right: 1px solid var(--line);
    background: #172033;
}

.visual-sidebar img {
    width: 76px;
    margin-bottom: 12px;
    padding: 7px;
    border-radius: 8px;
    background: #ffffff;
}

.visual-sidebar span {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.visual-sidebar .sidebar-active {
    background: var(--amber);
}

.visual-content {
    padding: 28px;
    background: #f8fafc;
}

.visual-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.visual-head p,
.metric span,
.table-head,
.insight-list span {
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
}

.visual-head strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
}

.visual-head > span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 12px;
    color: var(--green);
    background: var(--green-soft);
    font-size: 13px;
    font-weight: 700;
}

.visual-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.visual-filter-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 11px;
    color: #475569;
    background: #ffffff;
    font-size: 12px;
    font-weight: 650;
}

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

.metric {
    min-height: 106px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    background: #ffffff;
}

.metric strong {
    display: block;
    margin-top: 12px;
    font-size: 26px;
    line-height: 1;
}

.metric-profit strong {
    color: var(--green);
}

.metric-order strong {
    color: var(--blue);
}

.metric-cost strong {
    color: var(--rose);
}

.chart-card {
    height: 158px;
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 18px 18px;
    background: #ffffff;
}

.chart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.chart-summary span {
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
}

.chart-summary strong {
    color: var(--green);
    font-size: 14px;
}

.chart-bars {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: end;
    gap: 12px;
    height: calc(100% - 28px);
}

.chart-bars span {
    display: block;
    border-radius: 8px 8px 0 0;
    background: var(--teal);
}

.chart-bars span:nth-child(even) {
    background: var(--amber);
}

.table-preview {
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
}

.table-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 0.7fr 0.6fr;
    gap: 14px;
    align-items: center;
    min-height: 46px;
    padding: 0 16px;
    border-top: 1px solid #edf2f7;
    color: #334155;
    font-size: 14px;
}

.table-row:first-child {
    border-top: 0;
}

.table-row span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-row strong {
    color: var(--green);
}

.visual-expense-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.visual-expense-row span {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 11px 12px;
    color: #334155;
    background: #ffffff;
    font-size: 12px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section {
    padding: 104px 0;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 84px;
}

.rich-text {
    display: grid;
    gap: 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.feature-section,
.process-section {
    background: var(--soft);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-heading > p:last-child {
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

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

.feature-card {
    min-height: 282px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(17, 24, 39, 0.05);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 24px;
    position: relative;
}

.feature-icon::after {
    content: attr(data-icon);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.icon-teal {
    color: var(--teal);
    background: var(--teal-soft);
}

.icon-amber {
    color: var(--amber);
    background: var(--amber-soft);
}

.icon-green {
    color: var(--green);
    background: var(--green-soft);
}

.icon-rose {
    color: var(--rose);
    background: var(--rose-soft);
}

.icon-ink {
    color: var(--coal);
    background: #e7eaf0;
}

.icon-blue {
    color: var(--blue);
    background: var(--blue-soft);
}

.feature-card p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.reconciliation-section {
    background: #ffffff;
}

.reconciliation-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: 72px;
}

.reconciliation-grid p:not(.eyebrow) {
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.76;
}

.reconciliation-panel {
    display: grid;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    background: #f8fafc;
    box-shadow: var(--shadow);
}

.recon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 18px;
    background: #ffffff;
}

.recon-row span {
    color: #334155;
    font-size: 15px;
    font-weight: 700;
}

.recon-row strong {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.recon-row.is-danger strong {
    color: #b45309;
    background: var(--amber-soft);
}

.recon-row.is-warning strong {
    color: #92400e;
    background: #ffedd5;
}

.recon-row.is-rose strong {
    color: #be123c;
    background: var(--rose-soft);
}

.recon-row.is-success strong {
    color: #047857;
    background: var(--green-soft);
}

.pricing-section {
    background: #ffffff;
}

.pricing-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 56px;
    margin-bottom: 42px;
}

.pricing-heading > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
    max-width: 880px;
    margin: 0 auto;
}

.single-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 920px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 590px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 16px 46px rgba(17, 24, 39, 0.06);
}

.single-pricing-card {
    min-height: auto;
    border-color: rgba(242, 167, 27, 0.48);
    background:
        linear-gradient(180deg, rgba(255, 244, 216, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        #ffffff;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.12);
}

.pricing-offer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 34px;
    align-items: end;
}

.pricing-offer-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.price-note {
    border: 1px solid rgba(31, 157, 99, 0.16);
    border-radius: 12px;
    padding: 16px 18px;
    background: #f4fbf7;
}

.price-note strong,
.price-note span {
    display: block;
}

.price-note strong {
    color: #11663f;
    font-size: 14px;
    font-weight: 700;
}

.price-note span {
    margin-top: 8px;
    color: #496052;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.featured-plan {
    border-color: rgba(242, 167, 27, 0.48);
    background:
        linear-gradient(180deg, rgba(255, 244, 216, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        #ffffff;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.14);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 12px;
    color: #17110a;
    background: var(--amber);
    font-size: 12px;
    font-weight: 700;
}

.pricing-card-head {
    min-height: 0;
}

.plan-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 12px;
    color: var(--teal);
    background: var(--teal-soft);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-plan .plan-label {
    color: #8a5a00;
    background: var(--amber-soft);
}

.pricing-card h3 {
    margin-top: 22px;
    font-size: 28px;
}

.pricing-card-head p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.price-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.price-block div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    background: #f8fafc;
    min-height: 112px;
}

.price-block span {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-height: 22px;
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
}

.price-block em {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    border-radius: 999px;
    padding: 0 9px;
    color: #0f7a50;
    background: var(--green-soft);
    font-style: normal;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}

.price-block strong {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
}

.price-block strong em {
    flex: 0 0 auto;
}

.featured-plan .price-block div {
    border-color: rgba(242, 167, 27, 0.32);
    background: #fffaf0;
}

.plan-features {
    display: grid;
    gap: 12px;
    margin: 26px 0 28px;
    padding: 0;
    list-style: none;
}

.plan-features li {
    position: relative;
    padding-left: 28px;
    color: #334155;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 650;
}

.plan-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
}

.featured-plan .plan-features li::before {
    background: var(--amber);
}

.plan-button {
    width: 100%;
    margin-top: auto;
}

.insight-section {
    background: #ffffff;
}

.insight-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
    align-items: center;
    gap: 84px;
}

.insight-panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.insight-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
}

.insight-header span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
}

.insight-header strong {
    font-size: 18px;
}

.insight-list {
    display: grid;
    gap: 0;
}

.insight-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 24px;
    border-bottom: 1px solid #edf2f7;
}

.insight-list div:last-child {
    border-bottom: 0;
}

.insight-list strong {
    font-size: 24px;
}

.insight-list .positive {
    background: var(--green-soft);
}

.insight-list .positive strong {
    color: var(--green);
}

.insight-copy p:not(.eyebrow) {
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.76;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: #334155;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 650;
}

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

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

.process-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    align-items: center;
    gap: 44px;
}

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

.process-grid article {
    min-height: 214px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px;
    background: #ffffff;
}

.process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--coal);
    font-size: 14px;
    font-weight: 700;
}

.process-grid h3 {
    margin-top: 24px;
}

.process-grid p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.process-chart-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.process-chart-header {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 22px;
    border-bottom: 1px solid var(--line);
}

.process-chart-header strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

.process-chart-header span {
    color: var(--coal);
    font-size: 22px;
    line-height: 1;
}

.process-chart-summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 22px 10px;
}

.process-chart-summary span,
.process-chart-summary small {
    display: block;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.process-chart-summary small {
    margin-top: 2px;
    font-weight: 600;
}

.process-chart-summary strong {
    color: #0f172a;
    font-size: 30px;
    line-height: 1;
    white-space: nowrap;
}

.process-chart {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 18px;
}

.process-chart line {
    stroke: #e5e7eb;
    stroke-width: 1;
}

.process-chart text {
    fill: #94a3b8;
    font-size: 15px;
    font-weight: 700;
}

.process-chart polygon {
    fill: rgba(15, 159, 154, 0.13);
}

.process-chart polyline {
    fill: none;
    stroke: var(--teal);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-chart-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    padding: 0 36px 22px 62px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 700;
}

.audience-section {
    background: #ffffff;
}

.audience-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 70px;
}

.audience-list {
    display: grid;
    gap: 14px;
}

.audience-list div {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    background: #ffffff;
}

.audience-list strong,
.audience-list span {
    display: block;
}

.audience-list strong {
    font-size: 18px;
}

.audience-list span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.trial-section {
    background: var(--soft);
}

.trial-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
    align-items: start;
    gap: 64px;
}

.trial-copy > p:not(.eyebrow) {
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.76;
}

.trial-note {
    margin-top: 26px;
    border-left: 4px solid var(--amber);
    padding: 16px 18px;
    color: #334155;
    background: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}

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

.trial-proof-row span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 12px;
    color: #334155;
    background: #ffffff;
    font-size: 13px;
    font-weight: 650;
}

.trial-panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 18px 52px rgba(17, 24, 39, 0.08);
}

.trial-panel::before {
    content: "Deneme hesabı";
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 18px;
    border-radius: 999px;
    padding: 0 12px;
    color: var(--teal);
    background: var(--teal-soft);
    font-size: 12px;
    font-weight: 700;
}

.trial-form {
    display: grid;
    gap: 16px;
}

.trial-form label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 650;
}

.trial-form label span {
    color: var(--muted);
    font-weight: 500;
}

.trial-form input[type="text"],
.trial-form input[type="tel"],
.trial-form input[type="email"],
.trial-form input[type="url"] {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    color: var(--ink);
    background: #ffffff;
    font: inherit;
}

.trial-form input:focus {
    outline: 3px solid rgba(15, 159, 154, 0.18);
    border-color: var(--teal);
}

.trial-check {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin: 2px 0 0 !important;
    color: #475569 !important;
    font-size: 13px !important;
    line-height: 1.55;
    font-weight: 700 !important;
}

.trial-check input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.trial-alert {
    margin-bottom: 18px;
    border: 1px solid #fecdd3;
    border-radius: 8px;
    padding: 12px 14px;
    color: #9f1239;
    background: #fff1f2;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
}

.trial-success h3 {
    margin-top: 16px;
    font-size: 30px;
}

.trial-status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 12px;
    color: var(--green);
    background: var(--green-soft);
    font-size: 13px;
    font-weight: 700;
}

.credential-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.credential-list div {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
    background: #f8fafc;
}

.credential-list span,
.credential-list strong {
    display: block;
}

.credential-list span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.credential-list strong {
    margin-top: 6px;
    color: var(--ink);
    overflow-wrap: anywhere;
    font-size: 16px;
}

.trial-login-button {
    width: 100%;
    margin-top: 22px;
}

.cta-section {
    padding: 86px 0;
    color: #ffffff;
    background: var(--coal);
}

.cta-section .eyebrow {
    color: #74e2dc;
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 42px;
}

.cta-inner h2 {
    color: #ffffff;
    max-width: 760px;
}

.cta-inner p:not(.eyebrow) {
    max-width: 720px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.72;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.trial-marquee {
    position: relative;
    display: flex;
    overflow: hidden;
    border-top: 1px solid rgba(242, 167, 27, 0.34);
    border-bottom: 1px solid rgba(242, 167, 27, 0.34);
    color: #17110a;
    background:
        linear-gradient(90deg, rgba(242, 167, 27, 0.1), rgba(15, 159, 154, 0.08)),
        #fffaf0;
    text-decoration: none;
}

.trial-marquee::before,
.trial-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: min(12vw, 160px);
    pointer-events: none;
}

.trial-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fffaf0 0%, rgba(255, 250, 240, 0) 100%);
}

.trial-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fffaf0 0%, rgba(255, 250, 240, 0) 100%);
}

.trial-marquee span {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 16px;
    min-width: 100%;
    min-height: 62px;
    padding-right: 16px;
    animation: trialMarquee 34s linear infinite;
}

.trial-marquee strong {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(18px, 2.1vw, 28px);
    line-height: 1;
    font-weight: 650;
    white-space: nowrap;
}

.trial-marquee strong::after {
    content: "→";
    color: rgba(15, 118, 110, 0.72);
    font-size: .86em;
    font-weight: 600;
}

.trial-marquee em {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 12px;
    color: #0f766e;
    background: rgba(15, 159, 154, 0.1);
    font-size: 12px;
    font-style: normal;
    font-weight: 650;
    white-space: nowrap;
}

.trial-marquee:hover span {
    animation-play-state: paused;
}

@keyframes trialMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-brand img {
    width: 148px;
}

.footer-inner p {
    color: var(--muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
    color: #334155;
    font-size: 14px;
    font-weight: 650;
}

.legal-page {
    min-height: 100vh;
    padding: 56px 0 84px;
    background:
        linear-gradient(115deg, rgba(15, 159, 154, 0.1) 0%, rgba(255, 255, 255, 0) 34%),
        #f6f8fb;
}

.legal-container {
    max-width: 920px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 46px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
}

.legal-brand {
    display: inline-flex;
    margin-bottom: 34px;
}

.legal-brand img {
    width: 166px;
}

.legal-page h1 {
    max-width: 760px;
    font-size: clamp(38px, 5vw, 58px);
}

.legal-updated {
    margin-top: 18px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
}

.legal-section {
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--line);
}

.legal-section h2 {
    font-size: 24px;
    line-height: 1.2;
}

.legal-section p,
.legal-section li {
    color: #475569;
    font-size: 16px;
    line-height: 1.78;
}

.legal-section p {
    margin-top: 14px;
}

.legal-section ul {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding-left: 20px;
}

@media (max-width: 1060px) {
    .main-nav {
        display: none;
    }

    .hero-grid,
    .two-column,
    .insight-grid,
    .audience-grid,
    .reconciliation-grid,
    .process-showcase,
    .trial-grid,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 44px;
    }

    .product-visual {
        max-width: 760px;
    }

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

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

    .pricing-offer-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-card-head {
        min-height: auto;
    }

    .process-chart-card {
        max-width: 760px;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        position: static;
    }

    .header-inner {
        min-height: auto;
        padding: 18px 0;
        align-items: center;
        flex-direction: row;
        gap: 12px;
    }

    .brand img {
        width: 136px;
    }

    .header-actions {
        margin-left: auto;
        justify-content: flex-end;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .header-actions .button,
    .header-actions .nav-login {
        min-height: 38px;
        border-radius: 8px;
        padding: 0 12px;
        font-size: 12px;
        white-space: nowrap;
        width: 150px;
    }

    .hero-section {
        min-height: auto;
        padding: 54px 0 48px;
    }

    h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    h2 {
        font-size: 30px;
    }

    .hero-lead,
    .rich-text,
    .section-heading > p:last-child,
    .insight-copy p:not(.eyebrow),
    .cta-inner p:not(.eyebrow) {
        font-size: 16px;
        line-height: 1.68;
    }

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

    .button {
        width: 100%;
    }

    .product-visual {
        border-radius: 14px;
    }

    .visual-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .visual-sidebar {
        display: none;
    }

    .visual-content {
        padding: 18px;
    }

    .process-chart-summary {
        flex-direction: column;
    }

    .process-chart-summary strong {
        font-size: 24px;
    }

    .metric-grid,
    .feature-grid,
    .pricing-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .visual-expense-row {
        grid-template-columns: 1fr;
    }

    .pricing-heading {
        gap: 20px;
    }

    .pricing-card {
        padding: 24px;
    }

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

    .popular-badge {
        position: static;
        width: fit-content;
        margin-bottom: 16px;
    }

    .table-row {
        grid-template-columns: minmax(0, 1fr) 72px 60px;
        gap: 8px;
        padding: 0 12px;
        font-size: 12px;
    }

    .section {
        padding: 70px 0;
    }

    .two-column,
    .insight-grid,
    .audience-grid,
    .reconciliation-grid,
    .process-showcase,
    .trial-grid {
        gap: 34px;
    }

    .feature-card,
    .process-grid article {
        min-height: auto;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .legal-page {
        padding: 28px 0 56px;
    }

    .legal-container {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .legal-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 430px) {
    h1 {
        font-size: 34px;
		text-align:center;
    }

    h2 {
        font-size: 28px;
    }

    .nav-login {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--line);
        border-radius: 8px;
    }

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

    .visual-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .chart-bars {
        gap: 8px;
    }
}
