@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&family=Orbitron:wght@400;600;700;800&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&family=Instrument+Sans:wght@400;500;600;700&family=Syne:wght@400;700;800&family=DM+Mono:wght@300;400;500&display=swap');

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

:root {
    --bg: #0a0d12;
    --card: #0f1520;
    --border: #1a2a3a;
    --cyan: #00d4e8;
    --cyan-dim: rgba(0, 212, 232, 0.15);
    --cyan-glow: rgba(0, 212, 232, 0.4);
    --text: #ffffff;
    --muted: #ffffff;
    --red: #ff4444;
    --red-dim: rgba(255, 68, 68, 0.15);
    --green: #00e8a2;
    --green-dim: rgba(0, 232, 162, 0.15);
}

html {
    overflow-x: hidden;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 20%, rgba(0, 212, 232, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 80%, rgba(0, 212, 232, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.04) 2px,
            rgba(0, 0, 0, 0.04) 4px);
    pointer-events: none;
    z-index: 9999;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section {
    padding: 100px 20px;
    position: relative;
}

.section:nth-child(odd) {
    padding: 100px 20px;
}

/* â”€â”€â”€ HEADER STYLES â”€â”€â”€ */
.header {
    text-align: center;
    margin-bottom: 64px;
}

.eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.1s;
}

.eyebrow::before,
.eyebrow::after {
    content: '//';
    margin: 0 8px;
    opacity: 0.5;
}

h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.05;
    color: #fff;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}

h1 span {
    color: var(--cyan);
}

.subtitle {
    margin-top: 16px;
    color: var(--muted);
    font-size: 18px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.35s;
}

h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    color: #fff;
}

/* â”€â”€â”€ PROCESS/ROADMAP STYLES â”€â”€â”€ */
.roadmap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            var(--border) 10%,
            var(--border) 90%,
            transparent);
}

.step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
}

.step:nth-child(1) {
    animation: slideIn 0.55s ease forwards 0.5s;
}

.step:nth-child(2) {
    animation: slideIn 0.55s ease forwards 0.7s;
}

.step:nth-child(3) {
    animation: slideIn 0.55s ease forwards 0.9s;
}

.step:nth-child(4) {
    animation: slideIn 0.55s ease forwards 1.1s;
}

.step+.step {
    margin-top: -1px;
}

.node {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 28px;
    position: relative;
    z-index: 1;
}

.node-circle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--cyan);
    background: var(--bg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px var(--cyan-glow), inset 0 0 12px rgba(0, 212, 232, 0.05);
    transition: box-shadow 0.3s;
}

.step:hover .node-circle {
    box-shadow: 0 0 35px var(--cyan-glow), inset 0 0 20px rgba(0, 212, 232, 0.1);
}

.node-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
}

.connector {
    flex: 1;
    width: 1px;
    background: var(--border);
    min-height: 30px;
    margin-top: 4px;
}

.step:last-child .connector {
    display: none;
}

.card {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 2px solid var(--cyan);
    border-radius: 6px;
    padding: 28px 32px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: default;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--cyan), transparent 60%);
    opacity: 0.5;
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan-dim) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.step:hover .card {
    border-color: var(--cyan);
    transform: translateX(4px);
}

.step:hover .card::after {
    opacity: 1;
}

.step-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cyan);
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 212, 232, 0.2);
    padding: 3px 10px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 10px;
}

.card p {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    font-weight: 300;
}

.card p strong {
    color: var(--text);
    font-weight: 600;
}

.deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.chip {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 2px;
}

.step:last-child .card {
    border-left-color: #00e8a2;
}

.step:last-child .node-circle {
    border-color: #00e8a2;
    box-shadow: 0 0 20px rgba(0, 232, 162, 0.4), inset 0 0 12px rgba(0, 232, 162, 0.05);
}

.step:last-child .node-number {
    color: #00e8a2;
}

.step:last-child .step-tag {
    color: #00e8a2;
    background: rgba(0, 232, 162, 0.1);
    border-color: rgba(0, 232, 162, 0.2);
}

.step:last-child .card::before {
    background: linear-gradient(to right, #00e8a2, transparent 60%);
}

/* â”€â”€â”€ COMPARISON TABLE STYLES â”€â”€â”€ */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.comparison-col {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.4s;
}

.comparison-col:nth-child(2) {
    animation-delay: 0.55s;
}

.comparison-col-header {
    margin-bottom: 32px;
}

.comparison-col-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    line-height: 1.2;
}

.comparison-col:first-child .comparison-col-header h2 {
    color: #ff6b6b;
}

.comparison-col:last-child .comparison-col-header h2 {
    color: var(--green);
}

.comparison-col-header p {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
}

.comparison-col:first-child .comparison-col-header {
    border-bottom: 2px solid var(--red-dim);
    padding-bottom: 20px;
}

.comparison-col:last-child .comparison-col-header {
    border-bottom: 2px solid var(--green-dim);
    padding-bottom: 20px;
}

.items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.comparison-col:first-child .item {
    border-left-color: var(--red);
    animation: slideInLeft 0.5s ease forwards;
}

.comparison-col:last-child .item {
    border-left-color: var(--green);
    animation: slideInRight 0.5s ease forwards;
}

.item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(4px);
}

.comparison-col:first-child .item:hover {
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.1);
}

.comparison-col:last-child .item:hover {
    box-shadow: 0 0 20px rgba(0, 232, 162, 0.1);
}

.item-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

.comparison-col:first-child .item-icon {
    color: var(--red);
}

.comparison-col:last-child .item-icon {
    color: var(--green);
}

.item-text {
    line-height: 1.6;
    color: var(--text);
}

.item-text strong {
    color: var(--text);
    font-weight: 600;
}

/* â”€â”€â”€ SOCIAL PROOF STYLES â”€â”€â”€ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
    align-items: center;
}

.about-content {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.4s;
}

.about-image {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.5s;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 24px;
}

.about-text strong {
    color: var(--text);
    font-weight: 600;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 212, 232, 0.2);
    border-left: 3px solid var(--cyan);
    border-radius: 4px;
}

.credential-icon {
    flex-shrink: 0;
    color: var(--cyan);
    font-weight: 700;
    margin-top: 2px;
}

.credential-text {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}

.credential-text strong {
    color: var(--text);
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--card), #0f1520);
    border: 2px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.clients {
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.6s;
}

.clients-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.logo-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--card), #0f1520);
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

.logo-placeholder:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.testimonials {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.7s;
}

.testimonials-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--cyan);
    border-radius: 6px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--cyan), transparent 60%);
    opacity: 0.5;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan-dim) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.75s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.85s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.95s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 1.05s;
}

.testimonial-card:nth-child(5) {
    animation-delay: 1.15s;
}

.testimonial-card:nth-child(6) {
    animation-delay: 1.25s;
}

.testimonial-img-card {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
}

.testimonial-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 7px;
    transition: transform 0.3s ease;
}

.testimonial-img-card:hover img {
    transform: scale(1.02);
}

.testimonial-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 212, 232, 0.2);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-weight: 700;
    font-size: 12px;
}

.testimonial-meta h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.testimonial-meta p {
    font-size: 12px;
    color: var(--muted);
}

.testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.testimonial-quote strong {
    color: var(--text);
}

.quote-mark {
    font-size: 32px;
    color: var(--cyan);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 8px;
}

.featured-testimonial {
    background: linear-gradient(135deg, var(--card), #0f2030);
    border: 2px solid var(--cyan);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.5s;
}

.featured-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--cyan), transparent 70%);
}

.featured-testimonial-header {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.featured-avatar {
    width: 64px;
    height: 64px;
    background: var(--cyan-dim);
    border: 2px solid var(--cyan);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-weight: 700;
    font-size: 24px;
}

.featured-meta h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.featured-meta p {
    font-size: 13px;
    color: var(--muted);
}

.featured-quote {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

.featured-quote strong {
    color: #fff;
}

.featured-quote-mark {
    font-size: 48px;
    color: var(--cyan);
    opacity: 0.2;
    line-height: 0.4;
    margin-bottom: 16px;
}



/* â”€â”€â”€ HERO SECTION STYLES â”€â”€â”€ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-left {
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero-title .accent {
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.hero-title .red-accent {
    color: #ff4466;
    text-shadow: 0 0 20px rgba(255, 68, 102, 0.3);
}

.hero-cta {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #050a0e;
    background: linear-gradient(135deg, #00f0ff, #00d4e0);
    padding: 18px 48px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.hero-cta:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    z-index: 1;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(100, 60, 180, 0.06));
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 40px;
}

/* â”€â”€â”€ STATS SECTION STYLES â”€â”€â”€ */
.aurora-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-bg::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.09) 0%, rgba(0, 240, 255, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: aurora1 12s ease-in-out infinite;
    filter: blur(40px);
}

.aurora-bg::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    bottom: -150px;
    left: -120px;
    background: radial-gradient(circle, rgba(100, 60, 180, 0.08) 0%, rgba(100, 60, 180, 0.02) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: aurora2 15s ease-in-out infinite;
    filter: blur(45px);
}

.aurora-extra {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 30%;
    left: 40%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    animation: aurora3 18s ease-in-out infinite;
    filter: blur(50px);
}

.bg-snippets {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.snippet {
    position: absolute;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: rgba(0, 240, 255, 0.06);
    white-space: nowrap;
    animation: floatUp 25s linear infinite;
    user-select: none;
    pointer-events: none;
}

.snippet:nth-child(1) {
    left: 5%;
    bottom: -20px;
    animation-delay: 0s;
    font-size: 10px;
}

.snippet:nth-child(2) {
    left: 18%;
    bottom: -20px;
    animation-delay: -3s;
    font-size: 12px;
    color: rgba(100, 60, 180, 0.05);
}

.snippet:nth-child(3) {
    left: 35%;
    bottom: -20px;
    animation-delay: -7s;
    font-size: 9px;
}

.snippet:nth-child(4) {
    left: 52%;
    bottom: -20px;
    animation-delay: -11s;
    font-size: 11px;
}

.snippet:nth-child(5) {
    left: 70%;
    bottom: -20px;
    animation-delay: -4s;
    font-size: 10px;
    color: rgba(100, 60, 180, 0.05);
}

.snippet:nth-child(6) {
    left: 85%;
    bottom: -20px;
    animation-delay: -14s;
    font-size: 12px;
}

.snippet:nth-child(7) {
    left: 12%;
    bottom: -20px;
    animation-delay: -9s;
    font-size: 9px;
}

.snippet:nth-child(8) {
    left: 42%;
    bottom: -20px;
    animation-delay: -16s;
    font-size: 10px;
    color: rgba(100, 60, 180, 0.05);
}

.snippet:nth-child(9) {
    left: 60%;
    bottom: -20px;
    animation-delay: -2s;
    font-size: 11px;
}

.snippet:nth-child(10) {
    left: 90%;
    bottom: -20px;
    animation-delay: -12s;
    font-size: 9px;
}

/* AWARENESS SECTION */
.awareness-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.awareness-section .section-title span {
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.33);
}

.awareness-wrapper {
    margin-top: 48px;
}

.awareness-container {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(100, 60, 180, 0.04));
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 48px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.3s;
}

.awareness-intro {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.awareness-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.awareness-list li {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 14px 0;
    line-height: 1.6;
}

.awareness-confirm {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 32px 0;
    line-height: 1.6;
}

.awareness-info-banner {
    background: rgba(0, 100, 100, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.7;
}

.awareness-info-banner strong {
    color: var(--cyan);
    font-weight: 700;
}

/* IMAGE PLACEHOLDER SECTION */
.image-placeholder-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 70%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(100, 60, 180, 0.06));
    border: 2px dashed rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    color: #fff;
    text-align: center;
    min-height: 300px;
}

@media (max-width: 768px) {
    .image-placeholder {
        width: 90%;
        aspect-ratio: 16 / 10;
    }
}

.stats-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.section-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 5vw, 52px);
    line-height: 1.15;
    color: #fff;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.35s;
}

.section-title span {
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.33);
}

.section-subtitle {
    font-size: 18px;
    color: #fff;
    margin-top: 16px;
    font-weight: 400;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.5s;
}

.tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.6s;
}

.tab-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    background: #0a1218;
    color: #fff;
    border: 1px solid rgba(0, 240, 255, 0.13);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.tab-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    color: #fff;
    background: #0d1a22;
}

.tab-btn.active {
    color: var(--cyan);
    border-color: rgba(0, 240, 255, 0.33);
    background: #0d1a22;
    box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.05);
}

.tab-btn.active::before {
    transform: scaleX(1);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.53);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: tabFadeIn 0.45s ease;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.stat-card {
    background: linear-gradient(145deg, #0a161d, #081118);
    border: 1px solid rgba(0, 240, 255, 0.13);
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 240, 255, 0.53), transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.stat-card:hover {
    border-color: rgba(0, 240, 255, 0.33);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.27), 0 0 60px rgba(0, 240, 255, 0.13);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card-inner {
    position: relative;
    z-index: 1;
}

.stat-source {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1;
    color: var(--cyan);
    text-shadow: 0 0 25px rgba(0, 240, 255, 0.27);
    margin-bottom: 4px;
}

.stat-number .unit {
    font-size: 26px;
    font-weight: 600;
    opacity: 0.7;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 10px;
}

.stat-detail {
    font-size: 18px;
    color: #fff;
    line-height: 1.55;
}

.stat-badge {
    display: inline-block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 12px;
}

.badge-growth {
    background: rgba(0, 255, 136, 0.07);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.badge-warning {
    background: rgba(255, 200, 0, 0.07);
    color: #ffc800;
    border: 1px solid rgba(255, 200, 0, 0.2);
}

.badge-alert {
    background: rgba(255, 68, 102, 0.07);
    color: #ff4466;
    border: 1px solid rgba(255, 68, 102, 0.2);
}

.stat-card.highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #081820, #0a1218, #0c1420);
    border-color: rgba(0, 240, 255, 0.33);
    padding: 36px 32px;
}

.stat-card.highlight .stat-number {
    font-size: 56px;
}

.highlight-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight-left {
    flex: 0 0 auto;
}

.highlight-right {
    flex: 1;
    min-width: 250px;
}

.cta-wrapper {
    text-align: center;
    margin-top: 56px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 1s;
}

.cta-line {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.5;
}

.cta-line span {
    color: var(--cyan);
}

.cta-btn {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #050a0e;
    background: linear-gradient(135deg, var(--cyan), #00d4e0);
    padding: 18px 48px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.27);
}

.cta-btn:hover {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.67), 0 0 40px rgba(0, 240, 255, 0.33), 0 0 80px rgba(0, 240, 255, 0.13);
    transform: translateY(-2px);
}

.count-up {
    display: inline-block;
}

/* â”€â”€â”€ CALCULATOR SECTION STYLES â”€â”€â”€ */
.calculator-section {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.calculator-wrapper {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.65s;
}

.calculator-container {
    background: linear-gradient(135deg, rgba(10, 18, 24, 0.8), rgba(8, 17, 24, 0.8));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
}

.input-group {
    margin-bottom: 32px;
}

.input-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
    display: block;
}

.input-label .currency {
    color: var(--cyan);
    font-weight: 600;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.input-field {
    flex: 1;
    background: rgba(5, 10, 14, 0.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: var(--text);
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.input-unit {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    min-width: 60px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.results-container {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(100, 60, 180, 0.06));
    border: 1px solid rgba(0, 240, 255, 0.33);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
}

.results-header {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.result-card {
    background: rgba(5, 10, 14, 0.5);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.result-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.result-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 25px rgba(0, 240, 255, 0.27);
    line-height: 1;
    margin-bottom: 4px;
}

.result-value .currency {
    font-size: 24px;
    opacity: 0.8;
}

.result-period {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--muted);
}

.calculate-btn {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #050a0e;
    background: linear-gradient(135deg, #00f0ff, #00d4e0);
    padding: 18px 48px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    margin-top: 32px;
    width: 100%;
}

.calculate-btn:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

.calculate-btn:active {
    transform: translateY(0);
}

.results-empty {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    padding: 20px;
    font-style: italic;
}

.info-banner {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 240, 255, 0.06));
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 32px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.info-banner strong {
    color: #00ff88;
}

.benefits-section {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.benefits-table {
    background: linear-gradient(135deg, rgba(10, 18, 24, 0.6), rgba(8, 17, 24, 0.6));
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.3s;
}

.benefits-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Rajdhani', sans-serif;
}

.benefits-table th {
    background: rgba(0, 240, 255, 0.08);
    border-bottom: 2px solid rgba(0, 240, 255, 0.33);
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--cyan);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.benefits-table td {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    color: #fff;
    line-height: 1.6;
    font-size: 14px;
}

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

.benefits-table tr:hover {
    background: rgba(0, 240, 255, 0.04);
}

.opportunity-section {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.4s;
}

.opportunity-container {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(100, 60, 180, 0.05));
    border: 1px solid rgba(0, 240, 255, 0.33);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
}

.opportunity-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.opportunity-title span {
    color: var(--red);
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
}

.opportunity-subtitle {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 24px;
}

.opportunity-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.opportunity-text strong {
    color: #fff;
}

.equation-box {
    background: rgba(5, 10, 14, 0.7);
    border-left: 3px solid var(--cyan);
    border-radius: 8px;
    padding: 20px;
    margin: 28px 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--cyan);
    line-height: 1.8;
}

.equation-box .description {
    color: var(--muted);
    font-size: 12px;
    margin-top: 12px;
    font-style: italic;
}

.inaction-highlight {
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 28px 0;
}

.inaction-highlight strong {
    color: var(--red);
}

.opportunity-list {
    margin: 24px 0;
    padding-left: 20px;
}

.opportunity-list li {
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.6;
}

.opportunity-list li strong {
    color: #fff;
}

/* â”€â”€â”€ TRANSITION SECTION STYLES â”€â”€â”€ */
.transition-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.transition-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}

.transition-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}

.transition-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: #fff;
    margin-bottom: 32px;
}

.transition-quote {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--cyan);
    font-style: italic;
    border-left: 4px solid var(--cyan);
    padding-left: 24px;
    display: inline-block;
    margin: 0;
}

.ai-capabilities {
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.35s;
}

.capabilities-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 32px);
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}

/* AI CARDS */
.ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.ai-card {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s ease;
}

.ai-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
}

.ai-card-icon {
    font-size: 28px;
    line-height: 1;
}

.ai-card-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 700;
    color: var(--cyan);
    line-height: 1.3;
}

.ai-card-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.ai-card-note {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: #4ade80;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.ai-cards-more {
    display: none;
    margin-bottom: 20px;
}

.show-more-wrapper {
    text-align: center;
    margin-top: 8px;
}

.show-more-btn {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--cyan);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.show-more-btn:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--cyan);
}

/* PROOF ELEMENT */
.ai-proof {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(100, 60, 180, 0.04));
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
}

.proof-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.proof-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    color: #fff;
    margin: 0 0 8px;
}

.proof-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: #fff;
    margin: 0 0 32px;
}

.proof-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.proof-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.proof-step-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--cyan);
    opacity: 0.5;
}

.proof-step p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.proof-video-placeholder {
    background: rgba(5, 10, 14, 0.6);
    border: 2px dashed rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: #fff;
}

/* â”€â”€â”€ PROOF CASES GRID â”€â”€â”€ */
.proof-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 900px) {
    .proof-cases-grid {
        grid-template-columns: 1fr;
    }
}

.proof-case-card {
    background: rgba(5, 10, 14, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 10px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.3s;
}

.proof-case-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
}

.proof-case-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--cyan);
    text-transform: uppercase;
    opacity: 0.7;
}

.proof-case-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.proof-case-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.55;
    flex: 1;
}

/* Media placeholder w karcie */
.proof-case-media {
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    border: 2px dashed rgba(0, 240, 255, 0.18);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.proof-case-media-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: rgba(0, 240, 255, 0.5);
    text-align: center;
    padding: 16px;
}

/* YouTube facade â€“ pokazuje thumbnail, Ĺ‚aduje iframe dopiero po klikniÄ™ciu */
.yt-facade {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.yt-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yt-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.yt-facade:hover .yt-play-btn {
    background: rgba(0, 240, 255, 0.2);
    transform: scale(1.1);
}

.yt-facade iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.transition-cta-lead {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.ai-limitations {
    background: linear-gradient(135deg, rgba(255, 59, 107, 0.08), rgba(100, 60, 180, 0.06));
    border: 1px solid rgba(255, 59, 107, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.5s;
}

.limitations-intro {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 0 0 20px 0;
}

.limitations-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.limitations-list li {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 12px 0;
    line-height: 1.6;
}

.limitations-closing {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.limitations-closing strong {
    color: #ff3b6b;
    font-weight: 700;
}

.transition-cta-wrapper {
    text-align: center;
    margin: 40px 0;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.65s;
}

.transition-cta {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0a0e1a;
    background: var(--cyan);
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.transition-cta:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.transition-closing {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    color: #fff;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.8s;
}

.transition-closing strong {
    color: #fff;
    font-weight: 700;
}

/* â”€â”€â”€ INVESTMENT SECTION STYLES â”€â”€â”€ */
.investment-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.5s;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(10, 18, 24, 0.8), rgba(8, 17, 24, 0.8));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
    transform: translateY(-4px);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
}

.pricing-feature {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.pricing-feature::before {
    content: 'â†’';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.pricing-cta {
    font-size: 14px;
    color: var(--muted);
    padding: 12px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-cta {
    background: rgba(0, 240, 255, 0.12);
    color: var(--cyan);
}

.pricing-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 4px;
}

.pricing-price-label {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
}

.investment-footer {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(100, 60, 180, 0.05));
    border: 1px solid rgba(0, 240, 255, 0.33);
    border-radius: 16px;
    padding: 40px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.65s;
}

.investment-footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    text-align: center;
    line-height: 1.4;
}

.investment-footer-title strong {
    color: #fff;
}

.investment-scenarios {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.scenario {
    padding: 16px;
    background: rgba(5, 10, 14, 0.6);
    border-left: 3px solid var(--cyan);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
}

.scenario strong {
    color: #fff;
}

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aurora1 {

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

    33% {
        transform: translate(-40px, 30px) scale(1.1);
        opacity: 1;
    }

    66% {
        transform: translate(20px, -15px) scale(0.9);
        opacity: 0.8;
    }
}

@keyframes aurora2 {

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

    40% {
        transform: translate(50px, -35px) scale(1.15);
        opacity: 1;
    }

    70% {
        transform: translate(-30px, 20px) scale(0.95);
        opacity: 0.7;
    }
}

@keyframes aurora3 {

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

    50% {
        transform: translate(-35px, 20px) scale(1.2);
        opacity: 0.9;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
/* â”€â”€â”€ GLOBAL TEXT OVERRIDE â”€â”€â”€ */
p,
li,
td,
.section-subtitle,
.stat-detail,
.stat-label,
.about-text,
.credential-text,
.faq-answer-text,
.faq-answer-text p,
.faq-answer-text li,
.testimonial-quote,
.featured-quote,
.card p,
.item-text,
.opportunity-text,
.opportunity-list li,
.scenario,
.pricing-feature,
.benefits-table td,
.investment-footer-title,
.info-banner,
.cta-line {
    color: var(--text);
    font-size: inherit;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        min-height: 300px;
    }

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

@media (max-width: 768px) {
    body {
        font-size: 18px;
    }

    .section {
        padding: 60px 16px;
    }

    .hero {
        min-height: auto;
        padding: 40px 16px;
    }

    .hero-title {
        font-size: clamp(28px, 5vw, 40px);
        margin-bottom: 24px;
    }

    .hero-right {
        min-height: 250px;
    }

    .comparison {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .roadmap::before {
        left: 19px;
    }

    .node {
        width: 40px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question-title {
        font-size: 14px;
    }

    .faq-answer-text {
        padding: 0 20px 20px 20px;
        font-size: 13px;
    }

    .stats-section {
        padding: 40px 16px 60px;
    }

    .tab-btn {
        padding: 12px 18px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-card.highlight .stat-number {
        font-size: 44px;
    }

    .highlight-inner {
        gap: 20px;
    }

    .stat-grid {
        gap: 14px;
    }

    .stat-card {
        padding: 24px 20px;
    }

    .calculator-section {
        padding: 40px 16px 60px;
    }

    .calculator-container {
        padding: 24px;
    }

    .input-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-value {
        font-size: 32px;
    }

    .calculate-btn {
        padding: 16px 32px;
    }

    .benefits-section {
        padding: 40px 16px 60px;
    }

    .benefits-table th,
    .benefits-table td {
        padding: 16px;
        font-size: 13px;
    }

    .benefits-table th {
        font-size: 13px;
    }

    .opportunity-container {
        padding: 24px;
    }

    .opportunity-title {
        font-size: clamp(20px, 3vw, 28px);
    }

    .investment-section {
        padding: 40px 16px 60px;
    }

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

    .pricing-card {
        padding: 24px;
    }

    .pricing-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .pricing-price {
        font-size: 28px;
    }

    .investment-footer {
        padding: 24px;
    }

    .investment-footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .scenario {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tabs-wrapper {
        flex-direction: column;
        gap: 6px;
    }

    .tab-btn {
        border-radius: 8px !important;
    }

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

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

/* â”€â”€â”€ BURNING MONEY SECTION â”€â”€â”€ */
.burning-money-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.burning-money-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .burning-money-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }

    .burning-money-grid .section-title {
        text-align: center !important;
    }
}

/* â”€â”€â”€ MOBILE FLOATING CTA â”€â”€â”€ */
@media (max-width: 768px) {
    .mobile-floating-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        background: linear-gradient(to top, rgba(5, 10, 14, 0.97) 60%, transparent);
        transform: translateY(110%);
        transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
        pointer-events: none;
    }

    .mobile-floating-cta.visible {
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-floating-cta a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        font-family: 'Orbitron', sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        color: #050a0e;
        background: linear-gradient(135deg, var(--cyan), #00d4e0);
        padding: 16px 24px;
        border-radius: 8px;
        box-shadow: 0 0 24px rgba(0, 240, 255, 0.35);
        transition: box-shadow 0.2s;
    }

    .mobile-floating-cta a:active {
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.6);
    }
}

@media (min-width: 769px) {
    .mobile-floating-cta {
        display: none;
    }
}

/* ============================================================ */
/* PROBLEM TILES — "Dlaczego utknąłeś" visual cards              */
/* ============================================================ */
.problem-tiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.problem-tile {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.06), rgba(10, 18, 24, 0.8));
    border: 1px solid rgba(255, 68, 68, 0.18);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.problem-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 68, 68, 0.5), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.problem-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 68, 68, 0.35);
    box-shadow: 0 8px 32px rgba(255, 68, 68, 0.1);
}

.problem-tile:hover::before {
    opacity: 1;
}

.problem-tile-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 12px;
}

.problem-tile-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.problem-tile-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

@media (max-width: 768px) {
    .problem-tiles-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================ */
/* FROM → TO COMPARISON LAYOUT                                    */
/* ============================================================ */
.from-to-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.from-to-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
}

.from-card,
.to-card {
    border-radius: 16px;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
}

.from-card {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.08), rgba(10, 18, 24, 0.85));
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.to-card {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.06), rgba(10, 18, 24, 0.85));
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.from-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 68, 68, 0.6), transparent);
}

.to-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.6), transparent);
}

.from-label,
.to-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
}

.from-label {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.12);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.to-label {
    color: var(--cyan);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.from-card p,
.to-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.from-card strong {
    color: #ff6666;
}

.to-card strong {
    color: var(--cyan);
}

.from-to-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.from-to-arrow svg {
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(4px);
    }
}

@media (max-width: 768px) {
    .from-to-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .from-to-arrow {
        padding: 8px 0;
    }

    .from-to-arrow svg {
        transform: rotate(90deg);
    }

    @keyframes arrowPulse {

        0%,
        100% {
            opacity: 0.6;
            transform: rotate(90deg) translateX(0);
        }

        50% {
            opacity: 1;
            transform: rotate(90deg) translateX(4px);
        }
    }
}


/* ============================================================ */
/* BENEFIT CARDS                                                  */
/* ============================================================ */
.benefits-highlight {
    background: linear-gradient(135deg, rgba(10, 18, 24, 0.9), rgba(0, 240, 255, 0.03));
    border: 1px solid rgba(0, 240, 255, 0.12);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.benefits-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), transparent 60%);
}

.benefits-highlight-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 36px;
}

.benefit-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: rgba(10, 18, 24, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.08);
}

.benefit-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.benefit-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

@media (max-width: 900px) {
    .benefit-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefit-cards-grid {
        grid-template-columns: 1fr;
    }

    .benefits-highlight {
        padding: 32px 20px;
    }
}


/* ============================================================ */
/* OBJECTIONS & FAQ ACCORDION                                     */
/* ============================================================ */
.objections-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.objection-item {
    background: linear-gradient(135deg, rgba(10, 18, 24, 0.8), rgba(8, 17, 24, 0.9));
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.objection-item:hover {
    border-color: rgba(0, 240, 255, 0.25);
}

.objection-item.is-open {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 4px 24px rgba(0, 240, 255, 0.06);
}

.objection-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
}

.objection-quote {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
}

.objection-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--cyan);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 8px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s;
}

.objection-item.is-open .objection-icon {
    transform: rotate(45deg);
    background: rgba(0, 240, 255, 0.1);
}

.objection-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s;
    padding: 0 28px;
}

.objection-item.is-open .objection-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.objection-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
    border-top: 1px solid rgba(26, 42, 58, 0.5);
    padding-top: 16px;
}

/* FAQ — STATIC TEXT (NO ACCORDION) */
.objection-item.faq-text {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 40px;
    transition: none;
}

.objection-item.faq-text:hover {
    border-color: transparent;
}

.faq-question {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 12px 0;
    padding: 0;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
    padding: 0;
}

.faq-answer p {
    margin: 0 0 12px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ============================================================ */
/* ENHANCED SCROLL ANIMATIONS                                     */
/* ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children for grids */
.problem-tiles-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.problem-tiles-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.08s;
}

.problem-tiles-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.16s;
}

.problem-tiles-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.24s;
}

.problem-tiles-grid .animate-on-scroll:nth-child(5) {
    transition-delay: 0.32s;
}

.problem-tiles-grid .animate-on-scroll:nth-child(6) {
    transition-delay: 0.40s;
}

.benefit-cards-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.benefit-cards-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.benefit-cards-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.benefit-cards-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.benefit-cards-grid .animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.from-to-list .animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.from-to-list .animate-on-scroll:nth-child(2) {
    transition-delay: 0.12s;
}

.from-to-list .animate-on-scroll:nth-child(3) {
    transition-delay: 0.24s;
}

.from-to-list .animate-on-scroll:nth-child(4) {
    transition-delay: 0.36s;
}

.from-to-list .animate-on-scroll:nth-child(5) {
    transition-delay: 0.48s;
}

/* Slide-in from left for FROM cards, slide-in from right for TO cards */
.from-to-row .from-card.animate-on-scroll {
    transform: translateX(-40px);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.from-to-row .to-card.animate-on-scroll {
    transform: translateX(40px);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.from-to-row .from-card.is-visible,
.from-to-row .to-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Quiz specific overrides to prevent conflicts */
#quiz-section {
    --bg: #06090f;
    --surface: #0c1219;
    --surface-hover: #111a24;
    --border: #1a2a3a;
    --text: #f0f4f8;
    --text-muted: #8ba3b8;
    --accent: #00e5ff;
    --accent-dim: #00b8d4;
    --accent-glow: rgba(0, 229, 255, 0.10);
    --green: #00ffaa;
    --green-glow: rgba(0, 255, 170, 0.10);
    --yellow: #f0e040;
    --yellow-glow: rgba(240, 224, 64, 0.10);
    --red: #ff6b6b;
    --radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    color: var(--text);
    position: relative;
    z-index: 10;
    padding: 40px 0;
    background: rgba(6, 9, 15, 0.8);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 60px 0;
}

#quiz-section .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

#quiz-section .header {
    text-align: center;
    margin-bottom: 48px;
}

#quiz-section .header .tag {
    display: inline-block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    background: var(--accent-glow);
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

#quiz-section .header h2 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 20%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: none;
    letter-spacing: normal;
}

#quiz-section .header p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

#quiz-section .header .disclaimer {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 20px;
    background: var(--accent-glow);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 10px;
    font-size: 15px;
    color: var(--accent-dim);
    line-height: 1.6;
    max-width: 500px;
}

#quiz-section .progress-wrap {
    margin-bottom: 36px;
}

#quiz-section .progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
}

#quiz-section .progress-bar {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
}

#quiz-section .progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 100px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.5);
}

#quiz-section .question-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

#quiz-section .question-card.animate-in {
    animation: fadeUp 0.4s ease-out;
}

#quiz-section .question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent 80%);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

#quiz-section .question-category {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    opacity: 0.7;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}

#quiz-section .question-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 28px;
    color: #fff;
}

#quiz-section .options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#quiz-section .option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    line-height: 1.45;
    color: var(--text);
    user-select: none;
}

#quiz-section .option:hover {
    border-color: rgba(0, 229, 255, 0.35);
    background: var(--surface-hover);
    transform: translateX(4px);
}

#quiz-section .option.selected {
    border-color: var(--accent);
    background: var(--accent-glow);
    box-shadow: 0 0 0 1px var(--accent), 0 0 20px rgba(0, 229, 255, 0.1);
}

#quiz-section .option .radio {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#quiz-section .option.selected .radio {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

#quiz-section .option.selected .radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg);
}

#quiz-section .options.locked .option {
    pointer-events: none;
}

#quiz-section .nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

#quiz-section .q-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

#quiz-section .q-btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

#quiz-section .q-btn-ghost:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

#quiz-section .q-btn-spacer {
    visibility: hidden;
    pointer-events: none;
}

#quiz-section pre.code-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 24px;
    overflow-x: auto;
    white-space: pre-wrap;
    text-shadow: 0 0 6px rgba(0, 229, 255, 0.3);
}

#quiz-section .result-card {
    animation: fadeUp 0.6s ease-out;
}

#quiz-section .result-header {
    text-align: center;
    margin-bottom: 40px;
}

#quiz-section .result-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

#quiz-section .result-icon.tier-beginner {
    background: var(--accent-glow);
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

#quiz-section .result-icon.tier-advanced {
    background: var(--yellow-glow);
    border: 2px solid var(--yellow);
    box-shadow: 0 0 30px rgba(240, 224, 64, 0.15);
}

#quiz-section .result-icon.tier-expert {
    background: var(--green-glow);
    border: 2px solid var(--green);
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.15);
}

#quiz-section .result-group {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 0 0 12px currentColor;
}

#quiz-section .result-group.tier-beginner {
    color: var(--accent);
}

#quiz-section .result-group.tier-advanced {
    color: var(--yellow);
}

#quiz-section .result-group.tier-expert {
    color: var(--green);
}

#quiz-section .result-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

#quiz-section .result-subtitle {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

#quiz-section .result-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

#quiz-section .result-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent 60%);
}

#quiz-section .result-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-transform: none;
    letter-spacing: normal;
}

#quiz-section .result-section h3 .icon {
    font-size: 20px;
}

#quiz-section .result-section ul {
    list-style: none;
    padding: 0;
}

#quiz-section .result-section ul li {
    padding: 9px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(26, 42, 58, 0.5);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

#quiz-section .result-section ul li:last-child {
    border-bottom: none;
}

#quiz-section .result-section ul li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

#quiz-section .quick-win {
    padding: 9px 0;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(26, 42, 58, 0.5);
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--text-muted);
}

#quiz-section .quick-win:last-child {
    border-bottom: none;
}

#quiz-section .quick-win::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

#quiz-section .countdown-section {
    text-align: center;
}

#quiz-section .countdown-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}

#quiz-section .countdown-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

#quiz-section .countdown-unit {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 12px;
    min-width: 72px;
    text-align: center;
}

#quiz-section .countdown-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
    line-height: 1;
}

#quiz-section .countdown-txt {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 6px;
}

#quiz-section .countdown-date {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 12px;
}

#quiz-section .pricing-box {
    text-align: center;
    padding: 32px;
}

#quiz-section .price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 4px;
}

#quiz-section .price-old {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-family: 'Share Tech Mono', monospace;
}

#quiz-section .price-new {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

#quiz-section .price-badge {
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 16px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: 5px 14px;
    border-radius: 100px;
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}

#quiz-section .price-note {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

#quiz-section .btn-cta {
    display: inline-block;
    width: 100%;
    padding: 18px 32px;
    background: var(--cyan);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 229, 255, 0.3);
    text-decoration: none;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#quiz-section .btn-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(0, 229, 255, 0.45);
}

#quiz-section .score-compact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

#quiz-section .score-chip {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px;
}

#quiz-section .score-chip strong {
    color: var(--text);
}

#quiz-section .restart-wrap {
    text-align: center;
    margin-top: 24px;
}

#quiz-section .btn-restart-small {
    font-size: 13px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: 'Rajdhani', sans-serif;
}

#quiz-section .btn-restart-small:hover {
    color: var(--text);
}

#quiz-section .expert-cta {
    text-align: center;
    padding: 20px 0;
}

#quiz-section .expert-cta p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

#quiz-section .q-btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--accent);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
}

#quiz-section .q-btn-secondary:hover {
    background: var(--accent-glow);
}

#quiz-section .hidden {
    display: none !important;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === PROBLEMY CODZIENNOSCI SECTION === */
.problemy-section {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 100px;
    z-index: 1;
}

.problemy-section .pc-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.problemy-section .pc-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--cyan);
    display: inline-block;
}

.problemy-section .pc-headline-block {
    margin-bottom: 70px;
    max-width: 900px;
}

.problemy-section .pc-headline {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -1px;
    opacity: 0;
}

.problemy-section .pc-headline .accent {
    color: var(--cyan);
    position: relative;
    display: inline-block;
}

.problemy-section .pc-headline .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cyan);
    opacity: 0.4;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s ease;
}

.problemy-section.is-visible .pc-headline .accent::after {
    transform: scaleX(1);
}

.problemy-section.is-visible .pc-label,
.problemy-section.is-visible .pc-headline {
    animation: pcFadeSlideUp 1s ease forwards;
}

.problemy-section.is-visible .pc-headline {
    animation-delay: 0.2s;
}

.problemy-section .pc-intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted, #8a9bb5);
    max-width: 600px;
    margin-bottom: 60px;
    opacity: 0;
}

.problemy-section.is-visible .pc-intro-text {
    animation: pcFadeSlideUp 0.8s ease forwards 0.5s;
}

/* Ticker line */
.problemy-section .pc-ticker-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.problemy-section .pc-ticker-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -100%;
    width: 60px;
    height: 3px;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan);
    animation: pcTickerMove 4s linear infinite;
}

@keyframes pcTickerMove {
    0% {
        left: -10%;
    }

    100% {
        left: 110%;
    }
}

/* Counter strip */
.problemy-section .pc-counter-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 -40px 80px;
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    opacity: 0;
}

.problemy-section.is-visible .pc-counter-strip {
    animation: pcFadeIn 1s ease forwards 0.8s;
}

.pc-counter-item {
    flex: 1;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    transition: all 0.4s ease;
}

.pc-counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.pc-counter-item:hover {
    background: rgba(255, 255, 255, 0.01);
}

.pc-counter-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 1;
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.pc-counter-item:hover .pc-counter-num {
    color: var(--cyan);
}

.pc-counter-unit {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted, #8a9bb5);
    margin-top: 12px;
}

/* Glitch effect on counter numbers */
.pc-counter-num::before,
.pc-counter-num::after {
    content: attr(data-num);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.pc-counter-item:hover .pc-counter-num::before {
    opacity: 0.8;
    color: var(--cyan);
    animation: pcGlitch 0.3s ease;
    left: 2px;
}

.pc-counter-item:hover .pc-counter-num::after {
    opacity: 0.4;
    color: var(--red, #ff3c5f);
    animation: pcGlitch 0.3s ease reverse;
    left: -2px;
}

@keyframes pcGlitch {

    0%,
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }

    20% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(-3px, 1px);
    }

    40% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(3px, -1px);
    }

    60% {
        clip-path: inset(40% 0 30% 0);
        transform: translate(-2px, 0);
    }

    80% {
        clip-path: inset(10% 0 70% 0);
        transform: translate(2px, 1px);
    }
}

/* Pain grid */
.problemy-section .pc-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    margin-bottom: 80px;
    opacity: 0;
}

.problemy-section.is-visible .pc-pain-grid {
    animation: pcFadeIn 1s ease forwards 0.6s;
}

.pc-pain-card {
    position: relative;
    background: linear-gradient(145deg, #0c1a30, #081220);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 32px 36px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

.pc-pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pc-pain-card:hover::before {
    opacity: 1;
}

.pc-pain-card:hover {
    background: linear-gradient(145deg, #0f2040, #0a1830);
    border-color: rgba(0, 229, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -20px rgba(0, 229, 255, 0.15);
}

.pc-pain-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--cyan);
    margin-bottom: 12px;
    transition: all 0.5s ease;
}

.pc-pain-card:hover .pc-pain-number {
    color: var(--cyan);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.13);
}

.pc-pain-suffix {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    opacity: 0.6;
    margin-bottom: 16px;
    display: block;
}

.pc-pain-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted, #8a9bb5);
}

/* Drain statement */
.problemy-section .pc-drain-statement {
    text-align: center;
    margin-bottom: 90px;
    opacity: 0;
}

.problemy-section .pc-drain-statement.is-visible {
    animation: pcFadeSlideUp 1s ease forwards;
}

.pc-drain-statement p {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 52px);
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.pc-drain-statement .strike {
    position: relative;
    display: inline-block;
    color: var(--text-muted, #8a9bb5);
}

.pc-drain-statement .strike::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 52%;
    height: 3px;
    background: var(--red, #ff3c5f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.pc-drain-statement.is-visible .strike::after {
    transform: scaleX(1);
    transition-delay: 0.6s;
}

.pc-drain-statement .glow-text {
    color: var(--cyan);
    text-shadow: 0 0 60px rgba(0, 229, 255, 0.13);
}

/* Story block */
.problemy-section .pc-story-block {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 80px;
    opacity: 0;
}

.problemy-section .pc-story-block.is-visible {
    animation: pcFadeSlideUp 1s ease forwards;
}

.pc-story-line-decor {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
}

.pc-story-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    background: var(--bg, #040a12);
    flex-shrink: 0;
    position: relative;
}

.pc-story-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pcDotPulse 2s ease-in-out infinite;
}

@keyframes pcDotPulse {

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

    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

.pc-story-vertical-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(180deg, var(--cyan), transparent);
}

.pc-story-content {
    padding-bottom: 20px;
}

.pc-story-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
    opacity: 0.7;
}

.pc-story-text {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-muted, #8a9bb5);
}

.pc-story-text strong {
    color: #fff;
    font-weight: 600;
}

.pc-story-text .num-highlight {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: var(--cyan);
    font-size: 22px;
}

/* Closer */
.problemy-section .pc-closer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    opacity: 0;
}

.problemy-section .pc-closer.is-visible {
    animation: pcFadeSlideUp 1s ease forwards;
}

.pc-closer p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted, #8a9bb5);
}

.pc-closer .em {
    color: #fff;
    font-weight: 600;
}

.pc-closer .fail {
    color: var(--red, #ff3c5f);
    font-weight: 600;
}

/* Ambient glow orbs */
.pc-ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.pc-glow-1 {
    top: -200px;
    right: -100px;
    background: var(--cyan);
    animation: pcGlowPulse 8s ease-in-out infinite;
}

.pc-glow-2 {
    bottom: -200px;
    left: -200px;
    background: var(--cyan);
    animation: pcGlowPulse 10s ease-in-out infinite reverse;
}

@keyframes pcGlowPulse {

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

    50% {
        opacity: 0.12;
        transform: scale(1.15);
    }
}

/* Animations */
@keyframes pcFadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pcFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .problemy-section {
        padding: 60px 24px 80px;
    }

    .problemy-section .pc-pain-grid {
        grid-template-columns: 1fr;
    }

    .problemy-section .pc-counter-strip {
        flex-direction: column;
        margin: 0 -24px 60px;
    }

    .pc-counter-item {
        padding: 30px 20px;
    }

    .pc-counter-item:not(:last-child)::after {
        right: 20%;
        left: 20%;
        top: auto;
        bottom: 0;
        width: 60%;
        height: 1px;
    }

    .problemy-section .pc-story-block {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pc-story-line-decor {
        display: none;
    }
}

/* ============================================================
       DLACZEGO NIE AUTOMATYZUJESZ — embedded styles
       ============================================================ */
.dna-section-wrap {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 120px;
    z-index: 1;
}

.dna-section-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dna-section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--cyan);
}

.dna-headline {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -1px;
    max-width: 900px;
    margin-bottom: 32px;
}

.dna-headline .accent {
    color: var(--cyan);
    display: inline;
}

.dna-intro-text {
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 720px;
    margin-bottom: 40px;
}

.dna-sub-question {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 60px;
    color: var(--text);
}

.dna-ticker-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    margin: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.dna-ticker-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -100%;
    width: 60px;
    height: 3px;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan);
    animation: tickerMove 4s linear infinite;
}

@keyframes tickerMove {
    0% {
        left: -10%;
    }

    100% {
        left: 110%;
    }
}

.dna-cascade {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 80px;
}

.dna-cascade::before {
    content: '';
    position: absolute;
    left: 47px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--cyan) 0%, #ff8a3c 50%, #ff3c5f 100%);
    opacity: 0.3;
}

.dna-cascade-step {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0;
    position: relative;
    min-height: 1px;
}

.dna-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dna-step-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--dna-step-color, var(--cyan));
    background: var(--bg);
    color: var(--dna-step-color, var(--cyan));
    flex-shrink: 0;
    transition: all 0.5s ease;
    position: relative;
}

.dna-step-tail {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--dna-step-color, var(--cyan)) 0%, transparent 100%);
    opacity: 0.15;
}

.dna-step-card {
    position: relative;
    padding: 32px 36px 40px;
    margin: 0 0 2px 0;
    background: linear-gradient(135deg, #0c1a30, #081220);
    border: 1px solid #ffffff06;
    border-left: 3px solid var(--dna-step-color, var(--cyan));
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
    overflow: hidden;
}

.dna-cascade-step:hover .dna-step-card {
    transform: translateX(8px);
    box-shadow: -4px 0 30px -10px color-mix(in srgb, var(--dna-step-color, var(--cyan)) 20%, transparent);
}

.dna-step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.dna-step-desc {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted);
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.dna-cascade-step:nth-child(1) {
    --dna-step-color: var(--cyan);
}

.dna-cascade-step:nth-child(2) {
    --dna-step-color: #00d4e8;
}

.dna-cascade-step:nth-child(3) {
    --dna-step-color: #f0a030;
}

.dna-cascade-step:nth-child(4) {
    --dna-step-color: #e87040;
}

.dna-cascade-step:nth-child(5) {
    --dna-step-color: #e04858;
}

.dna-cascade-step:nth-child(6) {
    --dna-step-color: #ff3c5f;
}

.dna-cascade-step.final-step .dna-step-card {
    background: linear-gradient(135deg, #1a0a14, #120810);
    border-left-width: 4px;
}

.dna-cascade-step.final-step .dna-step-title {
    font-size: 21px;
    color: #ff3c5f;
}

.dna-bottom-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 0 0;
    position: relative;
}

.dna-bottom-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff3c5f;
    border-radius: 2px;
}

.dna-quote-main {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3.5vw, 40px);
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 28px;
}

.dna-quote-main .guru {
    color: var(--cyan);
}

.dna-quote-main .lied {
    color: #ff3c5f;
    position: relative;
    display: inline-block;
}

.dna-quote-main .lied::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff3c5f;
    opacity: 0.7;
}

.dna-quote-body {
    font-family: 'DM Mono', monospace;
    font-size: 16px;
    line-height: 2;
    color: var(--muted);
}

.dna-quote-body .hl {
    color: var(--text);
}

.dna-quote-body .fail {
    color: #ff3c5f;
    font-weight: 500;
}

@media (max-width: 768px) {
    .dna-section-wrap {
        padding: 60px 20px 80px;
    }

    .dna-cascade::before {
        left: 27px;
    }

    .dna-cascade-step {
        grid-template-columns: 56px 1fr;
    }

    .dna-step-num {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .dna-step-card {
        padding: 24px 20px 28px;
    }

    .dna-step-title {
        font-size: 17px;
    }

    .dna-step-desc {
        font-size: 14.5px;
    }
}

/* ============================================================
       LICZBY NIE KŁAMIĄ — embedded styles
       ============================================================ */
.lnk-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00e87b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lnk-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: #00e87b;
}

.lnk-hl {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -1px;
    max-width: 1000px;
    margin-bottom: 28px;
}

.lnk-hl .lnk-c {
    color: var(--cyan);
}

.lnk-hl .lnk-g {
    color: #00e87b;
}

.lnk-hl .lnk-r {
    color: #ff3c5f;
}

.lnk-glitch-word {
    position: relative;
    display: inline-block;
}

.lnk-glitch-word::before,
.lnk-glitch-word::after {
    content: 'odpadniesz';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.lnk-glitch-word::before {
    color: var(--cyan);
    animation: lnk-gw 5s ease-in-out infinite;
}

.lnk-glitch-word::after {
    color: #ff3c5f;
    animation: lnk-gw 5s ease-in-out infinite 0.05s;
}

@keyframes lnk-gw {

    0%,
    87%,
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
        opacity: 0;
    }

    89% {
        clip-path: inset(15% 0 50% 0);
        transform: translate(-5px, 2px);
        opacity: 1;
    }

    91% {
        clip-path: inset(60% 0 5% 0);
        transform: translate(4px, -1px);
        opacity: 1;
    }

    93% {
        clip-path: inset(8% 0 65% 0);
        transform: translate(-3px, 0);
        opacity: 1;
    }

    95% {
        clip-path: inset(45% 0 15% 0);
        transform: translate(5px, 1px);
        opacity: 1;
    }

    97% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
        opacity: 0;
    }
}

.lnk-intro {
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 14px;
}

.lnk-tick {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.lnk-tick::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -10%;
    width: 60px;
    height: 3px;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan);
    animation: lnk-tm 4s linear infinite;
}

@keyframes lnk-tm {
    to {
        left: 110%;
    }
}

.lnk-hero-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 10px;
}

.lnk-hero-cell {
    --lnk-c: var(--cyan);
    position: relative;
    padding: 56px 36px 48px;
    background: linear-gradient(160deg, #0c1a30, #081220);
    border: 1px solid #ffffff06;
    overflow: hidden;
    cursor: default;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.lnk-hero-cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--lnk-c);
    opacity: 0.35;
    transition: all 0.4s ease;
}

.lnk-hero-cell:hover {
    background: linear-gradient(160deg, #0f2040, #0a1830);
    transform: translateY(-5px);
}

.lnk-hero-cell:hover::after {
    opacity: 0.8;
    height: 4px;
}

.lnk-hero-cell:nth-child(1) {
    --lnk-c: var(--cyan);
}

.lnk-hero-cell:nth-child(2) {
    --lnk-c: #00e87b;
}

.lnk-hero-cell:nth-child(3) {
    --lnk-c: #ff8a3c;
}

.lnk-h-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 1;
    color: var(--lnk-c);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.lnk-h-num .unit {
    font-size: 0.35em;
    opacity: 0.7;
    letter-spacing: 1px;
}

.lnk-h-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 18px 0 14px;
}

.lnk-h-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--muted);
}

.lnk-sub-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 80px;
}

.lnk-sub-cell {
    padding: 28px 24px;
    background: linear-gradient(160deg, #091422, #060e1a);
    border: 1px solid #ffffff04;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
}

.lnk-sub-cell:hover {
    background: #0c1a30;
    border-color: #ffffff0a;
}

.lnk-sub-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--text);
    transition: color 0.3s ease;
}

.lnk-sub-cell:hover .lnk-sub-num {
    color: var(--cyan);
}

.lnk-sub-tag {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.4;
}

.lnk-chart-block {
    margin-bottom: 90px;
}

.lnk-chart-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 28px);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lnk-chart-sub {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.lnk-bar-row {
    display: grid;
    grid-template-columns: 200px 1fr 65px;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.lnk-bar-label {
    font-size: 14px;
    color: var(--muted);
    text-align: right;
}

.lnk-bar-track {
    height: 40px;
    background: #080f1e;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ffffff06;
}

.lnk-bar-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    position: relative;
    transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lnk-bar-fill.f1 {
    background: linear-gradient(90deg, #0a3d5c, var(--cyan));
}

.lnk-bar-fill.f2 {
    background: linear-gradient(90deg, #0a3d5c, #00b8d4);
}

.lnk-bar-fill.f3 {
    background: linear-gradient(90deg, #0a3d5c, #0090a8);
}

.lnk-bar-fill.f4 {
    background: linear-gradient(90deg, #0a3d5c, #006e80);
}

.lnk-bar-val {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--cyan);
    text-align: right;
}

.lnk-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 90px;
}

.lnk-split-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 2.5vw, 32px);
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.lnk-split-heading .lnk-c {
    color: var(--cyan);
}

.lnk-split-heading .lnk-g {
    color: #00e87b;
}

.lnk-split-body {
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 16px;
}

.lnk-split-body strong {
    color: var(--text);
    font-weight: 600;
}

.lnk-proof-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lnk-proof-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    background: linear-gradient(135deg, #0c1a30, #081220);
    border: 1px solid #ffffff06;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
}

.lnk-proof-card:hover {
    border-color: #ffffff10;
    transform: translateX(4px);
}

.lnk-proof-num-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 8px;
    background: #060e1a;
    border-right: 2px solid #00e5ff44;
    flex-shrink: 0;
}

.lnk-proof-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--cyan);
    white-space: nowrap;
}

.lnk-proof-text {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    display: flex;
    align-items: center;
    min-width: 0;
}

.lnk-proof-text strong {
    color: var(--text);
    font-weight: 600;
}

.lnk-roi-band {
    position: relative;
    margin: 0 0 90px;
    padding: 60px 60px;
    background: linear-gradient(135deg, #081e10, #04120a, #0a1628);
    border-top: 1px solid #ffffff08;
    border-bottom: 1px solid #ffffff08;
    overflow: hidden;
}

.lnk-roi-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #00e87b;
    opacity: 0.6;
}

.lnk-roi-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.lnk-roi-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 1;
    color: #00e87b;
    white-space: nowrap;
}

.lnk-roi-number .pct {
    font-size: 0.45em;
    opacity: 0.7;
    vertical-align: super;
    margin-left: 4px;
}

.lnk-roi-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 30px);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.25;
}

.lnk-roi-title .lnk-g {
    color: #00e87b;
}

.lnk-roi-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 550px;
}

.lnk-roi-desc strong {
    color: var(--text);
    font-weight: 600;
}

.lnk-roi-desc .lnk-g {
    color: #00e87b;
    font-weight: 600;
}

.lnk-punch {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    padding-top: 10px;
}

.lnk-punch-main {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.8vw, 50px);
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.lnk-punch-main .lnk-g {
    color: #00e87b;
}

.lnk-punch-main .lnk-c {
    color: var(--cyan);
}

.lnk-punch-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
}

.lnk-punch-body strong {
    color: var(--text);
    font-weight: 600;
}

.lnk-src {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    opacity: 0.4;
    margin-left: 4px;
}

.lnk-src::before {
    content: '[';
}

.lnk-src::after {
    content: ']';
}

.lnk-section {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 120px;
    z-index: 1;
}

.lnk-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.lnk-reveal.lnk-vis {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .lnk-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lnk-roi-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .lnk-roi-band::before {
        width: 100%;
        height: 3px;
    }
}

@media (max-width: 768px) {
    .lnk-section {
        padding: 60px 20px 80px;
    }

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

    .lnk-sub-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 60px;
    }

    .lnk-sub-cell {
        padding: 20px 16px;
    }

    .lnk-sub-num {
        font-size: 24px;
    }

    .lnk-sub-tag {
        font-size: 11px;
        line-height: 1.35;
    }

    .lnk-bar-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .lnk-bar-label {
        text-align: left;
    }

    .lnk-roi-band {
        padding: 40px 24px;
    }

    .lnk-proof-card {
        grid-template-columns: 70px 1fr;
    }

    .lnk-proof-num {
        font-size: 20px;
    }

    .lnk-proof-num-cell {
        padding: 16px 6px;
    }

    .lnk-proof-text {
        padding: 14px 16px;
        font-size: 13px;
    }
}

.step:nth-child(2) .card::before {
    background: linear-gradient(to right, #ffc800, transparent 60%);
}

.pricing-neo {
    --p-bg: #06090f;
    --p-surface: #0c1219;
    --p-surface-2: #111a24;
    --p-border: #1a2a3a;
    --p-text: #f0f4f8;
    --p-muted: #8ba3b8;
    --p-accent: #00e5ff;
    --p-accent-dim: #00b8d4;
    --p-green: #00ffaa;
    --p-yellow: #f0e040;
    --p-red: #ff6b6b;
    --p-radius: 16px;

    position: relative;
    padding: 90px 24px 100px;
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 229, 255, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 170, 0.05), transparent 35%),
        #05080d;
    border-top: 1px solid rgba(26, 42, 58, 0.7);
    border-bottom: 1px solid rgba(26, 42, 58, 0.7);
    overflow: hidden;
    color: var(--p-text);
    font-family: 'Rajdhani', 'Instrument Sans', sans-serif;
}

.pricing-neo__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: .45;
}

.pricing-neo__glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.pricing-neo__glow--1 {
    top: -80px;
    left: -80px;
    background: rgba(0, 229, 255, 0.10);
}

.pricing-neo__glow--2 {
    right: -120px;
    bottom: -100px;
    background: rgba(0, 255, 170, 0.08);
}

.pricing-neo__container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.pricing-neo__header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-neo__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--p-accent);
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 1.6px;
    font-size: 11px;
    text-transform: uppercase;
    background: rgba(0, 229, 255, 0.06);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.08);
}

.pricing-neo__header h2 {
    margin: 0 0 14px;
    font-family: 'Syne', 'Orbitron', sans-serif;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-size: clamp(34px, 5vw, 58px);
    text-transform: uppercase;
}

.pricing-neo__header h2 span {
    color: var(--p-accent);
    text-shadow: 0 0 24px rgba(0, 229, 255, 0.18);
}

.pricing-neo__header>p {
    max-width: 760px;
    margin: 0 auto 22px;
    color: var(--p-muted);
    font-size: 17px;
    line-height: 1.6;
}

.pricing-neo__mode-switch {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid var(--p-border);
    background: rgba(12, 18, 25, 0.9);
    margin-bottom: 12px;
}

.pricing-neo__mode-btn {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    color: var(--p-muted);
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    min-width: 130px;
    transition: .2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    gap: 4px;
}

.pricing-neo__mode-btn small {
    font-size: 11px;
    font-weight: 500;
    color: inherit;
    opacity: .8;
}

.pricing-neo__mode-btn:hover {
    color: var(--p-text);
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.pricing-neo__mode-btn.is-active {
    color: #041017;
    background: var(--p-accent);
    border-color: var(--p-accent);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.22);
}

.pricing-neo__pilot-note {
    max-width: 650px;
    margin: 0 auto;
    color: var(--p-accent-dim);
    font-size: 14px;
    line-height: 1.45;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.14);
    border-radius: 10px;
    padding: 10px 14px;
}

.pricing-neo__pilot-note.hidden {
    display: none;
}

/* KOLUMNY NA DESKTOPIE */
.pricing-neo__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
    margin-top: 28px;
}

.pricing-neo__card {
    position: relative;
    background: linear-gradient(180deg, rgba(12, 18, 25, 0.96), rgba(8, 12, 18, 0.96));
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    padding: 18px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.pricing-neo__card::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--p-accent), transparent 70%);
    opacity: .45;
}

.pricing-neo__card--featured {
    border-color: rgba(0, 229, 255, 0.45);
    box-shadow:
        0 0 0 1px rgba(0, 229, 255, 0.15),
        0 0 36px rgba(0, 229, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

.pricing-neo__badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: linear-gradient(90deg, var(--p-accent), #87ffff);
    color: #031017;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: .8px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 5px 10px;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.18);
}

.pricing-neo__card-topline {
    color: var(--p-muted);
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    margin-bottom: 8px;
}

.pricing-neo__card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.1;
    color: #fff;
}

.pricing-neo__subtitle {
    margin: 0 0 14px;
    color: var(--p-muted);
    font-size: 15px;
    line-height: 1.45;
    min-height: 66px;
}

.pricing-neo__price-wrap {
    border: 1px solid rgba(0, 229, 255, 0.12);
    background: rgba(6, 9, 15, 0.65);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
}

.pricing-neo__price {
    font-family: 'Share Tech Mono', monospace;
    color: var(--p-accent);
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    text-shadow: 0 0 18px rgba(0, 229, 255, 0.16);
}

.pricing-neo__price-meta {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--p-muted);
    font-size: 12px;
}

.pricing-neo__price-meta span {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 999px;
    padding: 4px 8px;
}

.pricing-neo__features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    gap: 8px;
}

.pricing-neo__features li {
    position: relative;
    padding-left: 18px;
    color: var(--p-text);
    font-size: 14px;
    line-height: 1.35;
}

.pricing-neo__features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--p-accent);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
}

.pricing-neo__features strong {
    color: #fff;
}

.pricing-neo__not-included {
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.01);
}

.pricing-neo__not-included-label {
    font-family: 'Share Tech Mono', monospace;
    color: var(--p-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.pricing-neo__not-included-text {
    color: var(--p-text);
    font-size: 13px;
    line-height: 1.35;
}

.pricing-neo__scope-box {
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.14);
    background: rgba(0, 229, 255, 0.03);
    padding: 10px;
}

.pricing-neo__scope-title {
    font-size: 12px;
    color: var(--p-accent);
    margin-bottom: 6px;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.pricing-neo__scope-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 4px;
}

.pricing-neo__scope-box li {
    font-size: 12px;
    color: var(--p-muted);
    line-height: 1.35;
}

/* NOWY TOGGLE VIP */
.pricing-neo__toggle {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(0, 229, 255, 0.22);
    background: rgba(0, 229, 255, 0.04);
    color: var(--p-accent);
    border-radius: 10px;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.pricing-neo__toggle:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.35);
}

.pricing-neo__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.35);
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}

.pricing-neo__vip-details {
    margin-bottom: 12px;
    border: 1px solid rgba(0, 229, 255, 0.16);
    background: rgba(0, 229, 255, 0.03);
    border-radius: 10px;
    padding: 10px;
}

.pricing-neo__vip-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.pricing-neo__vip-details li {
    position: relative;
    padding-left: 16px;
    color: var(--p-muted);
    font-size: 13px;
    line-height: 1.35;
}

.pricing-neo__vip-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--p-accent);
}

.pricing-neo__vip-note {
    margin-bottom: 12px;
    border: 1px solid rgba(240, 224, 64, 0.20);
    background: rgba(240, 224, 64, 0.05);
    border-radius: 10px;
    padding: 10px;
    color: #dfe5b6;
    font-size: 12px;
    line-height: 1.35;
}

.pricing-neo__cta {
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid var(--p-accent);
    background: var(--p-accent);
    color: #041017;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: .2s ease;
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.14);
    padding: 0 10px;
}

.pricing-neo__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 229, 255, 0.22);
    background: #8cf8ff;
    border-color: #8cf8ff;
}

.pricing-neo__cta--ghost {
    background: transparent;
    color: var(--p-accent);
    box-shadow: none;
}

.pricing-neo__cta--ghost:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.55);
    color: #b9faff;
}

/* NAPRAWA „ZLEWANIA SIĘ” CTA Z BOXEM PONIŻEJ */
.pricing-neo__after-cards-separator {
    margin-top: 24px;
    margin-bottom: 18px;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(0, 229, 255, 0),
            rgba(0, 229, 255, 0.35),
            rgba(0, 229, 255, 0));
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.08);
}

.pricing-neo__bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.pricing-neo__info-box {
    background: rgba(12, 18, 25, 0.9);
    border: 1px solid var(--p-border);
    border-radius: 14px;
    padding: 18px;
}

.pricing-neo__info-box h4 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #fff;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.12);
}

.pricing-neo__info-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.pricing-neo__info-box li {
    position: relative;
    padding-left: 16px;
    color: var(--p-muted);
    font-size: 13px;
    line-height: 1.35;
}

.pricing-neo__info-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--p-accent);
}

.pricing-neo__footer-note {
    margin-top: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 14px;
    color: var(--p-muted);
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

/* TABLET - nadal kolumny, ale 2 + 1 */
@media (max-width: 1024px) {
    .pricing-neo__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .pricing-neo__card[data-card="vip"] {
        grid-column: 1 / -1;
    }
}

/* MOBILE - sekwencyjnie */
@media (max-width: 640px) {
    .pricing-neo {
        padding: 70px 14px 80px;
    }

    .pricing-neo__mode-switch {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .pricing-neo__mode-btn {
        min-width: 0;
        padding: 10px 8px;
        font-size: 14px;
    }

    .pricing-neo__header>p {
        font-size: 15px;
    }

    .pricing-neo__price {
        font-size: 28px;
    }

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

    .pricing-neo__card[data-card="vip"] {
        grid-column: auto;
    }

    .pricing-neo__after-cards-separator {
        margin-top: 18px;
        margin-bottom: 14px;
    }
}

/* ============================================================ */
/* MOBILE RESPONSIVE FIXES                                       */
/* ============================================================ */

/* --- H2 heading font sizes for mobile --- */
@media (max-width: 768px) {
    h2 {
        font-size: clamp(20px, 5vw, 28px) !important;
    }

    .header h2,
    .transition-title,
    .dna-headline,
    .pc-headline,
    .lnk-hl {
        font-size: clamp(22px, 5.5vw, 32px) !important;
    }

    .pricing-neo__header h2 {
        font-size: clamp(22px, 6vw, 34px) !important;
    }

    .card h2 {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: clamp(18px, 5vw, 24px) !important;
    }

    .header h2,
    .transition-title,
    .dna-headline,
    .pc-headline,
    .lnk-hl {
        font-size: clamp(20px, 5.5vw, 28px) !important;
    }

    .pricing-neo__header h2 {
        font-size: clamp(20px, 6vw, 28px) !important;
    }

    .from-card p,
    .to-card p {
        font-size: 14px;
    }
}

/* --- Countdown cells: prevent overflow on narrow screens --- */
@media (max-width: 480px) {
    .enrollment-countdown {
        flex-wrap: nowrap;
        gap: 4px;
        justify-content: center;
    }

    .countdown-cell {
        min-width: 0 !important;
        flex: 1;
        max-width: 70px;
        padding: 8px 4px !important;
    }

    .countdown-num {
        font-size: clamp(20px, 5vw, 28px) !important;
        letter-spacing: 0;
    }

    .countdown-sep {
        font-size: clamp(18px, 4vw, 24px) !important;
        padding-bottom: 14px;
    }

    .countdown-label {
        font-size: 8px;
        letter-spacing: 1px;
    }
}

/* --- Objection items: static (non-accordion) mode --- */
.objection-item--static .objection-answer {
    max-height: none;
    overflow: visible;
    padding: 0 28px 24px;
}

.objection-item--static .objection-answer p {
    border-top: none;
    padding-top: 0;
}

.objection-item--static .objection-answer p+p {
    margin-top: 12px;
}

.objection-static-q {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    padding: 22px 28px 8px;
}

/* ============================================================ */
/* OBJECTIONS GRID (KAFELKI) & REDESIGN                         */
/* ============================================================ */

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.objection-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.objection-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-4px);
}

.objection-stmt {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.objection-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ============================================================ */
/* ADDITIONAL MOBILE TEXT OVERFLOW FIXES                          */
/* ============================================================ */

@media (max-width: 480px) {

    /* Problemy codzienności & Liczby nie kłamią */
    .pc-headline,
    .lnk-hl {
        font-size: clamp(24px, 8vw, 36px) !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }

    .lnk-punch-main {
        font-size: clamp(22px, 7vw, 32px) !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }

    /* Fix overlapping stats & proofs */
    .lnk-proof-text {
        font-size: 12px !important;
    }

    .lnk-proof-num {
        font-size: 24px !important;
    }

    .lnk-sub-num {
        font-size: 24px !important;
    }

    .lnk-sub-tag {
        font-size: 11px !important;
    }

    .lnk-h-num {
        font-size: 32px !important;
    }

    .lnk-h-tag {
        font-size: 12px !important;
    }

    .lnk-bar-label,
    .lnk-bar-val {
        font-size: 12px !important;
    }

    /* Objections mobile typography */
    .objections-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .objection-card {
        padding: 24px;
    }

    .objection-stmt {
        font-size: 18px !important;
    }
}