:root {
    --primary: #0A1D37; /* Deep Navy */
    --accent: #FF6B35;  /* Vibrant Orange */
    --accent-hover: #E85B28;
    --secondary: #00B4D8; /* Soft Teal */
    --bg-color: #F8FAFC; /* Very light gray/blue */
    --text: #334155;    /* Slate Gray */
    --white: #FFFFFF;
    --font: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }
.bg-light { background-color: var(--white); }
.subtitle { margin-top: -10px; margin-bottom: 30px; font-size: 1.15rem; color: #64748B;}

/* Typography */
h1, h2, h3, h4 { color: var(--primary); line-height: 1.2; }
h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1.5rem; }
p { font-size: 1.1rem; margin-bottom: 1rem; }

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--white);
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}
.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
    color: var(--white);
}
.arrow { margin-left: 10px; font-size: 1.4rem;}
.pulse { animation: pulsing 2s infinite; }
@keyframes pulsing {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* Sections */
section { padding: 80px 0; }

/* Hero */
.hero {
    background: linear-gradient(135deg, #0A1D37 0%, #1A365D 100%);
    color: var(--white);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}
/* Micro-animation pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
}
.hero h1 { color: var(--white); }
.hero p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 2rem; }
.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}
.hero-text { flex: 1.1; }
.hero-image { flex: 0.9; position: relative; }
.hero-image img { 
    box-shadow: 0 25px 50px rgba(0,0,0,0.4); 
    border: 8px solid rgba(255,255,255,0.1); 
    transition: transform 0.5s ease;
}
.hero-image img:hover { transform: scale(1.03) rotate(1deg); }

/* Grids */
.grid-4, .grid-3 {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Cards */
.card, .audience-card, .step {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border-top: 5px solid var(--secondary);
}
.card:hover, .audience-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    border-color: var(--accent);
}
.card .icon { font-size: 2.8rem; margin-bottom: 20px; }
.card h3 { margin-bottom: 12px; font-size: 1.3rem; }

/* Two columns */
.two-col {
    display: flex;
    align-items: center;
    gap: 60px;
}
.benefits-image, .benefits-text { flex: 1; }
.benefits-image img { 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}
.check-list { list-style: none; margin-top: 30px;}
.check-list li { 
    margin-bottom: 20px; 
    font-size: 1.15rem; 
    background: var(--white); 
    padding: 20px 25px; 
    border-radius: 16px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
    color: var(--text);
    transition: transform 0.3s ease;
}
.check-list li:hover { transform: translateX(5px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }

/* Audience */
.audience-card { border-top-color: #CBD5E1; }
.audience-card .emoji { font-size: 3.5rem; display: block; margin-bottom: 20px; }
.audience-card p { font-size: 1.15rem; font-weight: 500; }

/* Mockup */
.mockup-img { max-width: 850px; margin: 0 auto; box-shadow: 0 25px 60px rgba(0,0,0,0.12); border-radius: 24px; transition: transform 0.4s; }
.mockup-img:hover { transform: scale(1.02); }
.step { border-top: 5px solid var(--accent); position: relative; padding-top: 45px;}
.step .number { 
    background: var(--accent); 
    color: var(--white); 
    width: 45px; height: 45px; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 1.5rem; font-weight: 800; 
    margin: 0 auto 20px; 
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
.step p { font-weight: 600; font-size: 1.1rem; }

/* Offer */
.offer-section { background-color: var(--primary); color: var(--white); padding: 100px 0;}
.offer-section h2 { color: var(--white); font-size: 2.5rem; }
.offer-section > p { font-size: 1.25rem; max-width: 600px; margin: 0 auto; opacity: 0.9;}
.pricing-card {
    background: var(--white);
    max-width: 420px;
    margin: 50px auto 0;
    border-radius: 24px;
    padding: 50px 40px;
    color: var(--text);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    transform: scale(1.05); /* Highlight card */
}
.pricing-header h4 { font-size: 1.4rem; color: var(--secondary); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;}
.price { margin-bottom: 30px; }
.old-price { display: block; text-decoration: line-through; color: #94A3B8; font-size: 1.1rem; }
.new-price { display: block; font-size: 4rem; font-weight: 800; color: var(--primary); line-height: 1; letter-spacing: -1px;}
.pricing-features { list-style: none; margin-bottom: 40px; text-align: left; }
.pricing-features li { margin-bottom: 15px; padding-left: 30px; font-size: 1.15rem; font-weight: 600; position: relative;}
.pricing-features li::before { content: "✅"; position: absolute; left: 0; font-size: 1.1rem;}
.cta-button#offer-btn { width: 100%; display: block; padding: 22px; font-size: 1.3rem;}
.secure-text { font-size: 0.95rem; color: #64748B; margin-top: 25px; font-weight: 600;}

/* Footer */
footer { background: #051021; color: #94A3B8; padding: 40px 0; font-size: 0.95rem; }
footer .links { margin-top: 15px; }
footer a { color: #94A3B8; margin: 0 15px; text-decoration: none; transition: color 0.2s;}
footer a:hover { color: var(--white); }

/* Responsive adjustments */
@media (max-width: 900px) {
    .two-col { flex-direction: column; text-align: center; }
    .benefits-image { order: -1; margin-bottom: 20px;}
    .check-list li { text-align: left; }
}

@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; gap: 30px;}
    .hero { padding: 60px 0 50px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .pricing-card { transform: scale(1); padding: 40px 25px; }
    .new-price { font-size: 3.2rem; }
    .cta-button { font-size: 1.05rem; padding: 16px 24px; white-space: normal;}
    section { padding: 60px 0; }
    
    .sales-notification { left: 10px; bottom: 10px; right: 10px; max-width: none; }
}

/* Facebook Comments */
.comments-section { padding: 60px 0; }
.fb-comments-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ebee;
    font-family: Helvetica, Arial, sans-serif;
}
.fb-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ebee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.fb-heading h4 { font-size: 14px; font-weight: bold; color: #1c1e21; margin: 0; }
.fb-sort { font-size: 12px; color: #606770; }
.fb-sort strong { color: #1c1e21; cursor: pointer; }

.fb-comment { display: flex; margin-bottom: 15px; }
.fb-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; margin-right: 10px; }
.fb-content { flex: 1; }
.fb-name { font-size: 14px; font-weight: bold; color: #385898; cursor: pointer; margin-bottom: 2px;}
.fb-name:hover { text-decoration: underline; }
.fb-text { font-size: 14px; color: #1c1e21; line-height: 1.4; margin-bottom: 5px; }
.fb-actions { font-size: 12px; color: #385898; }
.fb-actions span { cursor: pointer; }
.fb-actions span:hover { text-decoration: underline; }
.fb-time { color: #606770 !important; cursor: default !important; }
.fb-time:hover { text-decoration: none !important; }

.fb-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ebee;
}
.fb-load-more { background: transparent; border: none; color: #385898; font-weight: bold; font-size: 14px; cursor: pointer; }
.fb-load-more:hover { text-decoration: underline; }
.fb-plugin-footer { font-size: 11px; color: #90949c; }

/* Sales Notification Element */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px 10px 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    max-width: 350px;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid var(--accent);
}
.sales-notification.show {
    transform: translateY(0);
    opacity: 1;
}
.sn-img {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
}
.sn-content { flex: 1; text-align: left; }
.sn-name { margin: 0; font-size: 14px; font-weight: bold; color: var(--primary); line-height: 1.2;}
.sn-action { margin: 0; font-size: 13px; color: var(--text); line-height: 1.2;}
.sn-time { margin: 0; font-size: 11px; color: #94A3B8; margin-top: 2px;}
