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

:root {
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --bg-primary: #fbfbfd;
    --bg-card: #ffffff;
    --accent: #0071e3;
    --accent-hover: #0077ed;
    --success: #34c759;
    --border-light: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.5;
}

/* Navigation - Mobile First */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(251, 251, 253, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 0.5px solid var(--border-light);
}

.nav-content {
    padding: 12px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-top {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-wrapper {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    position: relative;
    padding: 6px 12px 6px 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(102, 126, 234, 0.08) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
}

.logo-wrapper:hover {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(102, 126, 234, 0.12) 100%);
    border-color: rgba(0, 113, 227, 0.2);
    transform: translateY(-1px);
}

.logo-brand {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #0071e3 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}

.logo-dot {
    font-size: 24px;
    font-weight: 800;
    color: #667eea;
    margin: 0 1px;
    opacity: 0.8;
    display: none;
}

.logo-tld {
    display: none;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    opacity: 0.95;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(102, 126, 234, 0.1) 100%);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    position: relative;
    padding: 8px 18px;
    border-radius: 10px;
    border: 1.5px solid rgba(0, 113, 227, 0.2);
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.12);
}

.nav-link:active {
    transform: scale(0.96);
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.12) 0%, rgba(102, 126, 234, 0.15) 100%);
    border-color: rgba(0, 113, 227, 0.3);
}

.nav-link-text {
    font-weight: 700;
    font-size: 10px;
    line-height: 1.2;
    color: var(--text-primary);
}

.nav-link-price {
    font-size: 10px;
    font-weight: 400;
    color: var(--accent);
}

.nav-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
}

.badge-emoji {
    font-size: 11px;
}

.nav-badge.hot {
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
    animation: pulse-hot 2s ease-in-out infinite;
}

.nav-badge.new {
    background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.4);
}

@keyframes pulse-hot {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
    }
    50% {
        box-shadow: 0 2px 12px rgba(255, 59, 48, 0.6);
    }
}

.nav-cta-wrapper {
    display: none;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25);
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
}

.nav-cta:active {
    transform: scale(0.96);
    box-shadow: 0 1px 4px rgba(0, 113, 227, 0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25);
    }
    50% {
        box-shadow: 0 2px 12px rgba(0, 113, 227, 0.4);
    }
}

/* Hero Section - Mobile First */
.hero {
    margin-top: 72px;
    padding: 60px 20px 50px;
    text-align: center;
}

.hero h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.cta:active {
    transform: scale(0.98);
    background: var(--accent-hover);
}

/* Section Utilities */
.section {
    padding: 50px 20px;
}

.bg-gray {
    background: #f5f5f7;
}

.section-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-headline {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-copy {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Pricing Section - Mobile First with Cards */
.pricing-section {
    padding: 50px 20px;
    text-align: center;
    position: relative;
}

.pricing-vat-notice {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.7;
    font-weight: 400;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:active {
    transform: scale(0.98);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.plan-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.featured .plan-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.plan-price-old {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.6;
}

.featured .plan-price-old {
    color: rgba(255, 255, 255, 0.6);
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.featured .plan-price {
    color: #fff;
}

.plan-price-custom {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 8px;
    margin-bottom: 0;
}

.plan-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding: 0 20px;
    text-align: left;
}

.plan-example-link {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    border: 1.5px solid var(--accent);
    border-radius: 8px;
    transition: all 0.2s ease;
    align-self: center;
}

.plan-example-link:active {
    background: var(--accent);
    color: #fff;
    transform: scale(0.96);
}

.plan-example-link-featured {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.plan-example-link-featured:active {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.plan-cta {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.plan-cta:active {
    background: rgba(255, 255, 255, 0.3);
}

.plan-cta-link {
    display: inline-block;
    padding: 12px 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
}

.plan-cta-link:active {
    transform: scale(0.96);
    background: var(--accent-hover);
}

.plan-cta-plus {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.2);
}

.plan-cta-plus:active {
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-hover);
}

.plan-cta-featured {
    background: #fff;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    border: 2px solid #667eea;
}

.plan-cta-featured:active {
    background: rgba(255, 255, 255, 0.9);
}

.features-list {
    list-style: none;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.4;
}

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

.feature-check {
    color: var(--success);
}

.featured .feature-check {
    color: #fff;
}

.feature-cross {
    color: #d1d1d6;
}

.featured .feature-cross {
    color: rgba(255, 255, 255, 0.5);
}

.feature-cross-red {
    color: #ff3b30;
}

/* Competitor comparison card styles */
.pricing-card.competitor {
    background: #e8e8ed;
    color: #86868b;
    opacity: 0.85;
    cursor: default;
    pointer-events: none;
}

.pricing-card.competitor:active {
    transform: none;
}

.competitor .plan-header {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.competitor .plan-name {
    color: #86868b;
}

.competitor .plan-price {
    color: #86868b;
}

.competitor .plan-price-prefix {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.competitor .features-list li {
    color: #86868b;
}

/* Pricing groups styling */
.pricing-group {
    position: relative;
    padding: 24px 16px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    margin-top: 8px;
}

.pricing-group-label {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 20px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    z-index: 10;
}

.pricing-group-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.competitor-group {
    position: relative;
    padding: 24px 16px 16px;
    border-radius: 20px;
    background: rgba(255, 59, 48, 0.05);
    border: 2px dashed rgba(255, 59, 48, 0.3);
    margin-top: 8px;
}

.competitor-group-label {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3b30;
    color: #fff;
    padding: 6px 20px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
    z-index: 10;
}

.feature-badge {
    display: inline-block;
    padding: 1px 6px;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-left: 6px;
    vertical-align: middle;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.featured .feature-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.features-separator {
    display: flex;
    align-items: center;
    margin: 20px 0 16px;
    padding: 12px 0;
    position: relative;
}

.features-separator::before,
.features-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 199, 89, 0.3), transparent);
}

.featured .features-separator::before,
.featured .features-separator::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.separator-text {
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--success);
    white-space: nowrap;
}

.featured .separator-text {
    color: #fff;
    opacity: 0.9;
}

.custom-plan-content {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
}

.custom-icon {
    font-size: 48px;
}

.custom-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: center;
}

.custom-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25);
    margin-top: 8px;
}

.custom-cta:active {
    transform: scale(0.96);
    background: var(--accent-hover);
}

/* Guarantee Box - Redesigned */
.guarantee-box {
    margin: 50px 16px 0;
    padding: 36px 20px 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(52, 199, 89, 0.2);
    overflow: hidden;
    position: relative;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #34c759 0%, #30d158 100%);
}

.guarantee-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-highlight {
    display: block;
    padding: 16px 20px;
    background: rgba(52, 199, 89, 0.1);
    color: var(--success);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid rgba(52, 199, 89, 0.3);
}

.guarantee-highlight::before {
    content: '✓ ';
    font-size: 18px;
    font-weight: 900;
}

/* Services Grid */
.services-section {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.service-card {
    background: var(--bg-primary);
    padding: 20px 12px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.service-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-description {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    background: var(--bg-card);
    text-align: center;
}

.contact-headline {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-copy {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.email-link {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    word-break: break-all;
}

.email-wrapper {
    position: relative;
    display: inline-block;
}

.email-copy-btn {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    word-break: break-all;
}

.email-copy-btn:hover {
    background: rgba(0, 113, 227, 0.1);
    transform: translateY(-1px);
}

.email-copy-btn:active {
    transform: scale(0.98);
}

.copy-success-message {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

.copy-success-message.show {
    opacity: 1;
    visibility: visible;
}

/* Inline email button styling */
.inline-email-wrapper {
    position: relative;
    display: inline;
}

.inline-email-btn {
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: underline;
    text-decoration-color: rgba(0, 113, 227, 0.3);
    text-underline-offset: 2px;
}

.inline-email-btn:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

.inline-email-btn:active {
    transform: scale(0.98);
    background: rgba(0, 113, 227, 0.1);
}

.inline-email-wrapper .copy-success-message {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 100;
}

/* Footer */
footer {
    background: var(--bg-primary);
    padding: 24px 20px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
    margin-bottom: 8px;
    padding: 8px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(102, 126, 234, 0.08) 100%);
    border: 1.5px solid rgba(0, 113, 227, 0.15);
}

.footer-brand {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #0071e3 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.footer-dot {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    margin: 0 2px;
    opacity: 0.8;
}

.footer-tld {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    opacity: 0.95;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0;
}

.footer-annotations {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.footer-annotation {
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-annotation sup {
    font-weight: 700;
    color: var(--accent);
    margin-right: 4px;
}

/* Divider */
.divider {
    height: 8px;
    background: var(--bg-primary);
}

/* How to Order Section - Mobile First */
.how-to-order-section {
    background: var(--bg-card);
    text-align: center;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.step-card {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(102, 126, 234, 0.12) 100%);
    border-radius: 16px;
    padding: 40px 20px 28px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:active {
    transform: scale(0.98);
}

.step-card.step-accent {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(102, 126, 234, 0.12) 100%);
}

.step-card.step-important {
    border: 2px solid rgba(0, 113, 227, 0.3);
}

.step-card.step-final {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.4);
    z-index: 10;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 8px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.step-description {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.step-details {
    background: rgba(255, 255, 255, 0.7);
    padding: 16px;
    border-radius: 12px;
    margin-top: 12px;
    text-align: left;
}

.details-header {
    font-size: 14px;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.details-list li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--accent);
    font-weight: 700;
}

/* Order CTA Bubble */
.order-cta-bubble {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-left: 4px solid var(--accent);
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.bubble-icon {
    font-size: 40px;
    flex-shrink: 0;
    line-height: 1;
}

.bubble-content {
    flex: 1;
}

.bubble-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 8px 0;
}

.bubble-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
}

.bubble-cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
}

.bubble-cta:active {
    transform: scale(0.96);
    background: var(--accent-hover);
}

/* Zaslepka Section */
.zaslepka-section {
    text-align: center;
}

.zaslepka-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Zaslepka Offer Card */
.zaslepka-offer-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 28px 20px;
    box-shadow: var(--shadow-md);
    margin: 32px auto 0;
    border: 2px solid rgba(0, 113, 227, 0.15);
    max-width: 600px;
}

.zaslepka-price-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.zaslepka-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    line-height: 1;
}

.zaslepka-price-note {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.zaslepka-offer-card .features-list {
    text-align: left;
}

.zaslepka-offer-card .features-list li {
    padding: 14px 0;
    font-size: 15px;
}

/* Benefit Highlight */
.benefit-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
    background: rgba(0, 113, 227, 0.06);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    margin-top: 32px;
    text-align: left;
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-highlight > div > strong:first-child {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-highlight span {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.benefit-highlight span strong {
    display: inline;
    font-weight: 700;
    color: var(--text-primary);
}

/* Examples Section */
.zaslepka-examples {
    margin-top: 28px;
    padding: 20px 16px;
    background: var(--bg-primary);
    border-radius: 12px;
}

.examples-intro {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.examples-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.example-link {
    display: inline-block;
    padding: 12px 28px;
    background: var(--bg-card);
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.example-link:active {
    transform: scale(0.96);
    background: var(--accent);
    color: #fff;
}

/* Main CTA */
.zaslepka-main-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.zaslepka-cta-button-main {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.zaslepka-cta-button-main:active {
    transform: scale(0.98);
    background: var(--accent-hover);
}

/* Tablet Breakpoint - 768px */
@media (min-width: 768px) {
    .nav-content {
        padding: 12px 32px;
        gap: 24px;
        justify-content: center;
    }

    .nav-top {
        position: absolute;
        left: 32px;
    }

    .logo-tld {
        display: inline;
        font-size: 22px;
    }

    .nav-links {
        gap: 18px;
        flex: 0;
        justify-content: center;
    }

    .logo-brand {
        font-size: 26px;
    }

    .logo-dot {
        font-size: 26px;
        display: inline;
    }

    .nav-link {
        font-size: 13px;
        padding: 10px 16px;
        background: linear-gradient(135deg, rgba(0, 113, 227, 0.06) 0%, rgba(102, 126, 234, 0.08) 100%);
        color: var(--text-primary);
        border: 1.5px solid rgba(0, 113, 227, 0.15);
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 113, 227, 0.1);
    }

    .nav-link:hover {
        background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(102, 126, 234, 0.12) 100%);
        border-color: rgba(0, 113, 227, 0.25);
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 113, 227, 0.15);
    }

    .nav-link-text {
        font-size: 12px;
        font-weight: 700;
        color: var(--text-primary);
    }

    .nav-link-price {
        font-size: 12px;
        font-weight: 400;
        color: var(--accent);
    }

    .nav-badge {
        font-size: 9px;
        padding: 3px 7px;
    }

    .badge-emoji {
        font-size: 13px;
    }

    .nav-cta-wrapper {
        display: block;
    }

    .nav-cta:hover {
        background: var(--accent-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 113, 227, 0.35);
    }

    .hero {
        padding: 80px 32px 60px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section {
        padding: 70px 32px;
    }

    .section-headline {
        font-size: 36px;
    }

    .section-copy {
        font-size: 18px;
    }

    .pricing-section {
        padding: 70px 32px;
    }

    .pricing-cards {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 24px;
        max-width: 900px;
        margin: 40px auto 0;
        align-items: start;
    }

    .pricing-group-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .service-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .guarantee-box {
        max-width: 700px;
        margin: 50px auto 0;
        padding: 40px 32px;
    }

    .zaslepka-content {
        max-width: 900px;
    }

    .zaslepka-offer-card {
        padding: 32px 28px;
        max-width: 650px;
    }

    .zaslepka-price {
        font-size: 56px;
    }

    .benefit-highlight {
        padding: 28px 24px;
    }

    .benefit-highlight > div > strong:first-child {
        font-size: 19px;
    }

    .benefit-highlight span {
        font-size: 16px;
    }

    .benefit-highlight span strong {
        font-size: inherit;
    }

    .example-link:hover {
        background: var(--accent);
        color: #fff;
        transform: translateY(-1px);
    }

    .contact-headline {
        font-size: 36px;
    }

    .contact-copy {
        font-size: 18px;
    }

    .email-link {
        font-size: 24px;
    }

    .email-copy-btn {
        font-size: 24px;
    }

    /* How to Order Section - Tablet */
    .steps-container {
        gap: 28px;
        max-width: 900px;
        margin: 40px auto 0;
    }

    .step-card {
        padding: 44px 28px 32px;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 24px;
        top: -18px;
    }

    .step-icon {
        font-size: 56px;
    }

    .step-title {
        font-size: 22px;
    }

    .step-description {
        font-size: 16px;
    }

    .step-details {
        padding: 18px 20px;
    }

    .details-list li {
        font-size: 15px;
    }

    .order-cta-bubble {
        max-width: 900px;
        margin: 50px auto 0;
        padding: 28px 24px;
    }

    .bubble-icon {
        font-size: 48px;
    }

    .bubble-title {
        font-size: 20px;
    }

    .bubble-text {
        font-size: 16px;
    }
}

/* Desktop Breakpoint - 1024px */
@media (min-width: 1024px) {
    .nav-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 14px 40px;
        position: relative;
    }

    .nav-top {
        position: absolute;
        left: 0;
    }

    .logo-brand {
        font-size: 28px;
    }

    .logo-dot {
        font-size: 28px;
    }

    .logo-tld {
        display: inline;
        font-size: 24px;
    }

    .logo-wrapper {
        padding: 8px 14px 8px 12px;
    }

    .nav-links {
        gap: 20px;
    }

    .footer-brand {
        font-size: 32px;
    }

    .footer-dot {
        font-size: 32px;
    }

    .footer-tld {
        font-size: 28px;
    }

    .nav-link {
        font-size: 14px;
        padding: 12px 64px;
        background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(102, 126, 234, 0.1) 100%);
        color: var(--text-primary);
        border: 1.5px solid rgba(0, 113, 227, 0.2);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 113, 227, 0.12);
    }

    .nav-link:hover {
        background: linear-gradient(135deg, rgba(0, 113, 227, 0.12) 0%, rgba(102, 126, 234, 0.15) 100%);
        border-color: rgba(0, 113, 227, 0.3);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
    }

    .nav-link-text {
        font-size: 13px;
        font-weight: 700;
        color: var(--text-primary);
    }

    .nav-link-price {
        font-size: 13px;
        font-weight: 400;
        color: var(--accent);
    }

    .nav-badge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .badge-emoji {
        font-size: 14px;
    }

    .nav-cta-wrapper {
        display: none;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 15px;
    }

    .hero {
        padding: 100px 40px 80px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .cta:hover {
        background: var(--accent-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
    }

    .section {
        padding: 90px 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-headline {
        font-size: 48px;
    }

    .section-copy {
        font-size: 21px;
    }

    .pricing-section {
        padding: 90px 40px;
    }

    .pricing-cards {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 32px;
        max-width: 1200px;
        align-items: start;
    }

    .pricing-group-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .pricing-card.competitor:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .guarantee-box {
        margin: 60px auto 0;
    }

    .guarantee-title {
        font-size: 26px;
    }

    .guarantee-icon {
        font-size: 32px;
    }

    .guarantee-text {
        font-size: 17px;
    }

    .contact-headline {
        font-size: 40px;
    }

    .email-link:hover {
        color: var(--accent-hover);
    }

    .custom-cta:hover {
        transform: translateY(-1px);
        background: var(--accent-hover);
        box-shadow: 0 4px 12px rgba(0, 113, 227, 0.35);
    }

    .plan-example-link:hover {
        background: var(--accent);
        color: #fff;
        transform: translateY(-1px);
    }

    .plan-example-link-featured:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: #fff;
    }

    .plan-cta-link:hover {
        transform: translateY(-1px);
        background: var(--accent-hover);
        box-shadow: 0 4px 12px rgba(0, 113, 227, 0.4);
    }

    .plan-cta-plus:hover {
        transform: translateY(-1px);
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
    }

    .plan-cta-featured:hover {
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
    }

    .zaslepka-content {
        max-width: 1000px;
    }

    .zaslepka-offer-card {
        padding: 36px 32px;
        max-width: 700px;
    }

    .zaslepka-offer-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .zaslepka-price {
        font-size: 64px;
    }

    .benefit-highlight {
        padding: 32px 28px;
    }

    .benefit-highlight > div > strong:first-child {
        font-size: 20px;
    }

    .benefit-highlight span {
        font-size: 17px;
    }

    .benefit-highlight span strong {
        font-size: inherit;
    }

    .zaslepka-cta-button-main:hover {
        transform: translateY(-2px);
        background: var(--accent-hover);
        box-shadow: 0 6px 20px rgba(0, 113, 227, 0.45);
    }

    /* How to Order Section - Desktop */
    .steps-container {
        flex-direction: row;
        gap: 32px;
        max-width: 1200px;
        margin: 50px auto 0;
        align-items: stretch;
    }

    .step-card {
        flex: 1;
        padding: 48px 32px 36px;
    }

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

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 26px;
        top: -20px;
    }

    .step-icon {
        font-size: 60px;
        margin-bottom: 12px;
    }

    .step-title {
        font-size: 24px;
    }

    .step-description {
        font-size: 17px;
    }

    .step-details {
        padding: 20px 24px;
    }

    .details-header {
        font-size: 15px;
    }

    .details-list li {
        font-size: 16px;
    }

    .order-cta-bubble {
        max-width: 1200px;
        margin: 60px auto 0;
        padding: 32px 28px;
    }

    .order-cta-bubble:hover {
        box-shadow: var(--shadow-md);
    }

    .bubble-icon {
        font-size: 52px;
    }

    .bubble-title {
        font-size: 22px;
    }

    .bubble-text {
        font-size: 17px;
    }

    .bubble-cta:hover {
        transform: translateY(-1px);
        background: var(--accent-hover);
        box-shadow: 0 4px 12px rgba(0, 113, 227, 0.4);
    }
}

/* Large Desktop - 1440px */
@media (min-width: 1440px) {
    .section {
        max-width: 1400px;
    }

    .pricing-section {
        max-width: 1400px;
        margin: 0 auto;
    }

    /* How to Order Section - Large Desktop */
    .steps-container {
        max-width: 1400px;
    }

    .order-cta-bubble {
        max-width: 1400px;
    }
}