/* Base Variables */
:root {
    --primary: #0D652D; /* Adot Web ID Green */
    --primary-hover: #34A853;
    --accent: #f59e0b; /* Yellow/Orange */
    --accent-red: #b91c1c;
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #334155;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Utilities */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.justify-center { display: flex; justify-content: center; }
.highlight-yellow { color: #fde68a; }
.text-green { color: #10b981; }

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

/* Sticky Topbar */
#sas-topbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#sas-topbar .tb-cta {
    background: #fff;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}

#sas-topbar .tb-cta:hover {
    transform: scale(1.05);
}

/* Live Notification */
#sas-live-notif {
    position: fixed;
    bottom: 24px;
    left: 20px;
    z-index: 9998;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid #10b981;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    max-width: 280px;
    display: none;
    animation: slideInLeft 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

#sas-live-notif .ln-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
#sas-live-notif .ln-dot {
    width: 8px; height: 8px; background: #10b981; border-radius: 50%;
    animation: blink-dot 1s ease infinite;
}
@keyframes blink-dot {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}
#sas-live-notif .ln-name { font-weight: 800; font-size: 13px; }
#sas-live-notif .ln-text { color: var(--text-muted); font-size: 12px; }
#sas-live-notif .ln-time { color: #64748b; font-size: 10px; margin-top: 4px; }

/* Main Landing Section */
#adot-landing {
    padding: 40px 0 80px 0;
}

/* V6 Banner */
.v6-launch-banner {
    background: linear-gradient(135deg, #094720, #0D652D, #34A853);
    border-radius: 16px;
    padding: 40px 30px;
    color: #fff;
    box-shadow: 0 20px 25px -5px rgba(13, 101, 45, 0.3);
    margin-bottom: 30px;
}

.vlb-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}

.v6-launch-banner h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.v6-launch-banner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.v6-price-row {
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.v6-price-row .old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
}

.v6-price-row .new-price {
    font-size: 32px;
    font-weight: 800;
    color: #fde68a;
}

/* Buttons */
.btn-giant {
    display: inline-block;
    background: #f59e0b;
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.btn-giant:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(245, 158, 11, 0.5);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #166534;
    margin-bottom: 40px;
}

/* Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 4px solid var(--border);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Dividers */
.divider { height: 1px; background: var(--border); margin: 50px 0; border: none; }
.divider-dashed { border-top: 2px dashed var(--border); margin: 50px 0; border-bottom: none; border-left:none; border-right:none; height:0;}

/* Problem Section */
.alert-text {
    background: #fef2f2;
    color: var(--accent-red);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card-danger {
    background: #fff;
    border: 1px solid #fecaca;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.05);
}
.card-danger i {
    font-size: 32px;
    color: var(--accent-red);
    margin-bottom: 15px;
}
.card-danger h3 { font-size: 18px; margin-bottom: 10px; }
.card-danger p { font-size: 14px; color: var(--text-muted); }

/* Features */
.features-list {
    margin-top: 40px;
}
.feature-card {
    display: flex;
    gap: 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.fc-number {
    font-size: 48px;
    font-weight: 800;
    color: #cbd5e1;
    line-height: 1;
}
.fc-content h3 { font-size: 20px; margin-bottom: 10px; }
.fc-content p { color: var(--text-muted); margin-bottom: 15px; }
.feature-bullets {
    list-style: none;
}
.feature-bullets li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    gap: 10px;
}
.feature-bullets li i { color: var(--primary); margin-top: 4px; }

/* Pricing */
.slot-bar-hero {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 30px;
}
.slot-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: #9a3412;
    margin-bottom: 10px;
}
.slot-track-hero { background: #fed7aa; border-radius: 100px; height: 10px; overflow: hidden; }
.slot-fill-hero { background: linear-gradient(90deg, #f59e0b, #b91c1c); height: 100%; transition: width 0.5s ease; }

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

.pricing-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(13, 101, 45, 0.1);
    transform: scale(1.02);
}

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
}

.pricing-card h3 { font-size: 22px; margin-bottom: 20px; }
.price-box .strike { text-decoration: line-through; color: #94a3b8; font-size: 16px; }
.price-box .price { font-size: 36px; font-weight: 800; color: var(--text-main); margin-bottom: 15px;}
.price-box .price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }

.plan-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 25px; min-height: 40px; }

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}
.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-alt);
    font-size: 14px;
}
.plan-features li i { color: #10b981; margin-right: 10px; }

.btn-pricing {
    display: block;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--bg-alt); }
.btn-solid { background: var(--primary); color: #fff; }
.btn-solid:hover { background: var(--primary-hover); }

/* FAQ */
.faq-accordion details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
}
.faq-accordion summary {
    padding: 16px 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion .faq-content {
    padding: 0 20px 20px 20px;
    font-size: 15px;
    color: var(--text-muted);
}

/* Features - Extended Layout */
.adot-features-extended {
    margin-top: 50px;
}
.feature-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}
.feature-row.reverse {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
}
.feature-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-main);
}
.feature-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.feature-bullets {
    list-style: none;
}
.feature-bullets li {
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature-bullets li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 18px;
}
.feature-image {
    flex: 1;
    text-align: center;
}
.feature-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
}

/* Trusted By */
.adot-trusted-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.adot-client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}
.adot-client-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.adot-client-logo {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .v6-launch-banner h1 { font-size: 28px; }
    .feature-row, .feature-row.reverse { flex-direction: column; gap: 20px; }
    .pricing-card.popular { transform: scale(1); }
}