:root {
    --bg-main: #F8FAFC;
    --bg-alt: #FFFFFF;
    --bg-card: #FFFFFF;
    --text-main: #334155;
    --text-heading: #0F172A;
    --text-muted: #64748B;
    --accent-emerald: #10B981;
    --accent-emerald-hover: #059669;
    --accent-blue: #2563EB;
    --border-color: #E2E8F0;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    --glow-emerald: rgba(16, 185, 129, 0.05);
    --glow-blue: rgba(37, 99, 235, 0.05);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Global Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-heading);
}

p {
    color: var(--text-muted);
}

.highlight-green {
    color: var(--accent-emerald);
}

.highlight-blue {
    color: var(--accent-blue);
}

.highlight-black {
    color: var(--text-heading);
}

.nowrap {
    white-space: nowrap;
}

.highlight-underline {
    position: relative;
    display: inline-block;
}
.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-blue);
    z-index: -1;
    transform: translateY(-2px);
    border-radius: 2px;
    opacity: 0.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-emerald {
    background-color: var(--accent-emerald);
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.25);
}

.btn-emerald:hover {
    background-color: var(--accent-emerald-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-heading);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--accent-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Background Glows */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.bg-glow-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: var(--glow-emerald);
}

.bg-glow-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--glow-blue);
}

/* Phone Mockup */
.hero-mockup {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    background: #FFFFFF;
    border-radius: 40px;
    border: 10px solid #1E293B;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), inset 0 0 0 2px rgba(0,0,0,0.05);
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1E293B;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Google Profile Header inside Phone */
.google-profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(to right, #ffffff, #f8fafc);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    margin-top: 15px;
    margin-bottom: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.g-logo {
    width: 36px;
    height: 36px;
    background: #4285F4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.g-info h4 {
    font-size: 0.9rem;
    color: var(--text-heading);
    margin: 0 0 2px 0;
}

.g-rating {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    color: #FBBC05;
    letter-spacing: -2px;
}
.review-count {
    font-size: 0.75rem;
}

.notification {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    animation: slideInNotif 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-notif {
    animation-delay: 1.5s;
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.notif-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-heading);
}

.notif-body {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--text-main);
}

@keyframes slideInNotif {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trusted By Ticker */
.trusted-ticker {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 0;
    text-align: center;
}

.trusted-ticker p {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.logo-placeholder {
    font-size: 1.25rem;
    font-weight: 800;
    color: #94A3B8;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.logo-placeholder:hover {
    opacity: 1;
}

/* Animations Core */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.stagger-up-1 { transition-delay: 0.1s; }
.stagger-up-2 { transition-delay: 0.3s; }
.stagger-up-3 { transition-delay: 0.5s; }

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Section Header styling */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.old-way {
    background: #FAFAFA;
}

.old-way::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #FEF2F2;
    border-bottom-left-radius: 20px;
}

.new-way {
    background: #FFFFFF;
    border: 2px solid var(--text-heading);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.new-way::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #EFF6FF;
    border-bottom-left-radius: 20px;
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.compare-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.icon-red {
    background: #FEE2E2;
    color: #EF4444;
}

.icon-black {
    background: var(--text-heading);
    color: #FFFFFF;
}

.compare-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.new-way .compare-list li {
    color: var(--text-heading);
    font-weight: 500;
}

.bullet-minus {
    color: #94A3B8;
    font-weight: bold;
    display: inline-block;
    width: 15px;
    flex-shrink: 0;
}

.bullet-plus {
    color: var(--accent-blue);
    font-weight: bold;
    display: inline-block;
    width: 15px;
    flex-shrink: 0;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background-color: var(--bg-alt);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.step-line {
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-emerald));
    opacity: 0.2;
}

.step {
    position: relative;
    margin-bottom: 4rem;
}

.step:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-heading);
    display: flex;
    align-items: center;
}

.step-icon {
    margin-right: 12px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 40px 0 80px;
    background-color: var(--bg-alt);
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    position: relative;
}

.testimo-stars {
    color: #FBBC05;
    font-size: 1.5rem;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.quote {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-heading);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-heading);
}

.author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-heading);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-emerald), var(--accent-blue));
}

.stat-row {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}
.stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-emerald);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item summary {
    padding: 1.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-icon::before {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon::before {
    content: '−';
}

.faq-item[open] {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
}

.faq-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background-color: var(--bg-main);
}

/* Keep the CTA high contrast using a dark blue gradient to stand out perfectly */
.cta-box {
    background: linear-gradient(135deg, #0F172A, #1D4ED8);
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.cta-box h2 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: #E2E8F0;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.guarantee {
    margin-top: 1.5rem !important;
    font-size: 0.875rem !important;
    color: #94A3B8 !important;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    background: var(--bg-alt);
}

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

.footer-logo {
    font-weight: 700;
    color: var(--text-heading);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .benefits-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-image {
        order: -1;
    }

}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title, .cta-box h2 {
        font-size: 2rem;
    }
    .step-content {
        padding: 1.5rem;
    }
    .cta-box {
        padding: 3rem 1.5rem;
    }
}
