/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Custom Properties - Consulting Grade Color Palette */
:root {
    /* Primary - Deep Navy (authority) */
    --primary-dark: #1a2b4a;
    --primary: #2c3e50;
    --primary-light: #34495e;

    /* Accent - Sophisticated Gold */
    --accent: #b8860b;
    --accent-light: #d4a017;
    --accent-dark: #8b6914;

    /* Neutrals */
    --text: #343a40;
    --text-light: #6c757d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border: #dee2e6;

    /* Semantic */
    --success: #28a745;
    --error: #dc3545;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

/* ========================================
   MAINTENANCE OVERLAY - Remove this section when ready
   ======================================== */
#maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.maintenance-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out;
}

.maintenance-icon {
    font-size: 80px;
    margin-bottom: 30px;
    color: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

.maintenance-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.maintenance-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.maintenance-subtitle {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: var(--accent-light) !important;
    margin-top: 10px;
}

.maintenance-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.maintenance-footer p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.maintenance-footer a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.maintenance-footer a:hover {
    color: var(--accent);
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .maintenance-content h1 {
        font-size: 2rem;
    }

    .maintenance-content p {
        font-size: 1rem;
    }

    .maintenance-icon {
        font-size: 60px;
    }
}
/* ======== END MAINTENANCE OVERLAY ======== */

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Serif Pro', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #1f6eef;
    color: #ffffff;
    text-align: center;
    padding: 10px 24px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.announcement-bar p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 100%;
}

.announcement-bar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.5rem;
    transition: opacity 0.3s ease;
}

.announcement-bar a:hover {
    opacity: 0.85;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    color: var(--text);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(26, 43, 74, 0.08);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 12px rgba(26, 43, 74, 0.12);
}

.navbar {
    padding: 0 24px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 80px;
    width: auto;
    margin-top: 14px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropbtn i {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(26, 43, 74, 0.12);
    z-index: 1;
    border-radius: 8px;
    top: calc(100% + 0.5rem);
    left: 0;
    border: 1px solid var(--border);
}

.dropdown-content a {
    color: var(--text);
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* CTA Buttons */
.cta-button {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--white);
    padding: 200px 0 120px;
    text-align: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.cta-button-main {
    background-color: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--accent);
    font-size: 1rem;
}

.cta-button-main:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.cta-button-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-free {
    background-color: var(--success);
    color: var(--white);
}

.badge-coming-soon {
    background-color: #6b7280;
    color: var(--white);
}

.badge-enterprise {
    background-color: var(--accent);
    color: var(--white);
}

/* Sections */
section {
    padding: 100px 0;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-dark);
}

.section-intro {
    font-size: 1.15rem;
    margin-bottom: 3.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    line-height: 1.7;
}

p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Product Cards - Homepage */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 43, 74, 0.15);
}

.product-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.product-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.product-card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.product-card > p {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    max-width: 100%;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

.product-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.product-link:hover {
    gap: 0.85rem;
    color: var(--accent);
}

/* Features Grid - Simplified Homepage */
.feature-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 43, 74, 0.15);
}

.feature-card-icon i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.feature-link:hover {
    gap: 0.85rem;
    color: var(--accent);
}

/* Value Propositions */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.value-prop {
    text-align: center;
    padding: 2rem;
}

.value-prop-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.value-prop-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-prop h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.value-prop p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-weight: 600;
}

.highlight-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Features Grid - Detailed Pages */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 43, 74, 0.12);
}

.feature-item i {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.feature-item p {
    margin-bottom: 0;
    color: var(--text-light);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-section {
    padding: 100px 0;
    background-color: var(--white);
}

.comparison-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem 2rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table td {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: var(--light-bg);
}

.comparison-table .feature-name {
    font-weight: 600;
    color: var(--primary-dark);
}

.comparison-table .check {
    color: var(--success);
    font-size: 1.25rem;
}

.comparison-table .enterprise-only {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.pricing-plan {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
}

.pricing-plan.featured {
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

.pricing-plan.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.pricing-plan ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

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

.pricing-plan ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 0.85rem;
}

/* Credibility Section */
.credibility-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.credibility-content {
    max-width: 700px;
    margin: 0 auto;
}

.credibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(26, 43, 74, 0.08);
    margin-bottom: 1.5rem;
}

.credibility-badge i {
    color: var(--accent);
    font-size: 1.25rem;
}

.credibility-badge span {
    font-weight: 600;
    color: var(--primary-dark);
}

.credibility-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.credibility-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.credibility-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.credibility-link:hover {
    gap: 0.85rem;
    color: var(--accent);
}

/* About Section */
.about {
    background-color: var(--light-bg);
}

/* Use Cases */
.use-cases {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.use-case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 43, 74, 0.12);
}

.use-case-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.use-case-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.use-case-item p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-section .cta-button-main {
    background-color: var(--accent);
    border-color: var(--accent);
}

.cta-section .cta-button-main:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* Feature Page Styles */
.feature-page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    margin-top: 60px;
}

.feature-hero-icon i {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.feature-page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-block;
    background-color: var(--success);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.features-detailed {
    padding: 100px 0;
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    margin-top: 60px;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
}

.blog-posts {
    padding: 100px 0;
}

.blog-post {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    border: 1px solid var(--border);
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-date, .post-category {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-date i, .post-category i {
    color: var(--primary);
}

.blog-post h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: left;
    color: var(--primary-dark);
}

.blog-post h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.blog-post h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.post-content {
    line-height: 1.8;
}

.post-content p {
    text-align: left;
    margin-bottom: 1.5rem;
    max-width: 100%;
    color: var(--text);
}

.post-intro {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    text-align: left;
    color: var(--text);
}

.post-cta {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Contact Form */
.contact {
    padding: 100px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group .optional {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.85rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* Enterprise Page Styles */
.enterprise-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 160px 0 120px;
    text-align: center;
    margin-top: 60px;
}

.enterprise-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.enterprise-section {
    padding: 100px 0;
}

.enterprise-section:nth-child(even) {
    background-color: var(--light-bg);
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.enterprise-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enterprise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 43, 74, 0.12);
}

.enterprise-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.enterprise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.enterprise-card p {
    text-align: left;
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Engagement Model */
.engagement-model {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.engagement-step {
    text-align: center;
    position: relative;
}

.engagement-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -1rem;
    width: calc(100% - 70px);
    height: 2px;
    background: var(--border);
}

.engagement-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}

.engagement-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

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

/* Placeholder Section for Case Studies */
.placeholder-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.placeholder-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.placeholder-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px dashed var(--border);
    text-align: center;
}

.placeholder-card i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 1rem;
}

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

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 160px 0 120px;
    text-align: center;
    margin-top: 60px;
}

.about-content {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    text-align: left;
    max-width: 100%;
}

.about-highlights {
    display: grid;
    gap: 1.5rem;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.about-highlight i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.25rem;
}

.about-highlight h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.about-highlight p {
    margin-bottom: 0;
    font-size: 0.9rem;
    text-align: left;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: left;
}

.footer-links h4,
.footer-products h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.footer-links ul,
.footer-products ul {
    list-style: none;
}

.footer-links ul li,
.footer-products ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a,
.footer-products ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover,
.footer-products ul li a:hover {
    color: var(--accent);
}

.footer-social a {
    color: var(--white);
    font-size: 1.35rem;
    margin-right: 1.25rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--text);
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .engagement-model {
        grid-template-columns: repeat(2, 1fr);
    }

    .engagement-step::after {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        padding: 8px 16px;
    }

    .announcement-bar p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 4px 12px rgba(26, 43, 74, 0.1);
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 1.5rem;
    }

    .hamburger {
        display: block;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: var(--light-bg);
        margin-top: 0;
        border: none;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .feature-page-hero h1 {
        font-size: 2.25rem;
    }

    .product-grid,
    .feature-grid-simple {
        grid-template-columns: 1fr;
    }

    .value-props {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-highlights {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .pricing-plan.featured {
        transform: scale(1);
    }

    .blog-hero h1 {
        font-size: 2.25rem;
    }

    .blog-post {
        padding: 2rem;
    }

    .blog-post h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 70px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo p,
    .footer-links ul li a,
    .footer-products ul li a {
        text-align: center;
    }

    .engagement-model {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.85rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-main,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }

    h2 {
        font-size: 1.85rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .feature-item,
    .use-case-item,
    .product-card {
        padding: 1.75rem;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}
