:root {
    /* Brand Colors */
    --primary-color: rgb(0, 160, 70); /* Custom Green */
    --primary-hover: rgb(140, 210, 65); /* Light Green Hover */
    
    --accent-color: #E01E5A; /* Raspberry */
    --accent-blue: #36C5F0; /* Sky Blue */
    --accent-green: #2EB67D; /* Slack Green */
    --accent-yellow: #ECB22E; /* Yellow */

    /* UI Colors */
    --button-primary-bg: rgb(0, 160, 70);
    --button-primary-text: #ffffff;
    --button-primary-hover: rgb(140, 210, 65);

    --button-secondary-bg: #ffffff;
    --button-secondary-text: rgb(0, 160, 70);
    --button-secondary-border: rgb(0, 160, 70);
    
    --button-cta-bg: rgb(0, 160, 70); 
    --button-cta-hover: rgb(140, 210, 65);

    /* Backgrounds */
    --bg-color: #ffffff;
    --bg-secondary: #ffffff; /* Removed Beige */
    --bg-light: #f6f6f6;

    /* Text */
    --text-primary: #1d1c1d;
    --text-secondary: #616061;
    --text-inverted: #ffffff;

    /* Typography */
    --font-family-sans: 'Slack-Lato', 'appleLogo', sans-serif; /* Fallback stack */
    --font-family-heading: 'Larsseit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --border-radius: 4px;
    --nav-height: 80px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-primary);
}

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

a:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--button-primary-bg);
    color: var(--button-primary-text);
}

.btn-primary:hover {
    background-color: var(--button-primary-hover);
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

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

.btn-secondary:hover {
    background-color: rgba(74, 21, 75, 0.05);
    text-decoration: none;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.section-padding { padding: 80px 0; }

/* Navbar */
.navbar {
    background-color: #ffffff;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.navbar-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo a {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    margin: 0 2rem;
    list-style: none;
}

.navbar-links a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-links a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-actions .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-actions .nav-link:hover {
    color: var(--primary-hover);
}

.btn-white {
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.btn-white:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #fff;
    color: var(--text-primary);
    padding: 60px 0 40px;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links, .footer-social {
    display: flex;
    gap: 2rem;
}

.footer-links a, .footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: var(--container-width);
    margin: 40px auto 0;
    padding: 20px 20px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-secondary); /* Beige background */
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    max-width: 800px; /* Centered narrow column for impact */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Feature Grid */
.feature-grid {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.feature-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.grid-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eee;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.grid-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.grid-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: left;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.testimonial-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0;
}

/* Call To Action */
.call-to-action {
    background-color: var(--primary-color);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.call-to-action h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.call-to-action p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: var(--primary-color);
}

/* Pricing Table */
.pricing-table {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.pricing-table h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.plan {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.plan h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plan .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.plan ul {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.plan li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.plan .btn {
    width: 100%;
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.plan .btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Contact Page */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    text-align: left;
    margin-top: 2rem;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 21, 75, 0.1);
}
