/* 
  Maestloper Media - High Converting Layout CSS 
  Theme: Minimal Professional (White, Red, Blue accents) 
*/

:root {
    /* Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f4f4f5;
    
    --text-primary: #09090b; /* Very Dark / Black */
    --text-secondary: #52525b; /* Gray */
    
    /* Logo Colors */
    --brand-red: #E2231A;
    --brand-red-dark: #b8140e;
    --brand-blue: #2A438A;
    --brand-blue-dark: #1e3163;
    
    --card-bg: #ffffff;
    --card-border: #e4e4e7;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    --hover-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px; /* Slightly sharper, more professional borders */
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 0; 
}

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

/* Typography Details */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary); /* Default to black/dark for minimalism */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-solid {
    background: var(--brand-red);
    color: #ffffff;
    border: 1px solid var(--brand-red);
    box-shadow: 0 4px 10px rgba(226, 35, 26, 0.2);
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(226, 35, 26, 0.3);
    background: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--text-secondary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--brand-red); /* Logo Red */
}

.logo span {
    color: var(--brand-blue); /* Logo Blue */
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--brand-blue); /* Professional accent */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.trust-line i {
    color: var(--text-secondary);
    margin-right: 5px;
}

.trust-divider {
    color: var(--card-border);
}

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

.bg-alternate {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Social Proof Grid */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.proof-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.proof-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.proof-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testimonial {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.quote {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.author {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Who is this for */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    border-color: #d4d4d8;
    box-shadow: var(--hover-shadow);
}

.industry-card i {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.industry-card h3 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Trial Offer Highlight Box */
.trial-offer-section {
    padding: 60px 0;
}

.trial-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.trial-content h2 {
    margin-bottom: 10px;
}

.offer-price {
    font-size: 2rem;
    color: var(--brand-blue);
    margin-bottom: 25px;
    font-weight: 600;
}

.trial-content .features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.trial-content .features li {
    font-size: 1rem;
    color: var(--text-secondary);
}

.trial-content .features li i {
    color: var(--text-primary);
    margin-right: 5px;
    font-size: 0.8rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}

.pricing-card:hover {
    box-shadow: var(--hover-shadow);
}

.card-icon {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.price {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.price span:first-child {
    font-size: 1.2rem;
    margin-right: 2px;
}

.price .period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 2px;
}

.features {
    flex-grow: 1;
    margin-bottom: 30px;
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features li i {
    color: var(--text-primary);
    margin-top: 5px;
    font-size: 0.7rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Most Popular */
.featured-card {
    border: 1px solid var(--brand-blue);
    box-shadow: 0 4px 20px rgba(42, 67, 138, 0.08);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-blue);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Comparison Table */
.comparison-section {
    padding: 70px 0;
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
}

.comparison-table th, 
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.95rem;
}

.comparison-table th {
    background: var(--bg-secondary);
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table .highlight-col {
    background: #f8fafc;
    color: var(--brand-blue);
    font-weight: 500;
}

/* Lead Gen */
.lead-gen-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight-price span {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 5px;
}

.example-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--card-border);
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    display: block;
    box-shadow: var(--card-shadow);
}

.service-card:hover {
    box-shadow: var(--hover-shadow);
    border-color: #d4d4d8;
}

.service-card i {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-price {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.view-link {
    font-size: 0.85rem;
    color: var(--brand-blue);
    font-weight: 500;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.why-item i {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.why-item h4 {
    font-size: 1.05rem;
    font-weight: 500;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    margin-bottom: 12px;
    border-radius: var(--border-radius);
}

.faq-item summary {
    padding: 20px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    list-style: none; /* remove default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item .faq-content {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
}

.urgency-title {
    color: var(--brand-red);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: #000000;
    padding: 60px 0 30px;
    color: #ffffff;
}

.footer-brand {
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand h2 {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-brand span {
    color: var(--brand-red);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Sticky Mobile Bar */
.sticky-mobil-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none; /* Hide by default, show on mobile */
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 9999;
    border-top: 1px solid var(--card-border);
}

.sticky-mobil-bar .mobile-btn {
    flex: 1;
    padding: 14px 0;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.mobile-btn.whatsapp {
    border-right: 1px solid var(--card-border);
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.05);
    color: #FFF;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Scroll Animation Utilities */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid, .proof-grid, .industry-grid, .why-grid, .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 50px; /* Space for sticky bar */
    }

    .pricing-grid, .proof-grid, .industry-grid, .why-grid, .service-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .sticky-mobil-bar {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }

    .trial-box {
        padding: 30px 20px;
    }
    .highlight-price {
        font-size: 2.8rem;
    }
    
    .cta-buttons, .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn, .hero-buttons .btn {
        width: 100%;
    }
    
    .trust-line {
        flex-direction: column;
        gap: 10px;
    }

    .trust-divider {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .floating-wa {
        bottom: 70px; /* Above the sticky banner on mobile */
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}
