:root {
    --primary: #FF4D6D;
    --primary-hover: #E63958;
    --secondary: #2D6A4F;
    --secondary-hover: #1B4332;
    --accent: #FF9770;
    --bg-warm: #FFF9F9;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    padding: 20px 0;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    height: 70px;
    display: block;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #FFF0F3 0%, #FFCCD5 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: #43010C;
}

.hero h1 span {
    color: var(--primary);
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    font-size: 1.1rem;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 77, 109, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 77, 109, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

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

.crypto-secure {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Shape Divider */
.custom-shape-divider-bottom-1688680000 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1688680000 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom-1688680000 .shape-fill {
    fill: #FFFFFF;
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #43010C;
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 5px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 5px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #FFF0F3;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 25px;
}

/* Benefits */
.highlight {
    background: #FAFBFC;
}

.flex-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
}

.benefits-content {
    flex: 1;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list i {
    color: var(--secondary);
    font-size: 1.3rem;
}

/* Showcase Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.image-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Bonuses */
.bonuses {
    background: #43010C;
    color: white;
    text-align: center;
}

.bonus-tag {
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
}

.bonuses h2 {
    color: white;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.bonuses-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-item {
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.free-label {
    position: absolute;
    top: 10px;
    right: -30px;
    background: #00B894;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 800;
}

.price-val {
    display: block;
    margin-top: 15px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: line-through;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.opinion-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.opinion-img:hover {
    transform: scale(1.03);
}

/* Pricing Card */
.pricing {
    background: #FFF0F3;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    text-align: center;
}

.pricing-header {
    background: var(--primary);
    color: white;
    padding: 40px 20px;
}

.price-box {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency { font-size: 2rem; margin-top: 10px; }
.amount { font-size: 6rem; font-weight: 800; line-height: 1; }
.period { font-size: 1.5rem; margin-top: 40px; margin-left: 5px; }

.pricing-body {
    padding: 40px;
}

.pricing-body ul {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-body li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
}

.pricing-body i {
    color: #FFD166;
    margin-right: 10px;
}

.btn-large {
    width: 100%;
    padding: 25px;
    font-size: 1.3rem;
}

.payment-methods {
    margin-top: 25px;
    font-size: 2rem;
    color: #dfe6e9;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Guarantee */
.guarantee-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid #f0f0f0;
    border-radius: var(--border-radius);
}

.guarantee-box i {
    color: var(--primary);
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 80px 0;
    background: #1e272e;
    color: white;
    text-align: center;
}

.logo-footer {
    height: 80px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.disclaimer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #95a5a6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        padding-top: 50px;
        text-align: center;
    }
    
    .hero h1 { font-size: 2.5rem; }
    
    .flex-reverse {
        flex-direction: column-reverse;
    }
    
    .section-title h2 { font-size: 2rem; }
}

/* Social Proof Notifications */
.notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-in 4.5s forwards;
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

.notice-icon {
    background: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
