/* landing-styles.css */

/* ---=== Variables & Base ===--- */
:root {
    --primary-color: #007bff; /* Blue */
    --primary-dark: #0056b3;
    --secondary-color: #6c757d; /* Gray */
    --secondary-dark: #5a6268;
    --accent-color: #fd7e14; /* Orange accent */
    --light-bg: #f8f9fa;
    --white-bg: #ffffff;
    --text-dark: #212529;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.07);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust for fixed navbar height */
}

body {
    font-family: var(--font-family);
    background-color: var(--white-bg);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
}

.text-center {
    text-align: center;
}

/* ---=== Buttons ===--- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-bg);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.btn-secondary {
    background-color: var(--white-bg);
    color: var(--primary-color);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--light-bg);
    border-color: var(--secondary-color);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.free-tries-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  margin: 10px 0 14px;
  background: rgba(0,0,0,0.03);
}

.free-tries-counter strong {
  font-weight: 700;
}

.free-tries-counter.hidden {
  display: none;
}

/* ---=== Navbar ===--- */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
}
.logo svg {
    margin-right: 0.5rem;
    color: var(--primary-color);
}
.logo:hover {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-dark);
}
.nav-links a:hover::after, .nav-links a.active::after {
     width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-actions .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* Add mobile menu styles later if needed */


/* ---=== Hero Section ===--- */
.hero {
    padding: 100px 0 80px 0;
    background: linear-gradient(180deg, rgba(248,249,250,0.5) 0%, rgba(255,255,255,1) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

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

/* ---=== What We Check For Section ===--- */
.checks-grid {
    display: grid;
    /* Adjust columns for desired layout */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; /* Adjust gap */
    margin-top: 4rem;
}

.check-item {
    background-color: var(--white-bg); /* Or remove if section-alt provides bg */
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center; /* Center content */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* Add hover effect if desired */
 .check-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
} 

.launch-special-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #27ae60; /* A nice, positive green */
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-weight: 500;
}

.launch-special-banner p {
    margin: 0;
    font-size: 0.9em;
}

/* Adjust body padding to prevent content from hiding under the banner */
body {
    padding-top: 50px; /* Adjust this value if the banner height changes */
}

@media (max-width: 480px) {
    .launch-special-banner p {
        font-size: 0.85em;
    }
    body {
        padding-top: 45px;
    }
}

.check-icon {
    font-size: 2rem; /* Adjust emoji size */
    margin-bottom: 0.75rem;
    line-height: 1; /* Prevent extra space from emoji line height */
}

.check-title {
    font-size: 1.1rem; /* Smaller title than benefits */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.check-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive adjustments if needed */
@media (max-width: 576px) {
    .checks-grid {
         grid-template-columns: 1fr; /* Single column on small screens */
    }
}


.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-visual {
    flex: 1;
    max-width: 50%;
}
.hero-visual video {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    border: 1px solid var(--border-color);
    display: block;
    max-width: 100%;
}


/* ---=== Benefits Section ===--- */
#benefits {
    background-color: var(--white-bg);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background-color: var(--white-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.benefit-icon {
    font-size: 2.5rem; /* Use emojis or SVGs */
    margin-bottom: 1rem;
    /* Optional: Style icons with background */
    /* background-color: rgba(0, 123, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center; */
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}


/* ---=== Features Section ===--- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    font-size: 1.8rem; /* Emojis */
    margin-top: 0.2rem;
     /* Optional background */
    background-color: rgba(0, 123, 255, 0.1);
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}


/* ---=== Testimonials Section ===--- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    position: relative; /* For quote marks potentially */
    text-align: center;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    border: 3px solid var(--white-bg);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.testimonial-text::before { content: '“'; font-size: 2em; color: var(--primary-color); opacity: 0.5; margin-right: 0.2em; }
.testimonial-text::after { content: '”'; font-size: 2em; color: var(--primary-color); opacity: 0.5; margin-left: 0.2em; }


.testimonial-author {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

/* ---=== Integrations Section ===--- */
.integrations-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.integrations-logos:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.integrations-logos img {
    height: 40px; /* Adjust as needed */
    max-width: 120px;
    object-fit: contain;
}

/* ================================
   SEO Content Block Styling
   ================================ */

#seo-content {
  /* layout */
  max-width: 980px;
  margin: 3rem auto;
  padding: 2rem 2rem;

  /* card look */
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  /* typography */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111827;
}

#seo-content h2 {
  margin: 1.75rem 0 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: 1.6rem;
}

/* Make the first heading feel like the section title */
#seo-content h2:first-of-type {
  margin-top: 0;
  font-size: 2.2rem;
}

#seo-content p {
  margin: 0.75rem 0;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #1f2937;
}

#seo-content ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

/* Nice “bullet” rows */
#seo-content li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
  color: #1f2937;
}

#seo-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.9); /* accent */
}

/* Link styling */
#seo-content a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  margin-top: 0.75rem;
  font-weight: 700;
  text-decoration: none;

  color: #2563eb;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);

  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

/* little arrow */
#seo-content a::after {
  content: "→";
  font-weight: 800;
}

#seo-content a:hover {
  transform: translateY(-1px);
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.28);
}

/* Mobile tweaks */
@media (max-width: 640px) {
  #seo-content {
    margin: 2rem 1rem;
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }

  #seo-content h2:first-of-type {
    font-size: 1.8rem;
  }

  #seo-content h2 {
    font-size: 1.35rem;
  }

  #seo-content p {
    font-size: 1rem;
  }
}


/* ---=== Pricing Section ===--- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch; /* Make cards same height */
}

.pricing-card {
    background-color: var(--white-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative; /* For highlight badge */
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.pricing-card.highlighted {
    border-color: var(--primary-color);
    border-width: 2px;
    transform: scale(1.03); /* Slightly larger */
    box-shadow: var(--box-shadow-lg);
}
.highlight-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white-bg);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 15px;
}


.plan-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}
.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 40px; /* Align descriptions */
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1; /* Push button to bottom */
}
.plan-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}
.plan-features li::before {
    content: '✓'; /* Checkmark */
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.pricing-card .btn {
    margin-top: auto; /* Push button to bottom */
}

/* ---=== FAQ Section ===--- */
.faq-container {
    max-width: 800px; /* Narrower container for FAQ */
}

.faq-accordion {
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    background-color: var(--white-bg);
    overflow: hidden; /* Needed for border radius on open */
}

.faq-item summary {
    display: block; /* Make it block to use custom arrow */
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    position: relative;
    list-style: none; /* Remove default marker */
    transition: background-color 0.2s ease;
}
.faq-item summary:hover {
    background-color: #f8f9fa;
}

.faq-item summary::-webkit-details-marker { display: none; } /* Hide default arrow */

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.faq-item[open] summary {
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 1.5rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-color); /* Add separator only when open */
    margin: 0; /* Reset paragraph margin */
}
.faq-item[open] p {
     border-top: none; /* Remove top border from summary instead */
}


/* ---=== Final CTA Section ===--- */
.cta-final {
    background-color: var(--primary-color);
    color: var(--white-bg);
}
.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white-bg);
    margin-bottom: 1rem;
}
.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 2rem auto;
}
.cta-final .btn-primary { /* Style button for dark background */
    background-color: var(--white-bg);
    color: var(--primary-color);
    border-color: var(--white-bg);
}
.cta-final .btn-primary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ---=== Footer ===--- */
.footer {
    background-color: var(--text-dark);
    color: #adb5bd; /* Lighter gray for footer text */
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-about .logo {
    color: var(--white-bg);
    margin-bottom: 1rem;
}
.footer-about p {
    margin-top: 0.5rem;
    max-width: 250px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white-bg);
    margin-bottom: 1rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #adb5bd;
}
.footer-links a:hover {
    color: var(--white-bg);
    text-decoration: underline;
}

.footer-social h4 { /* Re-use heading style */
    font-size: 1rem;
    font-weight: 600;
    color: var(--white-bg);
    margin-bottom: 1rem;
}
.footer-social a {
    color: #adb5bd;
    margin-right: 1rem;
    display: inline-block; /* Ensure spacing */
    transition: color 0.2s ease;
}
.footer-social a:hover {
    color: var(--white-bg);
}
.footer-social svg { /* Placeholder for icons */
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #495057; /* Darker border */
    font-size: 0.85rem;
    color: #6c757d; /* Medium gray */
}

/* ---=== Responsive Adjustments ===--- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 3rem;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        align-items: center;
    }
    .hero-visual {
        max-width: 70%; /* Allow visual to be larger */
        margin: 0 auto;
    }
    .section-title { font-size: 2.2rem; }
    .hero-title { font-size: 3rem; }
}


@media (max-width: 768px) {
    .nav-links { display: none; } /* Hide links, implement mobile menu later */
    .nav-actions .btn-secondary { display: none; } /* Hide secondary login btn */
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    .faq-item summary, .faq-item p { padding: 1rem; }
    .faq-item summary::after { right: 1rem; }
}

@media (max-width: 576px) {
    .container { padding: 0 1rem; }
    .section-title { font-size: 1.8rem; }
     .hero-title { font-size: 2.2rem; }
    .hero-visual { max-width: 90%; }
    .hero-visual video {
        width: 100%;
    }
    .benefits-grid, .features-grid, .testimonials-grid, .pricing-grid {
         grid-template-columns: 1fr; /* Single column */
    }
    .btn { width: 100%; display: block; margin-bottom: 0.5rem;}
    .btn-lg { font-size: 1rem; padding: 0.8rem 1.5rem;}
    .nav-actions .btn-primary { width: auto; display: inline-block; } /* Fix Get Started btn */
    .footer-container { text-align: center; }
    .footer-about p { margin: 0.5rem auto 0 auto; }
}
