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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    --success-gradient: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --light-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hard: 0 20px 60px rgba(0, 0, 0, 0.2);
    --border-radius: 20px;
    --animation-speed: 0.3s;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Floating Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatSmall {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #2c3e50;
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--animation-speed) ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--animation-speed) ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    background: rgba(102, 126, 234, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all var(--animation-speed) ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 25px;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--animation-speed) ease;
    z-index: -1;
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: white;
    background: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-links a.active::before {
    opacity: 1;
    transform: scale(1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/><polygon fill="rgba(255,255,255,0.03)" points="0,200 1000,0 1000,800 0,1000"/></svg>');
    opacity: 0.7;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero .opening-paragraph {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--animation-speed) ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-soft);
    pointer-events: auto;
    user-select: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border: 2px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-soft);
}

.btn i {
    font-size: 1.2rem;
    transition: transform var(--animation-speed) ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.trust-bar {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 4rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.trust-bar h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    transition: all var(--animation-speed) ease;
    backdrop-filter: blur(10px);
}

.trust-logo:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--shadow-soft);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--animation-speed) ease;
    backdrop-filter: blur(10px);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.benefit h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.micro-faq {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: left;
}

.micro-faq h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-answer {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(102,126,234,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,107,107,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(102,126,234,0.1)"/></svg>');
    opacity: 0.5;
}

.problem-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 900;
    position: relative;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: var(--shadow-soft);
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-gradient);
    transition: width var(--animation-speed) ease;
}

/* Removed hover background expansion for better UX */
.problem-card:hover::before {
    width: 5px; /* keep the left accent bar fixed */
    opacity: 1; /* maintain original bar color */
}

/* Subtle hover shadow only */
.problem-card:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
}

.problem-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    padding-left: 2.5rem; /* space for leading icon */
}

.problem-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card h3:first-of-type::before {
    content: '⚠️';
    font-size: 1rem;
}

.problem-card:nth-child(2) h3::before {
    content: '❌';
    font-size: 1rem;
}

.problem-card ul {
    list-style: none;
    padding-left: 0;
}

.problem-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.problem-card li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cost-calculator {
    background: var(--primary-gradient);
    color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: visible;
    box-shadow: var(--shadow-hard);
}

.cost-calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cost-calculator h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.calculator-widget h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cost-calculator ul {
    list-style: none;
    margin-bottom: 2rem;
}

.cost-calculator li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.cost-calculator li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

/* Editorial Callout Styles */
.editorial-callout {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.editorial-callout::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 5rem;
    color: #6c757d;
    font-family: 'Georgia', serif;
    line-height: 1;
    opacity: 0.3;
}

.editorial-callout-content {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 140px;
    padding: 2rem 0;
}

.editorial-callout-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.editorial-callout-quote {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-style: italic;
}

.editorial-callout-author {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.editorial-callout-context {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

.editorial-callout-image {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 200px;
    opacity: 0.25;
    z-index: 1;
}

.editorial-callout-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
}

@media (max-width: 768px) {
    .editorial-callout-content {
        min-height: 120px;
        padding: 1.5rem 0;
    }
    
    .editorial-callout-image {
        width: 100px;
        height: 140px;
        opacity: 0.2;
        right: -10px;
    }
    
    .editorial-callout-quote {
        font-size: 1.3rem;
    }
}

/* Editorial Section Styles */
.editorial-section {
    padding: 60px 0;
    background: #ffffff;
}

.calculator-widget {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.calculator-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    pointer-events: auto;
    position: relative;
    z-index: 20;
}

.calculator-form input {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 250px;
    background: white;
    color: #333;
    pointer-events: auto;
    user-select: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    position: relative;
    z-index: 30;
    text-align: right;
}

.calculator-form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    text-align: right;
}

/* Agresywne style dla input kalkulatora */
#aws-spend {
    background: white !important;
    color: #333 !important;
    border: 2px solid #ddd !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 999 !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    cursor: text !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    min-width: 250px !important;
    min-height: 44px !important;
    text-align: right !important;
}

#aws-spend:focus {
    outline: none !important;
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    text-align: right !important;
}

/* Wymuszenie działania input */
#aws-spend:hover {
    background: white !important;
    color: #333 !important;
    border-color: #667eea !important;
    text-align: right !important;
}

#aws-spend:active {
    background: white !important;
    color: #333 !important;
    text-align: right !important;
}

/* Style dla input z suffixem USD */
.input-with-suffix {
    position: relative;
    display: inline-block;
}

.input-suffix {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1000;
    transition: opacity 0.2s ease;
    user-select: none;
    background: white;
    padding: 0 5px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

/* Dodatkowe style dla lepszego wyrównania */
.input-with-suffix input[type="number"]::-webkit-outer-spin-button,
.input-with-suffix input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-with-suffix input[type="number"] {
    -moz-appearance: textfield;
}

/* Wyrównanie do prawej dla wszystkich inputów numerycznych */
input[type="number"] {
    text-align: right !important;
}

/* Dodatkowe style dla lepszego wyglądu */
.input-with-suffix {
    position: relative;
    display: inline-block;
}

.input-with-suffix input[type="number"] {
    text-align: right !important;
    padding-right: 60px !important;
}
/* ensure right align for text type as well */
.input-with-suffix input {
    text-align: right !important;
    padding-right: 60px !important;
}



.cost-result {
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
    margin-top: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem;
    box-sizing: border-box;
}

.chart-container canvas {
    max-height: 280px !important;
    width: 100% !important;
}

.roi-chart-container {
    position: relative;
    height: 300px;
    width: 100%;
    margin-top: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem;
    box-sizing: border-box;
    border: 2px solid rgba(255,255,255,0.3);
}

.roi-chart-container canvas {
    max-height: 280px !important;
    width: 100% !important;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.solution-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.solution-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-intro h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.solution-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-steps {
    margin-bottom: 4rem;
}

.process-steps h3 {
    text-align: center;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.methodology {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.methodology h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.methodology p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.security-features {
    text-align: center;
}

.security-features h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.security-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-item {
    background: #667eea;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }

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

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

    .calculator-form {
        flex-direction: column;
    }

    .security-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Evidence Section */
.evidence-section {
    padding: 80px 0;
    background: white;
}

.evidence-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.case-studies {
    margin-bottom: 4rem;
}

.case-studies h3 {
    text-align: center;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.case-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.case-card h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.case-card p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.certifications {
    text-align: center;
}

.certifications h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-item {
    background: #667eea;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tier-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: all 0.6s ease;
}

.tier-card:hover::before {
    left: 100%;
}

.tier-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hard);
}

.tier-card.featured {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.05);
    border: none;
}

.tier-card.featured::after {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: 20px;
    right: -40px;
    background: var(--accent-gradient);
    color: white;
    padding: 5px 50px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.tier-card.featured:hover {
    transform: translateY(-10px) scale(1.08);
}

.tier-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.tier-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.tier-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.tier-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tier-card li:before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.guarantee {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.guarantee h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #667eea;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* 🚀 ULTRA CREATIVE 3D MORPHING CAROUSEL 100X */
.hero-variants {
    margin: 4rem 0;
    position: relative;
    height: 400px;
    perspective: 1200px;
    perspective-origin: center center;
    overflow: visible;
}

.variants-wheel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
    transform: translateZ(0);
}

.variant-card {
    position: absolute;
    width: 400px;
    height: 250px;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -125px;
    border-radius: 25px;
    cursor: pointer;
    transition: opacity 0.5s cubic-bezier(0.4,0.2,0.2,1), filter 0.5s cubic-bezier(0.4,0.2,0.2,1), box-shadow 0.5s cubic-bezier(0.4,0.2,0.2,1);
    transform-style: preserve-3d;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    will-change: transform, opacity, filter;
    backface-visibility: visible;
    transform: translateZ(0); /* force layer promotion */
}

/* Magic 3D Positioning - kontrolowane przez JavaScript */
.variant-card:nth-child(1) {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.95) 0%, 
        rgba(255, 142, 142, 0.9) 50%,
        rgba(255, 107, 107, 0.95) 100%);
}

.variant-card:nth-child(2) {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.95) 0%, 
        rgba(118, 75, 162, 0.9) 50%,
        rgba(102, 126, 234, 0.95) 100%);
}

.variant-card:nth-child(3) {
    background: linear-gradient(135deg, 
        rgba(76, 217, 100, 0.95) 0%, 
        rgba(68, 160, 141, 0.9) 50%,
        rgba(76, 217, 100, 0.95) 100%);
}

/* Active State - kontrolowane przez JavaScript */

/* Holographic Effect */
.variant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.variant-card:hover::before {
    opacity: 1;
    animation: hologram 2s ease-in-out infinite;
}

@keyframes hologram {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.variant-card-inner {
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    border-radius: 25px;
    background: inherit; /* Dziedziczy tło z rodzica */
    transform-style: preserve-3d;
    animation: floatSmall 4s ease-in-out infinite;
    animation-delay: 0s;
}

.variant-card.active .variant-card-inner {
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatSmall {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

.variant-card:not(.active):nth-child(2) .variant-card-inner {
    animation-delay: 2s;
}

.variant-card:not(.active):nth-child(3) .variant-card-inner {
    animation-delay: 1s;
}

/* Content Styling */
.variant-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.variant-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.variant-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.variant-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Neural Network Background */
.variant-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 70px 70px;
    opacity: 0.3;
    animation: neural-pulse 8s ease-in-out infinite;
}

@keyframes neural-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}


/* ROI Calculator Section */
.roi-calculator-section {
    padding: 80px 0;
    background: white;
}

.roi-calculator-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.roi-calculator-section h3 {
    text-align: center;
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.calculator-form-large {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #333;
    pointer-events: auto;
    user-select: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
}

/* Wyrównanie do prawej dla inputów numerycznych z USD */
.input-with-suffix input[type="number"] {
    text-align: right;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Wyrównanie do prawej dla inputów numerycznych w formularzach */
.form-group input[type="number"] {
    text-align: right;
}

.roi-results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.roi-results h3 {
    color: white !important;
}

.average-results {
    text-align: center;
}

.average-results h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.result-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.result-number {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.result-label {
    color: #666;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-category h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: white;
}

.urgency-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.urgency-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.urgency-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.scarcity-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.scarcity-info h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.scarcity-info ul {
    list-style: none;
    padding: 0;
}

.scarcity-info li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.scarcity-info li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Upsell Section */
.upsell-section {
    padding: 80px 0;
    background: white;
}

.upsell-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.phase {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.phase-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.phase h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.upsell-option {
    background: #667eea;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.ascension-path {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
}

.ascension-path h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.ascension-path ul {
    list-style: none;
    padding: 0;
}

.ascension-path li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.ascension-path li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.final-cta-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cta-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-card h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.cta-card h4 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.cta-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.cta-card li:before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    color: #2c3e50;
    padding: 0.75rem 0;
    z-index: 1000;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform var(--animation-speed) ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sticky-cta-text {
    font-weight: 600;
}

.sticky-cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .cert-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .faq-categories {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta-buttons {
        flex-direction: column;
    }

    .option-tabs {
        flex-direction: column;
        align-items: center;
    }
}

/* Add this to the <style> section for smooth transitions and mobile fallback */
@media (min-width: 769px) {
  .variant-card {
    transition: opacity 0.5s cubic-bezier(0.4,0.2,0.2,1), filter 0.5s cubic-bezier(0.4,0.2,0.2,1), box-shadow 0.5s cubic-bezier(0.4,0.2,0.2,1);
    backface-visibility: visible;
  }
}
@media (max-width: 768px) {
  .variant-card {
    opacity: 1 !important;
    filter: none !important;
    z-index: 1 !important;
    pointer-events: auto !important;
  }
}
/* Shake + Rock animation for demo button */
@keyframes shakeRock {
    0% { transform: translate(0) rotate(0deg); }
    10% { transform: translateX(-3px) rotate(-4deg); }
    20% { transform: translateX(3px) rotate(4deg); }
    30% { transform: translateX(-3px) rotate(-4deg); }
    40% { transform: translateX(3px) rotate(4deg); }
    50% { transform: translateX(-2px) rotate(-3deg); }
    60% { transform: translateX(2px) rotate(3deg); }
    70% { transform: translateX(-1px) rotate(-2deg); }
    80% { transform: translateX(1px) rotate(2deg); }
    90% { transform: translateX(0) rotate(0deg); }
    100% { transform: translate(0) rotate(0deg); }
}

.shake {
    animation: shakeRock 0.8s;
    transform-origin: center;
}