* {
    box-sizing: border-box;
}

@keyframes pinkGlow {
    0%, 100% { 
        box-shadow: inset 0 0 100px rgba(255, 105, 180, 0.1); 
    }
    50% { 
        box-shadow: inset 0 0 100px rgba(255, 105, 180, 0.3); 
    }
}

.loading-bg::before {
    animation: pinkGlow 2s ease-in-out infinite;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f8f9fa;
    background-image: url('https://i.postimg.cc/wTd9Y8R5/bloom_background.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #f1f0f3;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    transition: background-image 0.8s ease-in-out;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(26, 22, 37, 0.8) 25%, 
        rgba(45, 27, 62, 0.7) 50%, 
        rgba(74, 44, 90, 0.6) 75%, 
        rgba(255, 105, 180, 0.1) 100%);
    z-index: -1;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

body.image-loaded::before {
    opacity: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header {
    background: rgba(26, 22, 37, 0.08);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 182, 193, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 182, 193, 0.6);
    letter-spacing: -0.5px;
}

.logo .accent {
    color: #ff69b4;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: manipulation;
    min-height: 44px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493, #dc143c);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff1493, #dc143c, #b91c5c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 182, 193, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 182, 193, 0.15);
    border-color: rgba(255, 182, 193, 0.6);
    transform: translateY(-1px);
}

.hero {
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
}

.hero-badge {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(255, 20, 147, 0.1));
    color: #ff69b4;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 40px rgba(255, 182, 193, 0.3);
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-title .accent {
    color: #ff69b4;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e5e0f0;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.activator-section {
    margin-bottom: 40px;
}

.activator-label {
    color: #b8b3c4;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 500;
}

.activator-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493, #dc143c);
    color: white;
    border-radius: 20px;
    padding: 24px 48px;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: manipulation;
    min-height: 60px;
    min-width: 280px;
    text-align: center;
    word-break: keep-all;
    white-space: nowrap;
}

.activator-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 20px 20px 0 0;
}

.activator-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.6);
    background: linear-gradient(135deg, #ff1493, #dc143c, #b91c5c);
}

.hero-note {
    color: #b8b3c4;
    font-size: 14px;
    font-weight: 400;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 30px rgba(255, 182, 193, 0.3);
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #e5e0f0;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    border: 1px solid rgba(255, 182, 193, 0.2);
    padding: 32px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card[onclick] {
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.6), transparent);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 182, 193, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff69b4, #ff1493, #dc143c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 20px 20px 0 0;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-description {
    color: #e5e0f0;
    line-height: 1.6;
    font-weight: 400;
    font-size: 15px;
}

.feature-card-full {
    grid-column: 1 / -1;
    padding: 48px;
}

.alpha-feed {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid rgba(255, 182, 193, 0.2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.alpha-feed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
    z-index: 10;
}

.alpha-feed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 10;
}

@keyframes scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.animate-scroll {
    animation: scroll 35s linear infinite;
}

.animate-scroll > div {
    margin-bottom: 4px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-description {
    color: #e5e0f0;
    line-height: 1.6;
    font-weight: 400;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    space-y: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border: 1px solid rgba(255, 182, 193, 0.2);
    margin-bottom: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(255, 182, 193, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.faq-summary {
    padding: 24px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-toggle {
    color: #ff69b4;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-toggle {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 32px 32px;
    color: #e5e0f0;
    line-height: 1.6;
    font-weight: 400;
}

.footer {
    background: rgba(26, 22, 37, 0.12);
    border-top: 1px solid rgba(255, 182, 193, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand .logo {
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: #e5e0f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.footer-link:hover {
    color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 182, 193, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: #b8b3c4;
    font-size: 13px;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    border: 1px solid rgba(255, 182, 193, 0.2);
    padding: 40px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.6), transparent);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 182, 193, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.pricing-card-pro {
    border-color: rgba(255, 105, 180, 0.4);
    background: rgba(255, 105, 180, 0.08);
}

.pricing-card-pro:hover {
    border-color: rgba(255, 105, 180, 0.8);
    background: rgba(255, 105, 180, 0.12);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 12px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff69b4;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.price-period {
    font-size: 0.9rem;
    color: #b8b3c4;
    font-weight: 400;
    margin-left: 8px;
}

.pricing-description {
    color: #e5e0f0;
    font-size: 14px;
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #e5e0f0;
    font-size: 14px;
    font-weight: 400;
}

.feature-check {
    color: #ff69b4;
    font-weight: 600;
    font-size: 16px;
}

.pricing-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-btn-free {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.pricing-btn-free:hover {
    background: rgba(255, 182, 193, 0.15);
    border-color: rgba(255, 182, 193, 0.6);
    transform: translateY(-2px);
}

.pricing-btn-pro {
    background: linear-gradient(135deg, #ff69b4, #ff1493, #dc143c);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.pricing-btn-pro:hover {
    background: linear-gradient(135deg, #ff1493, #dc143c, #b91c5c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(26, 22, 37, 0.95);
    border-radius: 24px;
    border: 1px solid rgba(255, 182, 193, 0.3);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(20px);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ff69b4;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #ff1493;
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: #e5e0f0;
    font-size: 14px;
    font-weight: 400;
}

.modal-steps {
    margin-bottom: 32px;
}

.modal-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.modal-step .step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    color: #e5e0f0;
    font-size: 14px;
    line-height: 1.5;
}

.modal-activator {
    text-align: center;
    margin-bottom: 24px;
    padding: 24px;
    background: rgba(255, 105, 180, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.modal-activator .activator-label {
    color: #ff69b4;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-note {
    text-align: center;
}

.modal-note p {
    color: #b8b3c4;
    font-size: 13px;
    margin-bottom: 4px;
}

.modal-content-large {
    max-width: 600px;
    width: 95%;
    padding: 50px;
}

.modal-body {
    text-align: center;
    color: #e5e0f0;
    font-size: 16px;
    line-height: 1.6;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.animate-fade-in.animate-in {
    opacity: 1;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

.animate-bounce {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-bounce.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }
.animate-on-scroll:nth-child(7) { transition-delay: 0.7s; }
.animate-on-scroll:nth-child(8) { transition-delay: 0.8s; }
.animate-on-scroll:nth-child(9) { transition-delay: 0.9s; }

.activator-btn.highlighted {
    animation: highlight-pulse 2s ease-in-out 3;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.8), 0 0 60px rgba(255, 105, 180, 0.6);
}

@keyframes highlight-pulse {
    0% { 
        box-shadow: 0 0 30px rgba(255, 105, 180, 0.8), 0 0 60px rgba(255, 105, 180, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 105, 180, 1), 0 0 80px rgba(255, 105, 180, 0.8);
        transform: scale(1.05);
    }
    100% { 
        box-shadow: 0 0 30px rgba(255, 105, 180, 0.8), 0 0 60px rgba(255, 105, 180, 0.6);
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        height: 70px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-buttons {
        gap: 8px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .activator-btn {
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-card-full {
        padding: 28px;
    }
    
    .steps-grid {
        gap: 32px;
    }
    
    .faq-summary {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 0 24px 24px;
    }
    
    .footer {
        padding: 24px 0;
    }
    
    .footer-simple {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .footer-links {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header-content {
        height: 60px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .nav-buttons {
        gap: 6px;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .activator-btn {
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card-full {
        padding: 24px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .faq-summary {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .faq-content {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .footer {
        padding: 20px 0;
    }
    
    .footer-simple {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .footer-link {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .footer-copyright {
        font-size: 11px;
    }
    
    .activator-btn {
        min-width: 280px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-title, .section-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .btn, .activator-btn, .logo {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 32px;
    }
    
    .pricing-header {
        margin-bottom: 24px;
    }
    
    .pricing-title {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .steps-grid {
        gap: 20px;
    }
    
    .step {
        text-align: center;
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 auto 16px;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 14px;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .logo, .hero-title, .section-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .header-content {
        height: 50px;
    }
    
    .btn {
        padding: 4px 8px;
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .activator-btn {
        padding: 14px 20px;
        font-size: 12px;
        min-width: 250px;
    }
    
    .feature-card {
        padding: 16px;
    }
    
    .pricing-card {
        padding: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}