/* =========================================================
   VARIABLES  —  palette locked to unitedcapitalcompl
   ========================================================= */
:root {
    --primary: #0f172a;
    --primary-lt: #1e293b;
    --accent: #c5a065;
    --accent-hov: #d4af77;
    --accent-soft: rgba(197, 160, 101, 0.13);

    --bg: #f9fafb;
    --bg-warm: #f3efe9;
    --bg-white: #ffffff;

    --text: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;

    --border: #e5e7eb;

    --font: "Inter", sans-serif;

    /* Whimsical radii */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    /* Soft shadows */
    --sh-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --sh-md: 0 4px 16px rgba(15, 23, 42, 0.07);
    --sh-lg: 0 8px 32px rgba(15, 23, 42, 0.1);
    --sh-xl: 0 16px 48px rgba(15, 23, 42, 0.13);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 17px;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
    line-height: 1.2;
    color: var(--primary);
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font-family: var(--font);
}
img {
    max-width: 100%;
    display: block;
}

/* ─── SHARED UTILITIES ─── */
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.acc {
    color: var(--accent);
}

.tag {
    display: inline-block;
    background: #fff;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 0.38rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
    border: 1.5px solid var(--accent);
    box-shadow: 0 2px 8px rgba(197, 160, 101, 0.15);
}

.section-head {
    text-align: center;
    margin-bottom: 3.2rem;
}
.section-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}
.section-head p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

/* Scroll-reveal animation */
.animate {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s var(--ease),
        transform 0.6s var(--ease);
}
.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    z-index: 1001;
    border-bottom: 1px solid rgba(197, 160, 101, 0.2);
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-item:hover {
    color: var(--accent);
}

.top-bar-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.top-bar-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.1rem 2rem;
    transition:
        background 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        padding 0.35s var(--ease);
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 14px rgba(15, 23, 42, 0.08);
    padding: 0.7rem 2rem;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo-img {
    height: 34px;
    /* white on dark hero */
    filter: brightness(0) invert(1);
    transition: filter 0.35s var(--ease);
}
.nav.scrolled .nav-logo-img {
    /* dark logo on white background */
    filter: brightness(0);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--accent);
}
.nav.scrolled .nav-links a {
    color: var(--text);
}

.nav-cta {
    background: var(--accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.3rem;
    border-radius: var(--r-sm);
    transition:
        background 0.2s,
        transform 0.15s;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--accent-hov);
    transform: translateY(-1px);
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    white-space: nowrap;
    transition:
        background 0.35s,
        border-color 0.35s,
        color 0.35s;
}
.nav.scrolled .nav-badge {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--text-muted);
}

/* hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background 0.3s;
}
.nav.scrolled .nav-hamburger span {
    background: var(--primary);
}

/* mobile menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 200;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: right 0.35s var(--ease);
}
.mobile-menu.open {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 3.5rem;
    right: 1.4rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--primary);
    cursor: pointer;
}
.mobile-menu ul {
    list-style: none;
    text-align: center;
}
.mobile-menu ul li {
    margin-bottom: 1.2rem;
}
.mobile-menu ul a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
}
.mobile-cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.7rem 1.8rem;
    border-radius: var(--r-sm);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    background-color: var(--primary);
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(30, 41, 59, 1) 0%,
            transparent 70%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(197, 160, 101, 0.12) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 50% 80%,
            rgba(26, 47, 75, 1) 0%,
            transparent 80%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(197, 160, 101, 0.05) 0%,
            transparent 40%
        );
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 9rem 1.5rem 4rem;
}

/* ambient glow shapes */
.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(197, 160, 101, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: floatGlow 20s infinite alternate ease-in-out;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(30, 41, 59, 0.6) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    animation: floatGlow 25s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -60px) scale(1.1);
    }
    100% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* ── left column ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.81rem;
    font-weight: 500;
    padding: 0.45rem 0.95rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
}
.badge-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

.hero-title {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 1.1rem;
}
.hero-accent {
    background: linear-gradient(
        135deg,
        var(--accent) 0%,
        var(--accent-hov) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-sub {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    margin-bottom: 1.4rem;
    max-width: 460px;
}

/* ── hero ticks (value props) ── */
.hero-ticks {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    margin-top: 2.5rem;
    max-width: 100%;
    flex: 1;
    justify-content: center;
}
.hero-tick {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.09rem;
    font-weight: 700;
}
.tick-icon {
    color: #4ade80;
    flex-shrink: 0;
    background: rgba(74, 222, 128, 0.15);
    border-radius: 50%;
    padding: 4px;
}

/* ── hero form ── */
.hero-form {
    background: #fff;
    padding: 1.6rem;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    max-width: 520px;
    width: 100%;
}
.hf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}
.hf-field {
    display: flex;
    flex-direction: column;
    min-width: 0; /* prevents flex/grid overflow */
}
.hf-field label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.35rem;
}
.hf-field > input,
.hf-field > select,
.hf-field > textarea {
    padding: 0.62rem 0.8rem;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--primary);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.hf-field > input:focus,
.hf-field > select:focus,
.hf-field > textarea:focus {
    border-color: var(--accent);
    background: #fff;
}
.hf-field input::placeholder,
.hf-field textarea::placeholder {
    color: var(--text-light);
}

/* Phone field with prefix */
.hf-phone {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}
.hf-prefix {
    flex-shrink: 0;
    width: 90px;
    padding: 0.62rem 0.8rem;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--primary);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.hf-prefix:focus {
    border-color: var(--accent);
    background: #fff;
}
.hf-phone input {
    flex: 1;
    min-width: 0;
    padding: 0.62rem 0.8rem;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--primary);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.hf-phone input:focus {
    border-color: var(--accent);
    background: #fff;
}

.hf-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.72rem 1.35rem;
    border-radius: var(--r-sm);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s;
    margin-top: 0.4rem;
}
.hf-btn--full {
    width: 100%;
    text-align: center;
}
.hf-btn:hover {
    background: var(--primary-lt);
    transform: translateY(-1px);
}
.hf-btn:active {
    transform: translateY(0);
}

.hf-note {
    font-size: 0.72rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.75rem;
}

/* ── right column – image ── */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-team-image {
    width: 100%;
    height: auto;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
}

.mockup-card {
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    overflow: hidden;
}

/* window dots */
.mockup-dots {
    display: flex;
    gap: 6px;
    padding: 0.9rem 1.1rem 0;
}
.mdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mdot--r {
    background: #ff5f57;
}
.mdot--y {
    background: #ffbd2e;
}
.mdot--g {
    background: #28c840;
}

/* property row */
.m-property {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.1rem;
}
.m-prop-icon {
    font-size: 1.2rem;
}
.m-prop-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}
.m-prop-sub {
    font-size: 0.74rem;
    color: var(--text-light);
}

/* rent status */
.m-status {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #f0fdf4;
    margin: 0 1.1rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--r-sm);
}
.m-status-check {
    width: 26px;
    height: 26px;
    background: #4ade80;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}
.m-status-label {
    font-size: 0.76rem;
    color: var(--text-muted);
    display: block;
}
.m-status-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

/* progress */
.m-progress {
    padding: 0.9rem 1.1rem 0;
}
.m-progress-head {
    display: flex;
    justify-content: space-between;
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.m-progress-pct {
    font-weight: 600;
    color: var(--primary);
}
.m-progress-track {
    height: 5px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}
.m-progress-fill {
    width: 94%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hov));
    border-radius: 3px;
}

/* chips */
.m-chips {
    display: flex;
    gap: 0.45rem;
    padding: 0.9rem 1.1rem 1.1rem;
    flex-wrap: wrap;
}
.m-chip {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.28rem 0.65rem;
    border-radius: 50px;
}
.m-chip--ok {
    background: #f0fdf4;
    color: #16a34a;
}
.m-chip--neutral {
    background: var(--bg);
    color: var(--text-muted);
}

/* floating badges */
.m-float {
    position: absolute;
    background: #fff;
    box-shadow: var(--sh-lg);
    border-radius: var(--r-md);
    padding: 0.5rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    animation: floatY 3s ease-in-out infinite;
}
.m-float--1 {
    top: -18px;
    right: -24px;
}
.m-float--2 {
    bottom: -14px;
    left: -36px;
    animation-delay: 1.4s;
}
.mf-icon {
    font-size: 0.95rem;
}
@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
    background: var(--primary);
    padding: 2.2rem 1.5rem;
}
.stats-bar-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}
.stat-num {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
}
.stat-lab {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.25rem;
}
.stat-sep {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.14);
}

/* =========================================================
   GENERIC SECTION BACKGROUNDS
   ========================================================= */
.section {
    padding: 5.5rem 0;
}
.section--cool {
    background: var(--bg);
}
.section--warm {
    background: var(--bg-warm);
}
.section--white {
    background: var(--bg-white);
}

/* =========================================================
   DLA KOGO  –  cards
   ========================================================= */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.card {
    background: var(--bg-white);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition:
        transform 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}

.card-ico {
    width: 50px;
    height: 50px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}
.card-ico--1 {
    background: var(--accent-soft);
    color: var(--accent);
}
.card-ico--2 {
    background: rgba(15, 23, 42, 0.07);
    color: var(--primary);
}
.card-ico--3 {
    background: rgba(197, 160, 101, 0.18);
    color: var(--accent);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
}
.card p {
    color: var(--text-muted);
    font-size: 0.89rem;
    line-height: 1.65;
}

.cards--2col {
    grid-template-columns: repeat(2, 1fr);
}

/* =========================================================
   UVP  –  (kept for potential reuse)
   ========================================================= */
.uvp {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.uvp-text h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.uvp-lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.uvp-checks {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.8rem;
}
.chk-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
}
.chk {
    width: 21px;
    height: 21px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.link-under {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 1px;
    transition: color 0.2s;
}
.link-under:hover {
    color: var(--accent);
}

/* cost card */
.uvp-visual {
    display: flex;
    justify-content: center;
}
.cost-card {
    background: var(--bg-white);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    width: 100%;
    max-width: 370px;
    overflow: hidden;
}
.cost-card-head {
    background: var(--primary);
    color: #fff;
    padding: 0.85rem 1.4rem;
    font-weight: 600;
    font-size: 0.88rem;
    text-align: center;
}
.cost-card-body {
    padding: 1.3rem 1.4rem;
}
.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.cv {
    font-weight: 700;
}
.cv--zero {
    color: #16a34a;
}
.cv--acc {
    color: var(--accent);
    font-size: 1.05rem;
}
.cost-sep {
    height: 1px;
    background: #e5e7eb;
    margin: 0.4rem 0;
}
.cost-row--hl {
    background: var(--accent-soft);
    margin: 0 -1.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: var(--r-sm);
    color: var(--primary);
    font-weight: 600;
}

/* =========================================================
   PROCESS  –  3 steps
   ========================================================= */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

/* dashed connector line behind icons */
.steps::before {
    content: "";
    position: absolute;
    /* vertical center: step-num line-height ~17px + margin 10px + half icon 28px ≈ 55px */
    top: 55px;
    left: 16.66%; /* center of col-1 in 3-column grid */
    right: 16.66%; /* center of col-3 in 3-column grid */
    height: 0;
    border-top: 2px dashed rgba(197, 160, 101, 0.35);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}
.step-ico {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 1.1rem;
    border: 1.5px solid rgba(197, 160, 101, 0.25);
    box-shadow: 0 4px 16px rgba(197, 160, 101, 0.18);
}
.step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.step p {
    color: var(--text-muted);
    font-size: 0.89rem;
    line-height: 1.6;
}

/* =========================================================
   DLACZEGO MY  –  why-us
   ========================================================= */
.why-us {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3.5rem;
    align-items: start;
}
.why-us-text h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.why-us-text p {
    color: var(--text-muted);
    font-size: 0.99rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}
.why-item {
    background: var(--bg-white);
    border-radius: var(--r-md);
    padding: 1.45rem 1.3rem;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition:
        transform 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
}
.why-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

.why-ico {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.why-item h4 {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}
.why-item p {
    color: var(--text-muted);
    font-size: 0.89rem;
    line-height: 1.55;
}

/* =========================================================
   TESTIMONIALS CAROUSEL
   ========================================================= */
/* Google rating badge */
.reviews-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--sh-sm);
    flex-wrap: wrap;
}
.reviews-badge__google {
    flex-shrink: 0;
}
.reviews-badge__rating {
    flex: 1;
}
.reviews-badge__stars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.reviews-badge__score {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}
.reviews-badge__stars-icons {
    color: #FBBC05;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.reviews-badge__count {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}
.reviews-badge__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    transition: color 0.2s;
}
.reviews-badge__link:hover {
    color: var(--accent-hov);
}

/* Reviews masonry grid */
.reviews-grid {
    columns: 2;
    column-gap: 1.25rem;
}

/* Single review card */
.review-card {
    break-inside: avoid;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem 1.5rem 1.3rem;
    box-shadow: var(--sh-sm);
    margin-bottom: 1.25rem;
    transition:
        transform 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
}

/* Quote icon */
.review-card__text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
}
.review-card__text::before {
    content: "\201C";
    font-size: 2.8rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.35;
    line-height: 1;
    display: block;
    margin-bottom: -0.3rem;
}

/* Card footer — author + google */
.review-card__footer {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: transparent;
}
.review-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}
.review-card__name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
}
.review-card__stars {
    color: #FBBC05;
    font-size: 0.8rem;
    letter-spacing: 1px;
    line-height: 1;
    background: transparent;
}
.review-card__google {
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0.55;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}
.faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
    text-align: left;
}
.faq-q span:first-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}
.faq-icon {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-a p {
    padding: 0 0 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =========================================================
   BOTTOM CTA
   ========================================================= */
.cta-section {
    background: linear-gradient(140deg, var(--primary) 0%, #1a2f4b 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -12%;
    width: 420px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(197, 160, 101, 0.12) 0%,
        transparent 60%
    );
    border-radius: 50%;
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.cta-acc {
    color: var(--accent);
}
.cta-inner p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.8rem;
    font-size: 1rem;
}

.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2.2rem;
    border-radius: var(--r-md);
    font-size: 1rem;
    font-weight: 600;
    transition:
        background 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(197, 160, 101, 0.35);
}
.cta-btn:hover {
    background: var(--accent-hov);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 101, 0.4);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 3.5rem 1.5rem 1.5rem;
}
.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 32px;
    margin-bottom: 0.85rem;
}
.footer-col--brand p {
    font-size: 0.89rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}
.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col ul a {
    font-size: 0.89rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}
.footer-col ul a:hover {
    color: var(--accent);
}
.footer-col ul li:last-child {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.89rem;
}

.footer-bottom {
    max-width: 1000px;
    margin: 1.2rem auto 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}
.footer-bottom p {
    margin: 0.4rem 0;
}
.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: var(--accent-hov);
}

/* =========================================================
   TEAM SECTION
   ========================================================= */
.team-photo {
    margin-top: 2.5rem;
    text-align: center;
}
.team-img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--r-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.team-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Contact Section - Two Columns */
.contact-section {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-calendly {
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-avatar {
    flex-shrink: 0;
}
.contact-avatar img {
    width: 200px;
    height: auto;
    border-radius: var(--r-sm);
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: none;
}

.contact-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.4rem;
}

.contact-title {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    font-size: 1rem;
    transition: color 0.2s;
    text-decoration: none;
}
.contact-link:hover {
    color: var(--accent);
}
.contact-link svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* =========================================================
   BLOG SECTION
   ========================================================= */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.blog-grid__side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    transition:
        transform 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
}

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

/* Featured card — full height left column */
.blog-card--featured {
    height: 100%;
}

.blog-card--featured .blog-card__img {
    height: 280px;
}

.blog-card--featured .blog-card__body h3 {
    font-size: 1.35rem;
}

/* Small cards — horizontal layout */
.blog-card--small {
    flex-direction: row;
}

.blog-card--small .blog-card__img {
    width: 220px;
    min-height: 100%;
    flex-shrink: 0;
}

.blog-card--small .blog-card__body h3 {
    font-size: 1.05rem;
}

/* Card image */
.blog-card__img {
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.04);
}

/* Card body */
.blog-card__body {
    padding: 1.2rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
    min-height: 0;
}

.blog-card__body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--primary);
}

.blog-card__body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* Blog tag */
.blog-tag {
    display: inline-block;
    width: fit-content;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

/* Blog meta */
.blog-meta {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.4rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

/* =========================================================
   ARTICLE PAGE
   ========================================================= */

/* ── Article Hero ── */
.article-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(15, 23, 42, 0.8) 100%
    );
}
.article-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.article-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-top: 0.6rem;
    margin-bottom: 0.8rem;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

/* ── Article Body ── */
.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.article-body h2 {
    font-size: 1.45rem;
    font-weight: 700;
    margin: 2.5rem 0 0.8rem;
    color: var(--primary);
}
.article-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 0.6rem;
    color: var(--primary);
}
.article-body p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text);
}
.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--text);
}
.article-body li {
    margin-bottom: 0.4rem;
}
.article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 0.8rem 1.2rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-muted);
    background: var(--accent-soft);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.article-body img {
    width: 100%;
    border-radius: var(--r-md);
    box-shadow: var(--sh-md);
    margin: 1.5rem 0;
}
.article-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
.article-body a:hover {
    color: var(--accent-hov);
}

/* ── Related Articles Grid ── */
.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ── Article Nav — always scrolled look ── */
.nav--article {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 14px rgba(15, 23, 42, 0.08);
    padding: 0.7rem 2rem;
}
.nav--article .nav-logo-img {
    filter: brightness(0);
}
.nav--article .nav-links a {
    color: var(--text);
}
.nav--article .nav-badge {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--text-muted);
}
.nav--article .nav-hamburger span {
    background: var(--primary);
}

/* =========================================================
   VIDEO SECTION
   ========================================================= */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.video-item {
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--r-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--r-lg);
}

/* =========================================================
   PRICING PACKAGES
   ========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.package {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.package:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.package--featured {
    border-color: var(--accent);
    border-width: 3px;
    box-shadow: 0 8px 25px rgba(197, 160, 101, 0.15);
}
.package--featured:hover {
    box-shadow: 0 14px 40px rgba(197, 160, 101, 0.25);
}

.pkg-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.pkg-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.5rem;
    background: transparent !important;
}

.pkg-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary) !important;
    margin-bottom: 0.8rem;
    background: transparent !important;
}

.pkg-price {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: transparent !important;
}

.pkg-percent {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent) !important;
    background: transparent !important;
}

.pkg-amount {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text) !important;
    background: transparent !important;
}

.pkg-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light) !important;
    background: transparent !important;
}

.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
}

.pkg-description {
    padding: 0 0 1rem;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.pkg-warning {
    padding: 1rem 0 0;
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.5;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.feat {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.55rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.feat:last-child {
    border-bottom: none;
}

.feat-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feat--yes {
    color: var(--text);
}
.feat--yes .feat-icon {
    color: #10b981;
}

.feat--no {
    color: var(--text-light);
    opacity: 0.6;
}
.feat--no .feat-icon {
    opacity: 0.5;
}

.feat--text {
    color: var(--text);
    flex-direction: column;
    gap: 0.2rem;
}
.feat--text .feat-label {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--primary);
}

.feat--highlight {
    background: rgba(197, 160, 101, 0.08);
    padding: 0.8rem;
    border-radius: var(--r-sm);
    margin: -0.3rem -0.5rem 0.3rem;
}

.pkg-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 0.9rem 1.5rem;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition:
        background 0.2s,
        transform 0.15s;
}
.pkg-btn:hover {
    background: #1a3049;
    transform: translateY(-2px);
}

.pkg-btn--featured {
    background: var(--accent);
}
.pkg-btn--featured:hover {
    background: var(--accent-hov);
}

/* =========================================================
   RESPONSIVE  –  large tablet
   ========================================================= */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* =========================================================
   RESPONSIVE  –  tablet
   ========================================================= */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .mockup {
        width: 300px;
    }

    .why-us {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards--2col {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* article page */
    .article-hero {
        height: 260px;
    }
    .article-hero__content {
        padding: 1.5rem;
    }
    .article-body {
        padding: 2rem 1rem;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   RESPONSIVE  –  mobile
   ========================================================= */
@media (max-width: 640px) {
    /* top bar */
    .top-bar-inner {
        padding: 0.4rem 0.5rem;
        gap: 0.4rem 0.5rem;
        font-size: 0.7rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .top-bar-item {
        font-size: 0.65rem;
        gap: 0.25rem;
        flex-shrink: 1;
    }
    .top-bar-item span {
        white-space: nowrap;
    }
    .top-bar-item svg {
        width: 10px;
        height: 10px;
        flex-shrink: 0;
    }
    .top-bar-sep {
        display: none;
    }

    /* nav */
    .nav-links,
    .nav-cta,
    .nav-badge {
        display: none;
    }
    .nav-hamburger {
        display: flex;
        margin-left: auto;
    }

    /* hero */
    .hero {
        padding: 7.5rem 1.25rem 3rem;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-form {
        padding: 1.2rem;
        max-width: 100%;
    }
    .hf-row {
        grid-template-columns: 1fr;
    }

    .mockup {
        width: 100%;
        max-width: 320px;
    }
    .m-float {
        display: none;
    } /* hide floaters on small screens */

    /* stats */
    .stat-sep {
        display: none;
    }
    .stats-bar-inner {
        gap: 1rem;
    }

    /* cards / why-us */
    .cards,
    .cards--2col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    /* steps */
    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
    }
    .steps::before {
        display: none;
    }

    /* uvp */
    .uvp {
        grid-template-columns: 1fr;
    }

    /* reviews */
    .reviews-grid {
        columns: 1;
    }
    .reviews-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    /* pricing packages */
    .package {
        padding: 1.5rem;
    }
    .pkg-name {
        font-size: 1.4rem;
    }
    .pkg-percent {
        font-size: 1.9rem;
    }

    /* contact section */
    .contact-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* contact card */
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .contact-avatar img {
        width: 100px;
        height: auto;
    }
    .contact-name {
        font-size: 1.3rem;
    }
    .contact-details {
        align-items: center;
    }

    .contact-calendly {
        min-height: 600px;
    }

    /* article page */
    .article-hero {
        height: 220px;
    }
    .article-hero h1 {
        font-size: 1.4rem;
    }
    .article-meta {
        font-size: 0.78rem;
        flex-wrap: wrap;
    }
    .related-grid .blog-card--small {
        flex-direction: column;
    }
    .related-grid .blog-card--small .blog-card__img {
        width: 100%;
        height: 180px;
    }

    /* blog section */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-card--featured .blog-card__img {
        height: 200px;
    }
    .blog-card--small {
        flex-direction: column;
    }
    .blog-card--small .blog-card__img {
        width: 100%;
        height: 180px;
    }

    /* video section */
    .video-grid {
        grid-template-columns: 1fr;
    }

    /* footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
}


/* =========================================================
   HERO GRADIENT VARIANT (OPTIONAL)

   Żeby włączyć: dodaj klasę "hero--gradient-bg" do sekcji <section class="hero">
   Żeby wyłączyć: usuń tę klasę
   ========================================================= */
.hero--gradient-bg {
    background:
        radial-gradient(
            circle at 15% 60%,
            rgba(197, 160, 101, 0.15) 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(197, 160, 101, 0.12) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 50% 95%,
            rgba(197, 160, 101, 0.18) 0%,
            transparent 45%
        ),
        linear-gradient(
            to bottom,
            #1e293b 0%,
            #253647 20%,
            #2f4355 35%,
            #3d5168 50%,
            #54667f 65%,
            #7a8aa1 75%,
            #a8b5c7 85%,
            #d0d7e0 92%,
            #f9fafb 100%
        );
}

.hero--gradient-bg::before {
    background: radial-gradient(
        circle,
        rgba(200, 170, 210, 0.3) 0%,
        transparent 60%
    );
    filter: blur(100px);
    width: 700px;
    height: 700px;
}

.hero--gradient-bg::after {
    background: radial-gradient(
        circle,
        rgba(180, 150, 190, 0.4) 0%,
        transparent 60%
    );
    filter: blur(100px);
    width: 600px;
    height: 600px;
}

/* =========================================================
   CHAT WIDGET - n8n chat customization using CSS Variables
   Based on: https://www.npmjs.com/package/@n8n/chat
   ========================================================= */

/* Override ALL n8n chat CSS variables to match our brand */
:root {
    /* ─── Primary & Secondary Colors ─── */
    --chat--color--primary: #c5a065;
    --chat--color--primary-shade-50: #b89355;
    --chat--color--primary--shade-100: #a88545;
    --chat--color--secondary: #c5a065;
    --chat--color-secondary-shade-50: #d4af77;

    /* ─── Base Colors ─── */
    --chat--color-white: #ffffff;
    --chat--color-light: #f9fafb;
    --chat--color-light-shade-50: #f3efe9;
    --chat--color-light-shade-100: #e5e7eb;
    --chat--color-medium: #d2d4d9;
    --chat--color-dark: #0f172a;
    --chat--color-disabled: #d2d4d9;
    --chat--color-typing: #6b7280;

    /* ─── Layout & Spacing ─── */
    --chat--spacing: 1rem;
    --chat--border-radius: 16px;
    --chat--transition-duration: 0.2s;
    --chat--font-family:
        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;

    /* ─── Window Dimensions ─── */
    --chat--window--width: 400px;
    --chat--window--height: 600px;
    --chat--window--bottom: 1.5rem;
    --chat--window--right: 1.5rem;
    --chat--window--z-index: 9999;
    --chat--window--border: 2px solid var(--chat--color--primary);
    --chat--window--border-radius: var(--chat--border-radius);
    --chat--window--margin-bottom: var(--chat--spacing);

    /* ─── Header Styles ─── */
    --chat--header-height: auto;
    --chat--header--padding: 1.2rem 1rem;
    --chat--header--background: #0f172a;
    --chat--header--color: #ffffff;
    --chat--header--border-top: none;
    --chat--header--border-bottom: 1px solid rgba(197, 160, 101, 0.15);
    --chat--header--border-left: none;
    --chat--header--border-right: none;
    --chat--heading--font-size: 1.15rem;
    --chat--subtitle--font-size: 0.88rem;
    --chat--subtitle--line-height: 1.5;

    /* ─── Message Styles ─── */
    --chat--message--font-size: 0.95rem;
    --chat--message--padding: 0.75rem 1rem;
    --chat--message--border-radius: 12px;
    --chat--message-line-height: 1.55;
    --chat--message--margin-bottom: 0.75rem;
    --chat--message--bot--background: #ffffff;
    --chat--message--bot--color: #1f2937;
    --chat--message--bot--border: 1px solid #e5e7eb;
    --chat--message--user--background: #0f172a;
    --chat--message--user--color: #ffffff;
    --chat--message--user--border: none;
    --chat--message--pre--background: rgba(15, 23, 42, 0.05);
    --chat--messages-list--padding: var(--chat--spacing);

    /* ─── Toggle Button ─── */
    --chat--toggle--size: 64px;
    --chat--toggle--width: var(--chat--toggle--size);
    --chat--toggle--height: var(--chat--toggle--size);
    --chat--toggle--border-radius: 50%;
    --chat--toggle--background: var(--chat--color--primary);
    --chat--toggle--hover--background: var(--chat--color--primary-shade-50);
    --chat--toggle--active--background: var(--chat--color--primary--shade-100);
    --chat--toggle--color: var(--chat--color-white);

    /* ─── Input Area ─── */
    --chat--textarea--height: 50px;
    --chat--textarea--max-height: 200px;
    --chat--input--font-size: 0.95rem;
    --chat--input--border: 1px solid #e5e7eb;
    --chat--input--border-radius: 10px;
    --chat--input--padding: 0.75rem 1rem;
    --chat--input--background: var(--chat--color-white);
    --chat--input--text-color: var(--chat--color-dark);
    --chat--input--line-height: 1.5;
    --chat--input--placeholder--font-size: var(--chat--input--font-size);
    --chat--input--border-active: 1px solid var(--chat--color--primary);
    --chat--input--left--panel--width: 2rem;

    /* ─── Button Styles (Primary & Secondary) ─── */
    --chat--button--padding: 0.6rem 1rem;
    --chat--button--border-radius: 10px;
    --chat--button--font-size: 0.9rem;
    --chat--button--line-height: 1.4;

    /* Primary button */
    --chat--button--color--primary: var(--chat--color-white);
    --chat--button--background--primary: var(--chat--color--primary);
    --chat--button--border--primary: none;
    --chat--button--color--primary--hover: var(--chat--color-white);
    --chat--button--background--primary--hover: var(
        --chat--color--primary-shade-50
    );
    --chat--button--border--primary--hover: none;
    --chat--button--color--primary--disabled: var(--chat--color-white);
    --chat--button--background--primary--disabled: var(--chat--color-disabled);
    --chat--button--border--primary--disabled: none;

    /* Secondary button */
    --chat--button--color--secondary: var(--chat--color-dark);
    --chat--button--background--secondary: var(--chat--color-light);
    --chat--button--border--secondary: 1px solid #e5e7eb;
    --chat--button--color--secondary--hover: var(--chat--color-dark);
    --chat--button--background--secondary--hover: var(
        --chat--color-light-shade-50
    );
    --chat--button--border--secondary--hover: 1px solid
        var(--chat--color--primary);
    --chat--button--color--secondary--disabled: var(--chat--color-disabled);
    --chat--button--background--secondary--disabled: var(--chat--color-light);
    --chat--button--border--secondary--disabled: 1px solid
        var(--chat--color-disabled);

    --chat--close--button--color-hover: var(--chat--color--primary);

    /* ─── Send & File Buttons ─── */
    --chat--input--send--button--background: transparent;
    --chat--input--send--button--color: var(--chat--color--primary);
    --chat--input--send--button--background-hover: var(--chat--color-light);
    --chat--input--send--button--color-hover: var(
        --chat--color--primary-shade-50
    );
    --chat--input--file--button--background: transparent;
    --chat--input--file--button--color: var(--chat--color--primary);
    --chat--input--file--button--background-hover: var(--chat--color-light);
    --chat--input--file--button--color-hover: var(
        --chat--color--primary-shade-50
    );
    --chat--files-spacing: 0.5rem;

    /* ─── Body & Footer ─── */
    --chat--body--background: var(--chat--color-light);
    --chat--footer--background: var(--chat--color-white);
    --chat--footer--color: var(--chat--color-dark);
}

/* ─── Pulsating notification dot animation ─── */
@keyframes chatPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* ─── Enhanced chat toggle button with gradient ─── */
body button[class*="chat-button"],
body button[class*="ChatButton"],
body button[class*="chat-trigger"],
body button[class*="toggle"],
body .n8n-chat button[class*="button"],
body [id*="n8n"] button,
body [class*="n8n"] button {
    background: linear-gradient(135deg, #c5a065 0%, #d4af77 100%) !important;
    background-color: #c5a065 !important;
    box-shadow: 0 4px 20px rgba(197, 160, 101, 0.4) !important;
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
}

body button[class*="chat-button"]:hover,
body button[class*="ChatButton"]:hover,
body button[class*="chat-trigger"]:hover,
body .n8n-chat button[class*="button"]:hover,
body [id*="n8n"] button:hover,
body [class*="n8n"] button:hover {
    transform: scale(1.08) translateY(-2px) !important;
    box-shadow: 0 6px 28px rgba(197, 160, 101, 0.5) !important;
    background: linear-gradient(135deg, #d4af77 0%, #c5a065 100%) !important;
}

/* ─── Green online status indicator ─── */
body button[class*="chat-button"]::before,
body button[class*="ChatButton"]::before,
body button[class*="chat-trigger"]::before,
body .n8n-chat button[class*="button"]::before,
body [id*="n8n"] button::before,
body [class*="n8n"] button::before {
    content: "";
    position: absolute;
    top: 6px;
    right: 6px;
    width: 11px;
    height: 11px;
    background: #4ade80;
    border-radius: 50%;
    border: 2.5px solid white;
    animation: chatPulse 2s ease-in-out infinite;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ─── Chat window styling ─── */
body div[class*="chatWindow"],
body div[class*="ChatWindow"],
body [class*="chat-window"] {
    border: none !important;
    box-shadow: 0 12px 48px rgba(15, 23, 42, 0.2) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;
}

/* ─── Header - ciemne tło bez gradientu ─── */
body div[data-key="header"],
body div[class*="header"],
body div[class*="Header"],
body [class*="ChatHeader"] {
    background: #0f172a !important;
    background-image: none !important;
    background-color: #0f172a !important;
    border-bottom: 1px solid rgba(197, 160, 101, 0.15) !important;
}

/* ─── Tekst w headerze - biały i czytelny ─── */
body div[data-key="header"] *,
body div[class*="header"] *,
body div[class*="Header"] *,
body [class*="ChatHeader"] * {
    color: #ffffff !important;
}

/* ─── Tytuł chatu ─── */
body h3[class*="title"],
body [class*="ChatTitle"],
body [class*="chat-title"] {
    color: #ffffff !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
}

/* ─── Podtytuł chatu ─── */
body p[class*="subtitle"],
body [class*="ChatSubtitle"],
body [class*="chat-subtitle"] {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.88rem !important;
}

/* ─── Tło obszaru wiadomości ─── */
body div[class*="ChatBody"],
body div[class*="chat-body"],
body div[class*="messages-container"] {
    background: #f9fafb !important;
}

/* ─── Wiadomości bota - białe karty ─── */
body div[class*="MessageBot"],
body div[class*="message-bot"],
body [class*="ChatMessageBot"] {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    color: #1f2937 !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06) !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    line-height: 1.55 !important;
}

/* ─── Wiadomości użytkownika - ciemne tło ─── */
body div[class*="MessageUser"],
body div[class*="message-user"],
body [class*="ChatMessageUser"] {
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    line-height: 1.55 !important;
}

/* ─── Tekst w wiadomościach ─── */
body div[class*="MessageBot"] *,
body [class*="ChatMessageBot"] * {
    color: #1f2937 !important;
}

body div[class*="MessageUser"] *,
body [class*="ChatMessageUser"] * {
    color: #ffffff !important;
}

/* ─── Footer/Input area tło ─── */
body div[class*="ChatFooter"],
body div[class*="chat-footer"],
body [class*="input-container"] {
    background: #ffffff !important;
    border-top: 1px solid #e5e7eb !important;
}

/* ─── Input field ─── */
body input[class*="Input"],
body textarea[class*="Input"],
body input[class*="input"],
body textarea[class*="input"],
body [class*="ChatInput"] {
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;
    background: #f9fafb !important;
    color: #1f2937 !important;
    font-size: 0.95rem !important;
}

body input[class*="Input"]:focus,
body textarea[class*="Input"]:focus,
body input[class*="input"]:focus,
body textarea[class*="input"]:focus,
body [class*="ChatInput"]:focus {
    border: 1px solid #c5a065 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(197, 160, 101, 0.1) !important;
    background: #ffffff !important;
}

body input[class*="Input"]::placeholder,
body textarea[class*="Input"]::placeholder,
body [class*="ChatInput"]::placeholder {
    color: #9ca3af !important;
}

/* ─── Hide "powered by" branding ─── */
body div[class*="poweredBy"],
body div[class*="powered-by"],
body div[class*="PoweredBy"],
body a[class*="poweredBy"],
body a[class*="powered-by"] {
    display: none !important;
}

/* ─── Mobile responsive adjustments ─── */
@media (max-width: 640px) {
    :root {
        --chat--window--width: 100%;
        --chat--window--height: 100vh;
        --chat--window--bottom: 0;
        --chat--window--right: 0;
        --chat--window--border-radius: 0;
        --chat--toggle--size: 56px;
    }

    body button[class*="chat-button"]::before,
    body button[class*="ChatButton"]::before {
        top: 4px;
        right: 4px;
        width: 9px;
        height: 9px;
        border-width: 2px;
    }

    body div[class*="chatWindow"],
    body div[class*="ChatWindow"] {
        border-radius: 0 !important;
        border: none !important;
    }
}

/* =========================================================
   PACKAGE HEADER FIX - Force transparent backgrounds
   ========================================================= */
.package .pkg-header,
.package .pkg-header *,
.package .pkg-name,
.package .pkg-price,
.package .pkg-price *,
.package .pkg-percent,
.package .pkg-amount,
.package .pkg-note {
    background: transparent !important;
    background-color: transparent !important;
}

.package .pkg-name,
.package .pkg-percent {
    color: var(--primary) !important;
}

.package .pkg-percent {
    color: var(--accent) !important;
}

.package .pkg-amount,
.package .pkg-note {
    color: var(--text) !important;
}
