:root {
    /* Palette */
    --primary-color: #FF7A5A; /* Coral Orange */
    --primary-hover: #E56040;
    --secondary-color: #FFB457; /* Warm Honey */
    
    --accent-violet: #7F5CFF;
    --accent-blue: #57D2FF;
    --accent-green: #5EF2A5;
    
    --background-color: #F7F9FA; /* Clean white/off-white */
    --surface-color: #FFFFFF; /* White for cards */
    
    --text-color: #111417; /* Charcoal */
    --text-light: #5F6D7E;
    
    --border-color: #E5E7EB;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    
    --radius: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .logo, .btn {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 122, 90, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--surface-color);
    border-color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--surface-color);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    color: var(--text-light);
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Hero Visual (Mockup) */
.hero-visual {
    margin-top: 40px;
    perspective: 1000px;
}

.mockup-container {
    max-width: 900px;
    margin: 0 auto;
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-container:hover {
    transform: rotateX(0deg);
}

.mockup-window {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-color);
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background: #f3f4f6;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: var(--primary-color); }
.dot.yellow { background: var(--secondary-color); }
.dot.green { background: var(--accent-green); }

.mockup-body {
    flex: 1;
    display: flex;
    background: #fff;
}

.sidebar {
    width: 200px;
    background: #f9fafb;
    border-right: 1px solid var(--border-color);
}

.main-content {
    flex: 1;
    padding: 24px;
}

.skeleton-header {
    height: 32px;
    width: 40%;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 24px;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.skeleton-card {
    height: 120px;
    background: #f3f4f6;
    border-radius: 8px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.problem-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-color);
}

.problem-item .icon {
    font-size: 1.5rem;
}

.problem-item p {
    font-size: 1.1rem;
}

.problem-solution {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

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

.feature-card {
    padding: 32px;
    border-radius: 16px;
    background: white;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card:nth-child(1) .feature-icon { color: var(--primary-color); }
.feature-card:nth-child(2) .feature-icon { color: var(--accent-violet); }
.feature-card:nth-child(3) .feature-icon { color: var(--accent-blue); }
.feature-card:nth-child(4) .feature-icon { color: var(--accent-green); }

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
}

.feature-card ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How It Works */
.how-it-works-section {
    padding: 100px 0;
    background-color: var(--surface-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1;
}

.step:nth-child(1) .step-number { color: var(--primary-color); opacity: 0.4; }
.step:nth-child(2) .step-number { color: var(--accent-violet); opacity: 0.4; }
.step:nth-child(3) .step-number { color: var(--accent-blue); opacity: 0.4; }
.step:nth-child(4) .step-number { color: var(--accent-green); opacity: 0.4; }

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

/* Social Proof */
.social-proof-section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.social-proof-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.social-proof-section p {
    font-size: 1.4rem;
    color: var(--text-light);
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    max-width: 400px;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.testimonial .author {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: white;
    box-shadow: var(--shadow-sm);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px; /* Ensure it doesn't get too squashed on mobile */
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.pricing-table th {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 30px;
    vertical-align: top;
    position: relative;
}

.pricing-table th.feature-header {
    text-align: left;
    vertical-align: bottom;
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 700;
    padding-bottom: 20px;
}

.pricing-table th h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-table .price-container {
    margin-bottom: 20px;
    height: 60px; /* Fixed height to align buttons */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-table .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
}

.pricing-table .price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-table .feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    width: 20%;
}

.pricing-table td {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-table .check {
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: bold;
}

.pricing-table .dash {
    color: #ccc;
    font-size: 1.2rem;
}

.pricing-table .sub-text {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

/* Featured Column Styling */
.pricing-table th.featured-col {
    background-color: #FFF9F5; /* Very light orange tint */
}

.pricing-table th.featured-col .badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Highlight the featured column cells as well if desired, 
   but usually just the header is enough or a border. 
   Let's add a border to the featured column. */
.pricing-table th.featured-col,
.pricing-table td:nth-child(5) {
    background-color: #FFF9F5;
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
}

.pricing-table th.featured-col {
    border-top: 4px solid var(--primary-color); /* Top highlight */
    border-bottom: 1px solid var(--border-color); /* Reset bottom border */
}

.pricing-table tr:last-child td:nth-child(5) {
    border-bottom: 1px solid var(--primary-color);
    border-bottom-left-radius: 0; /* Table radius handles corners */
    border-bottom-right-radius: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-table-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .pricing-table th, 
    .pricing-table td {
        padding: 15px 10px;
    }
}

.features-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
}

/* Founder Note */
.founder-note-section {
    padding: 80px 0;
    background-color: var(--surface-color);
}

.note-content {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.note-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.note-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.signature {
    font-weight: 600;
    color: var(--primary-color);
}

/* Final CTA */
.final-cta-section {
    padding: 100px 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: #f9fafb;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 24px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none; /* Simple hide for mobile for this MVP */
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0 80px;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.legal-content .last-updated {
    color: var(--text-light);
    margin-bottom: 48px;
    font-size: 0.9rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 24px;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 8px;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s;
}

.toggle-label.active {
    color: var(--text-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.save-badge {
    background-color: #DEF7EC;
    color: #03543F;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Pricing Updates */
.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4px;
    display: block;
}

.price-container {
    margin: 20px 0;
}

.pricing-card .price {
    margin: 0; /* Reset margin since it's in container now */
}
