* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
}

body {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #f0f0f0;
    background: white;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 16px -6px rgba(255, 107, 0, 0.4);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px -6px rgba(255, 107, 0, 0.6);
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #1A1A1A;
}
.logo-text span {
    color: #FF6B00;
}

.header-cta {
    background: #1A1A1A;
    color: white;
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: default;
    letter-spacing: 0.5px;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 40px 20px 40px;
    gap: 30px;
    background: linear-gradient(145deg, #ffffff 0%, #fff6f0 100%);
}

.hero-content {
    flex: 1 1 50%;
}

.badge {
    display: inline-block;
    background: #FF6B00;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #FF6B00;
    background: linear-gradient(135deg, #FF6B00, #ff9a56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 30px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
    background: white;
    padding: 15px 25px;
    border-radius: 60px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.price-tag .price {
    font-size: 32px;
    font-weight: 800;
    color: #FF6B00;
}
.price-tag .price small {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-left: 5px;
}
.price-tag .info {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background: #FF6B00;
    color: white;
    padding: 16px 48px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px -8px rgba(255, 107, 0, 0.5);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -8px rgba(255, 107, 0, 0.6);
    background: #e85e00;
}

.hero-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 250px;
}

.hero-image .illustration {
    width: 100%;
    max-width: 400px;
    background: #1A1A1A;
    border-radius: 30px;
    padding: 30px 20px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.illustration .big-circle-logo {
    width: 120px;
    height: 120px;
    background: #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    box-shadow: 0 12px 24px rgba(255, 107, 0, 0.3);
}

.illustration .big-circle-logo span {
    font-size: 56px;
    font-weight: 900;
    color: white;
    letter-spacing: -2px;
}

.illustration .sub-text {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
    letter-spacing: 2px;
}
.illustration .stars {
    color: #FF6B00;
    font-size: 24px;
    margin-top: 10px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 40px 20px 40px;
    border-top: 1px solid #f0f0f0;
    background: white;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 16px;
    transition: all 0.2s;
    background: #fafafa;
}

.feature-item .icon {
    font-size: 28px;
}
.feature-item p {
    font-weight: 600;
    color: #1A1A1A;
    font-size: 15px;
}
.feature-item span {
    font-weight: 400;
    color: #666;
    font-size: 13px;
    display: block;
}

.footer {
    background: #1A1A1A;
    color: white;
    padding: 30px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-left .mini-logo {
    width: 36px;
    height: 36px;
    background: #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    padding: 8px 18px 8px 22px;
    border-radius: 60px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s;
}

.footer-email:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: #FF6B00;
}

.footer-email a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}
.footer-email .copy-icon {
    background: #FF6B00;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}
.footer-email .copy-icon:hover {
    background: #e85e00;
}

.footer-right {
    font-size: 14px;
    color: #888;
}
.footer-right strong {
    color: #FF6B00;
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .hero {
        padding: 20px;
        flex-direction: column-reverse;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .price-tag .price {
        font-size: 26px;
    }
    .features {
        padding: 20px;
        grid-template-columns: 1fr 1fr;
    }
    .footer {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .footer-left {
        flex-direction: column;
    }
    .illustration .big-circle-logo {
        width: 90px;
        height: 90px;
    }
    .illustration .big-circle-logo span {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
    }
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}