/* Reset and base styles */
:root {
    --primary: #0046ad;
    --primary-dark: #1d4ed8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --teal-50: #f0fdfa;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    z-index: 50;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    color: var(--primary);
    height: 2rem;
    width: 2rem;
}

.nav-brand span {
    font-size: 1.25rem;
    font-weight: bold;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gray-900);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
background-color: white;
  color: var(--primary);/* your primary blue */
  border: 2px solid  var(--primary);
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, var(--gray-50), var(--blue-50));
    padding: 8rem 0 6rem;
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 36rem;
    margin: 0 auto 2rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-teal {
    background: var(--teal-50);
}

/* How It Works */
.how-it-works {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .how-it-works {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.how-it-works h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

.feature p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.dashboard-preview {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.dashboard-preview img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.testimonial > p {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-initial {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--blue-100);
    color: var(--primary);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* About */
.about-content {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-content > p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.quote-box {
    background: var(--blue-50);
    padding: 2rem;
    border-radius: 0.5rem;
}

.quote-box p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
}

/* Lead Magnet */
.lead-magnet {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.email-form {
    display: flex;
    max-width: 28rem;
    margin: 1.5rem auto;
}

.email-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-right: 0;
    border-radius: 0.5rem 0 0 0.5rem;
    outline: none;
}

.email-form input:focus {
    border-color: var(--primary);
}

.email-form button {
    border-radius: 0 0.5rem 0.5rem 0;
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--gray-50);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gray-700);
}