/* ------------------- */
/* Custom Properties   */
/* ------------------- */
:root {
    --bg-color: #ffffff;
    --surface-color: #f8f9fa;
    --text-color: #0d1a2e; /* Dark Blue for text */
    --text-muted-color: #5a697d; /* Lighter blue/grey for subtitles */
    --primary-color: #3b82f6; /* A vibrant blue from the logo */
    --border-color: #dee2e6;
}

/* ------------------- */
/* Reset & Globals     */
/* ------------------- */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-color);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

section {
    padding: 80px 0;
}

.no-border {
    border: none !important;
}

.no-padding-bottom {
    padding-bottom: 0;
}

/* ------------------- */
/* Header              */
/* ------------------- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
}

.main-header .logo-img {
    height: 40px;
    width: 40px;
}

.main-header nav a {
    color: var(--text-muted-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-header nav a:hover {
    color: var(--text-color);
}

/* ------------------- */
/* Buttons             */
/* ------------------- */
.cta-button-primary, .cta-button-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button-secondary {
    background-color: var(--surface-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.cta-button-primary:hover, .cta-button-secondary:hover {
    transform: translateY(-3px);
}

.cta-button-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}
.button-container {
  text-align: center;
  margin-bottom: 2.5rem;
}
/* ------------------- */
/* Top Punchline Strip */
/* ------------------- */
.top-punchline {
    background: linear-gradient(90deg, #eaf2fe, #f5faff);
    border-bottom: 1px solid rgba(59, 130, 246, 0.25);
    padding: 10px 0;
    text-align: center;
}

.top-punchline .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-punchline .tag {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-punchline .copy {
    color: var(--text-color);
    font-weight: 600;
}

.top-punchline .cta-inline {
    color: #1e40af;
    font-weight: 700;
    text-decoration: underline;
}

.top-punchline .cta-inline:hover {
    color: #0b5ad9;
    text-decoration-color: #0b5ad9;
}

/* ------------------- */
/* Banner Section      */
/* ------------------- */
.banner-section {
    padding-top: 80px;
    padding-bottom: 0;
    background-color: var(--bg-color);
}

.banner-section img {
    max-width: 100%;    
    border-radius: 16px;
    box-shadow: 10 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: block;
    margin: 0 auto;
}

/* ------------------- */
/* Hero Section        */
/* ------------------- */
.hero {
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-logo {
    height: 80px;
    margin-bottom: 30px;
    object-fit: contain;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted-color);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-punchline {
    margin-top: 60px;
    background-color: #eaf2fe;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    padding: 10px 20px;
    display: inline-block;
    font-weight: 600;
    color: #3b82f6;
}

.hero .social-proof {
    margin-top: 80px;
}

.hero .social-proof p {
    color: #777;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    opacity: 0.5;
    filter: grayscale(100%);
}

/* ------------------- */
/* How It Works        */
/* ------------------- */
.how-it-works {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.step {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

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

/* ------------------- */
/* Tools Showcase      */
/* ------------------- */
.tools-showcase {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    animation: scroll 40s linear infinite;
}

.marquee-content.scroll-reverse {
    animation-direction: reverse;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* We define a single animation and use animation-direction to reverse it */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move the container by the width of its first child (the duplicated content) */
        transform: translateX(calc(-100% / 2));
    }
}

.tool-logo {
    flex-shrink: 0;
    height: 150px;
    width: 150px;
    object-fit: contain; /* Prevents images from stretching */
    margin: 0 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
}

.tool-logo:hover {
    transform: translateY(-3px);
    filter: grayscale(0%) opacity(1);
}

/* ------------------- */
/* Services Section    */
/* ------------------- */
.services {
    background-color: var(--bg-color);
}

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

.service-card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted-color);
    margin-bottom: 0;
}

/* ------------------- */
/* Why Choose Us Section */
/* ------------------- */
.why-choose-us {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Remove step number for this section */
.why-choose-us .step h3 {
    margin-top: 0;
}

/* ------------------- */
/* Testimonials Section*/
/* ------------------- */
.testimonials {
    background-color: var(--bg-color);
}

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

.testimonial-card {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
}

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

/* ------------------- */
/* FAQ Section         */
/* ------------------- */
.faq {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 750px;
    margin: 0 auto;
}

.faq-accordion details {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.faq-accordion summary {
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none; /* Remove default marker */
}

.faq-accordion summary::-webkit-details-marker {
    display: none; /* Hide for Chrome/Safari */
}

.faq-accordion details[open] summary {
    color: var(--primary-color);
}

.faq-accordion p {
    margin-top: 15px;
    color: var(--text-muted-color);
    line-height: 1.7;
}

/* ------------------- */
/* Final CTA & Footer  */
/* ------------------- */
.final-cta {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.main-footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted-color);
    border-top: 1px solid var(--border-color);
}

/* ------------------- */
/* Added: Pricing      */
/* ------------------- */
.pricing {
    background-color: var(--bg-color);
}

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

.pricing-grid.single-plan {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 0.5rem 0 1rem;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted-color);
}

.card-description {
    color: var(--text-muted-color);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.features-list li {
    padding-left: 1.2rem;
    position: relative;
    margin: 0.5rem 0;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ----------------------------- */
/* Added: Who-Is-This-For        */
/* ----------------------------- */
.who-is-this-for {
    background-color: var(--bg-color);
}

.who-is-this-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.who-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.who-card h3 {
    margin-top: 0;
}

/* ----------------------------- */
/* Minor: Section spacing tweaks */
/* ----------------------------- */
.pricing .section-title,
.who-is-this-for .section-title {
    margin-bottom: 0.75rem;
}

.pricing .section-subtitle,
.who-is-this-for .section-subtitle {
    margin-bottom: 2.5rem;
}
