:root {
    --ink: #0f0e0c;
    --paper: #faf8f4;
    --warm: #f5f0e8;
    --gold: #c8973a;
    --gold-light: #e8b855;
    --rust: #c4522a;
    --sage: #4a6741;
    --muted: #7a7570;
    --border: #e0dbd2;
    --card-bg: #ffffff;
    --shadow: 0 4px 24px rgba(15, 14, 12, 0.08);
    --shadow-lg: 0 12px 48px rgba(15, 14, 12, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ─── NAV ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--ink);
}

/* ─── HERO ─── */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    padding: 4.5rem 6rem 5rem;
    gap: 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse at center, #f0e8d5 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -10%;
    width: 40%;
    height: 50%;
    background: radial-gradient(ellipse at center, #e8f0e5 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--warm);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 2rem;
}

.hero-label .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    color: var(--ink);
}

.hero h1 .highlight {
    color: var(--gold);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.hero-desc {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 44ch;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--ink);
}

.btn-primary:hover {
    background: transparent;
    color: var(--ink);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--border);
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--ink);
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background: var(--ink);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(15, 14, 12, 0.22);
}

/* ─── STAT CARDS ─── */
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card.accent {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.stat-card.gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.stat-label-small {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
}

.stat-card.accent .stat-label-small,
.stat-card.gold .stat-label-small {
    opacity: 0.85;
}

/* ─── SECTIONS ─── */
section {
    padding: 6rem 6rem;
}

.section-header {
    max-width: 60ch;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ─── MARKET STATS ─── */
.market-section {
    background: var(--warm);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.market-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.market-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.market-card .big-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.market-card .market-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.market-card .market-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

.insight-box {
    background: var(--ink);
    color: #fff;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.insight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.insight-box p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.insight-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    justify-self: center;
}

/* ─── FEATURES OVERVIEW ─── */
.features-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 5rem;
}

.feature-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

.feature-block:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-block .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-icon.green {
    background: #e8f4e5;
}

.feature-icon.blue {
    background: #e5ecf8;
}

.feature-icon.amber {
    background: #faf0e0;
}

.feature-icon.red {
    background: #fae8e5;
}

.feature-block h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.feature-block p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.4;
}

.block-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.block-label.sales {
    background: #e8f4e5;
    color: var(--sage);
}

.block-label.ops {
    background: #faf0e0;
    color: #8a6020;
}

.block-label.tech {
    background: #e5ecf8;
    color: #2a4a8a;
}

/* ─── FEATURE DETAIL ─── */
.feature-detail-section {
    background: var(--warm);
}

.feature-detail {
    margin-bottom: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-detail:last-child {
    margin-bottom: 0;
}

.feature-detail-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 2rem;
    cursor: pointer;
}

.feature-detail-header .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    user-select: none;
}

.feature-detail-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-detail-header .subtitle {
    font-size: 0.85rem;
    color: var(--muted);
}

.feature-detail-header .toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1rem;
    color: var(--muted);
    flex-shrink: 0;
}

.feature-detail.open .toggle {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: rotate(45deg);
}

.feature-detail-body {
    display: none;
    padding: 2rem;
    border-top: 1px solid var(--border);
}

.feature-detail.open .feature-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.prob-sol {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prob-box {
    background: #fef5f3;
    border: 1px solid #f5d0c8;
    border-radius: 12px;
    padding: 1.5rem;
}

.sol-box {
    background: #f3faf1;
    border: 1px solid #c8e5c3;
    border-radius: 12px;
    padding: 1.5rem;
}

.box-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prob-box .box-label {
    color: var(--rust);
}

.sol-box .box-label {
    color: var(--sage);
}

.box-content {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--ink);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.benefits-list li .check {
    color: var(--sage);
    font-weight: 700;
    margin-top: 1px;
    flex-shrink: 0;
}

.scenario {
    background: var(--warm);
    border-radius: 12px;
    padding: 1.5rem;
    font-size: 0.88rem;
    line-height: 1.7;
    border-left: 3px solid var(--gold);
    font-style: italic;
    color: #4a4540;
}
/* ─── COMPETITION TABLE ─── */
.comp-table-wrap {
    overflow-x: auto;
}

.comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.comp-table th {
    background: var(--ink);
    color: #fff;
    padding: 1.1rem 1.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-table th:first-child {
    border-radius: 16px 0 0 0;
}

.comp-table th:last-child {
    border-radius: 0 16px 0 0;
}

.comp-table th.our-col {
    background: var(--gold);
    color: #fff;
    position: relative;
}

.comp-table th.our-col::after {
    content: '★ NASZE';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background: var(--gold);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 4px 4px 0 0;
}

.comp-table td {
    padding: 1rem 1.4rem;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
    background: var(--card-bg);
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-table tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.comp-table tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

.comp-table td.our-col {
    background: #fffbf5;
    font-weight: 600;
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.comp-table tr:last-child td.our-col {
    border-bottom: 2px solid var(--gold);
}

.comp-table td:first-child {
    font-weight: 600;
    color: var(--ink);
}

.badge-yes {
    color: var(--sage);
    font-weight: 700;
}

.badge-partial {
    color: #c8790a;
}

.badge-no {
    color: var(--rust);
}

/* ─── COST ANALYSIS ─── */
.cost-section {
    background: var(--warm);
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.cost-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.cost-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.cost-row:last-child {
    border-bottom: none;
}

.cost-row .cost-label {
    color: var(--muted);
}

.cost-row .cost-val {
    font-weight: 700;
}

.cost-row.total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--border);
    border-bottom: none;
}

.cost-row.total .cost-label {
    color: var(--ink);
    font-weight: 600;
}

.cost-row.total .cost-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
}

/* ─── PRICING ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pricing-card .pricing-sub {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.price-main {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-card.featured .price-main {
    color: var(--gold-light);
}

.price-main .currency {
    font-size: 1.4rem;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}

.price-netto {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.pricing-features li {
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.pricing-features .pf-check {
    flex-shrink: 0;
    font-weight: 700;
}

.pricing-card:not(.featured) .pf-check {
    color: var(--sage);
}

.pricing-card.featured .pf-check {
    color: var(--gold-light);
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 13px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.pricing-card:not(.featured) .pricing-cta {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.pricing-card:not(.featured) .pricing-cta:hover {
    background: transparent;
    color: var(--ink);
}

.pricing-card.featured .pricing-cta {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.pricing-card.featured .pricing-cta:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* ─── ROI ─── */
.roi-section {
    background: var(--warm);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.roi-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.roi-card .roi-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.roi-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.roi-card .roi-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.roi-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

.roi-summary {
    background: var(--ink);
    color: #fff;
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.roi-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.roi-summary p {
    opacity: 0.75;
    font-size: 0.95rem;
    max-width: 60ch;
    margin: 0 auto;
}

.roi-summary .roi-big {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-light);
    display: block;
    margin: 1.5rem 0 0.5rem;
}

/* ─── GUARANTEES ─── */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.guarantee-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.guarantee-card .g-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.guarantee-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ─── STEPS ─── */
.steps-section {
    background: var(--warm);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(12.5% + 2rem);
    right: calc(12.5% + 2rem);
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ─── FOOTER ─── */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

footer h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

footer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

footer .footer-name {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

footer .footer-gold {
    color: var(--gold-light);
}

/* ─── DIVIDER ─── */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 0 6rem;
}

/* ─── CALENDLY SECTION ─── */
.calendly-section {
    background: var(--ink);
    padding: 5rem 6rem;
    position: relative;
    overflow: hidden;
}

.calendly-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.calendly-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.calendly-info {
    padding-top: 1rem;
}

.calendly-perks {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calendly-perk {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.calendly-perk-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.calendly-phone {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.calendly-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    position: relative;
}

/* ─── RESPONSIVE ─── */

/* ── Tablet landscape ── */
@media (max-width: 1100px) {

    .hero,
    section,
    footer {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .calendly-section {
        padding: 4rem 3rem;
    }

    .market-grid {
        grid-template-columns: 1fr 1fr;
    }

    .comp-table {
        font-size: 0.82rem;
    }

    .divider {
        margin: 0 3rem;
    }
}


/* ── Tablet / mobile ── */
@media (max-width: 800px) {

    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    nav .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem 3rem;
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-content {
        padding-left: 0 !important;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .hero-stats-section {
        padding: 0 1.5rem 2rem !important;
    }

    .calendly-section {
        padding: 3rem 1.5rem;
    }

    .calendly-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .calendly-info {
        text-align: center;
        padding-top: 0;
    }

    .calendly-perks {
        align-items: center;
    }

    .calendly-perk {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.4rem;
    }

    .calendly-phone {
        justify-content: center;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .market-grid,
    .features-overview,
    .pricing-grid,
    .roi-grid,
    .guarantee-grid,
    .steps-grid {
        grid-template-columns: 1fr !important;
    }

    .cost-grid {
        grid-template-columns: 1fr;
    }

    .insight-box {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .insight-divider {
        display: none;
    }

    footer {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .feature-detail.open .feature-detail-body {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

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

    .divider {
        margin: 0 1.5rem;
    }

    .feature-detail-header {
        padding: 1.5rem;
        gap: 1rem;
    }

    .feature-detail-header .num {
        font-size: 2rem;
    }

    .roi-summary {
        padding: 2rem 1.5rem;
    }

    .roi-summary .roi-big {
        font-size: clamp(1.6rem, 10vw, 3rem);
        word-break: break-word;
        overflow-wrap: break-word;
    }
}


/* ── 700px — inline gridy z PHP (musi być po 800px, przed 480px!) ── */
@media (max-width: 700px) {

    .not-included-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .cost-summary-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .steps-cta-box {
        grid-template-columns: 1fr !important;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
    }

    .steps-cta-box>div:last-child {
        text-align: left !important;
    }

    .steps-cta-box .btn-primary {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .cost-row.total {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .cost-row.total .cost-val {
        font-size: 0.83rem;
        line-height: 1.45;
        font-family: 'DM Sans', sans-serif;
    }

    .comp-table th.our-col::after {
        display: none;
    }
}


/* ── Małe telefony (< 480px) ── */
@media (max-width: 480px) {

    section {
        padding: 2.5rem 1rem;
    }

    .hero {
        padding: 1.5rem 1rem 2.5rem;
    }

    footer,
    .calendly-section {
        padding: 2.5rem 1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        text-align: center;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr !important;
    }

    .not-included-grid {
        grid-template-columns: 1fr !important;
    }

    .market-card,
    .cost-card,
    .roi-card,
    .guarantee-card,
    .step-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .feature-detail-header {
        padding: 1.2rem 1rem;
    }

    .feature-detail.open .feature-detail-body {
        padding: 1rem;
    }

    .insight-box,
    .roi-summary {
        padding: 1.5rem 1rem;
    }

    .divider {
        margin: 0 1rem;
    }
}


/* ─── PRINT ─── */
@media print {
    .feature-detail-body {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    nav {
        display: none;
    }
}

/* ══ TARGETED MOBILE FIXES v2 ══ */
@media (max-width: 700px) {

    /* FIX 1: CO NIE JEST WLICZONE — 4 kolumny → 2 */
    .not-included-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    /* FIX 2: Box "Jedyna wtyczka..." — 3 kolumny → 1 */
    .cost-summary-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* FIX 3: CTA box "Gotowy żeby zacząć" — żółty button wystaje */
    .steps-cta-box {
        grid-template-columns: 1fr !important;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
    }

    .steps-cta-box>div:last-child {
        text-align: left !important;
        flex-shrink: unset !important;
    }

    .steps-cta-box .btn-primary {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    /* FIX 4: hero-stats-grid (też inline style) — 4 → 2 */
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    /* FIX 5: "Efekt po 3 latach" — długi tekst */
    .cost-row.total {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .cost-row.total .cost-val {
        font-size: 0.83rem;
        line-height: 1.45;
        font-family: 'DM Sans', sans-serif;
    }
}

@media (max-width: 480px) {

    /* Bardzo małe telefony: CO NIE JEST WLICZONE → 1 kolumna */
    .not-included-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ─── REAL COST BANNER ─── */
.cost-banner-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.cost-banner-sep {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ─── UNIQUE FEATURES STRIP ─── */
.unique-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.unique-feature-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.unique-feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.unique-feature-card .ufc-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.unique-feature-card .ufc-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.unique-feature-card .ufc-desc {
    font-size: 0.73rem;
    color: var(--muted);
}

.unique-features-label {
    text-align: center;
    margin-bottom: 1.2rem;
}

/* ─── RESPONSIVE — nowe elementy ─── */
@media (max-width: 1100px) {
    .unique-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 800px) {
    .cost-banner-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .cost-banner-sep {
        display: none;
    }

    .unique-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .unique-features-grid {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════════════
   MOBILE FIXES v3 — nowe elementy z nowego front-page
   ══════════════════════════════════════════════════════ */

/* ─── not-included-grid — base (PHP używa tylko klasy, nie inline) ─── */
.not-included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* ─── calc-inputs-grid — kalkulator interaktywny ─── */
.calc-inputs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* ─── Sekcje z inline padding: 5rem 6rem / 4rem 6rem ─── */
/* Dotyczy: #android, #szczegoly-android, #kalkulator   */
@media (max-width: 1100px) {
    #android,
    #szczegoly-android,
    #kalkulator {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

@media (max-width: 800px) {
    #android,
    #szczegoly-android,
    #kalkulator {
        padding: 3rem 1.5rem !important;
    }

    /* calc inputs → 1 kolumna */
    .calc-inputs-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* calc output → 1 kolumna */
    #calc-output {
        grid-template-columns: 1fr !important;
    }

    /* not-included-grid → 2 kolumny (nadpisuje ewentualny inline) */
    .not-included-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 480px) {
    #android,
    #szczegoly-android,
    #kalkulator {
        padding: 2.5rem 1rem !important;
    }

    .not-included-grid {
        grid-template-columns: 1fr !important;
    }

    .calc-inputs-grid {
        gap: 0.75rem !important;
    }
}