/* OMMC Website - NEW Version */
/* Visual inspiration from www.ommc.co.uk - dark theme with lime green accents */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

/* Color Variables - OMMC Visual Theme */
:root {
    --primary-bg: #1a1a1a;
    --secondary-bg: #2a2a2a;
    --accent-green: #A4D65E;
    --accent-green-hover: #8BC34A;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #404040;
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-green: 0 4px 20px rgba(164, 214, 94, 0.2);
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.6;
}

.text-accent {
    color: var(--accent-green);
    font-weight: 600;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0 3rem 0;
    background-color: var(--primary-bg);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.row {
    display: grid;
    gap: 2rem;
    align-items: center;
}

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

.row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.row-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img {
    margin-right: 0.5rem;
    border-radius: 4px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.navbar-nav li {
    position: relative;
}

.navbar-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

.navbar-nav a:hover {
    color: var(--accent-green);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--accent-green);
    color: #000000;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
    
    .navbar-toggle {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background: var(--accent-green);
    color: #000000;
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(164, 214, 94, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    background: var(--accent-green);
    color: #000000;
    border: none;
    font-weight: 600;
}

.btn-small:hover {
    background: var(--accent-green-hover);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: var(--primary-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero .text-accent {
    color: var(--accent-green);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Cards */
.card {
    background: var(--secondary-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--accent-green);
}

.card h3 {
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.card-highlight {
    background: var(--accent-green);
    color: #000000;
    border: 2px solid var(--accent-green);
    box-shadow: 0 8px 32px rgba(164, 214, 94, 0.3);
}

.card-highlight h3 {
    color: #000000;
    font-weight: 700;
}

.card-highlight p {
    color: #000000;
}

.card-highlight .service-price {
    color: #000000;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Service Cards */
.service-card {
    background: var(--secondary-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--accent-green);
}

.service-card h3 {
    margin: 1rem 0;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-green);
    border-radius: 12px;
    color: #000000;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

/* Feature Icons - for Partner page and other feature sections */
.feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-green);
    border-radius: 8px;
    color: #000000;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.service-price {
    color: var(--accent-green);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1rem 0;
}

.service-card .btn {
    margin-top: auto;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Tables */
.table {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--secondary-bg);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: var(--accent-green);
    color: #000000;
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

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

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

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--secondary-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(164, 214, 94, 0.1);
}

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

/* Footer */
.footer {
    background: var(--secondary-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Case Study Layout */
.case-study-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.case-study-image {
    position: relative;
}

.case-study-content {
    padding: 1rem 0;
}

.case-study-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .case-study-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-image img {
        height: 300px !important;
    }
}

/* Company Timeline */
.company-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.company-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--accent-green);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.company-timeline-item {
    padding: 2rem 0;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.company-timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    top: 2.5rem;
}

.company-timeline-item:nth-child(odd) {
    left: 0;
}

.company-timeline-item:nth-child(even) {
    left: 50%;
}

.company-timeline-item:nth-child(even)::after {
    left: -8px;
}

.company-timeline-year {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
}

/* Desktop positioning for timeline years */
@media (min-width: 769px) {
    .company-timeline-item:nth-child(odd) .company-timeline-year {
        text-align: right;
        margin-right: 2rem;
    }
    
    .company-timeline-item:nth-child(even) .company-timeline-year {
        text-align: left;
        margin-left: 2rem;
    }
}

.company-timeline-content {
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.company-timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .company-timeline::after {
        left: 31px;
    }
    
    .company-timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .company-timeline-item::after {
        left: 23px;
    }
    
    .company-timeline-item:nth-child(even) {
        left: 0%;
    }
}
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}


/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* Feature Items - Inline Icons */
.feature-item {
    margin-bottom: 2rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item h4 {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

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



/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* Audit Benefits Styling */
.audit-benefits {
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-green);
}

.benefit-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    min-width: 2rem;
}

.benefit-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Stats Grid Styling */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-card .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Mobile responsiveness for stats grid */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 1rem 0.75rem;
    }
    
    .stat-card .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.8rem;
    }
    
    .benefit-item {
        padding: 0.5rem;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
}



/* Enhanced Pricing Table Styles */
.enhanced-pricing-table {
    background: var(--secondary-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    margin: 2rem 0;
}

.pricing-table-header {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 1.3fr 1.8fr;
    gap: 1rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1.5rem 1rem;
    align-items: center;
}

.pricing-table-row {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 1.3fr 1.8fr;
    gap: 1rem;
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    align-items: start;
}

.pricing-table-row:hover {
    background-color: rgba(164, 214, 94, 0.05);
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.pricing-table-row.pricing-highlight {
    background: linear-gradient(135deg, rgba(164, 214, 94, 0.1), rgba(164, 214, 94, 0.05));
    border: 2px solid var(--accent-green);
    position: relative;
}

.pricing-table-row.pricing-highlight::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--accent-green);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
}

.pricing-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.fee-col, .timeline-col, .savings-col {
    align-items: center;
    text-align: center;
}

.service-col h4 {
    color: var(--accent-green);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    padding-left: 0;
    line-height: 1.3;
}

.service-includes li:last-child {
    margin-bottom: 0;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-align: center;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

.timeline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.2;
}

.timeline-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

.savings {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.2;
}

.savings-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

.best-for-col p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

.best-for-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-table-header,
    .pricing-table-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-table-header {
        display: none; /* Hide header on mobile, use card-style layout */
    }
    
    .pricing-table-row {
        background: var(--secondary-bg);
        border-radius: 12px;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        padding: 1.5rem;
    }
    
    .pricing-col {
        margin-bottom: 1rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .pricing-col:last-child {
        margin-bottom: 0;
    }
    
    .fee-col, .timeline-col, .savings-col {
        align-items: flex-start;
        text-align: left;
    }
    
    .price, .timeline, .savings {
        text-align: left;
    }
    
    .price-note, .timeline-note, .savings-note {
        text-align: left;
    }
    
    .service-col::before {
        content: "Service & What's Included";
        font-weight: 700;
        color: var(--accent-green);
        font-size: 0.8rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .fee-col::before {
        content: "Fixed Fee";
        font-weight: 700;
        color: var(--accent-green);
        font-size: 0.8rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .timeline-col::before {
        content: "Timeline";
        font-weight: 700;
        color: var(--accent-green);
        font-size: 0.8rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .savings-col::before {
        content: "Typical Savings";
        font-weight: 700;
        color: var(--accent-green);
        font-size: 0.8rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .best-for-col::before {
        content: "Best For";
        font-weight: 700;
        color: var(--accent-green);
        font-size: 0.8rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        display: block;
    }
}


/* Enhanced Benefits Section */
.enhanced-benefits-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(164, 214, 94, 0.03), rgba(164, 214, 94, 0.01)),
                url('images/blueprint-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 16px;
    border: 1px solid rgba(164, 214, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.enhanced-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    z-index: 1;
}

.benefits-content,
.example-content {
    position: relative;
    z-index: 2;
}

.benefits-content h3 {
    color: var(--accent-green);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(164, 214, 94, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(164, 214, 94, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(164, 214, 94, 0.15);
}

.benefit-icon {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
    filter: grayscale(0.3);
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-text strong {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.example-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-content .example-box {
    background: linear-gradient(135deg, rgba(164, 214, 94, 0.15), rgba(164, 214, 94, 0.05));
    border: 2px solid var(--accent-green);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(164, 214, 94, 0.2);
}

.example-content .example-box h4 {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.example-content .example-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.example-content .example-box p:last-child {
    margin-bottom: 0;
}

.example-content .example-box strong {
    color: var(--accent-green);
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .enhanced-benefits-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        background-attachment: scroll;
    }
    
    .benefits-content h3 {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        font-size: 1.75rem;
        min-width: 2.5rem;
    }
    
    .benefit-text strong {
        font-size: 1rem;
    }
    
    .benefit-text span {
        font-size: 0.9rem;
    }
    
    .example-content .example-box {
        padding: 2rem 1.5rem;
    }
    
    .example-content .example-box h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .example-content .example-box p {
        font-size: 1rem;
    }
}


/* Enhanced Comparison Section */
.enhanced-comparison-section {
    margin-top: 3rem;
}

.comparison-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-intro p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-style: italic;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.comparison-column {
    background: var(--secondary-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contractor-column {
    border-color: rgba(220, 38, 127, 0.3);
}

.ommc-column {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(164, 214, 94, 0.05), rgba(164, 214, 94, 0.02));
}

.column-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.column-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contractor-column .column-header h3 {
    color: #dc267f;
}

.ommc-column .column-header h3 {
    color: var(--accent-green);
}

.column-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-item.negative {
    background: rgba(220, 38, 127, 0.1);
    border: 1px solid rgba(220, 38, 127, 0.2);
}

.comparison-item.positive {
    background: rgba(164, 214, 94, 0.1);
    border: 1px solid rgba(164, 214, 94, 0.2);
}

.comparison-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.comparison-item.negative:hover {
    box-shadow: 0 8px 25px rgba(220, 38, 127, 0.2);
}

.comparison-item.positive:hover {
    box-shadow: 0 8px 25px rgba(164, 214, 94, 0.2);
}

.item-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-content strong {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.item-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(164, 214, 94, 0.3);
    position: relative;
}

.vs-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-green), #ffffff);
    border-radius: 50%;
    z-index: -1;
}

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

.summary-box {
    background: linear-gradient(135deg, rgba(164, 214, 94, 0.1), rgba(164, 214, 94, 0.05));
    border: 2px solid var(--accent-green);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(164, 214, 94, 0.15);
}

.summary-box h4 {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.summary-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.summary-box p:last-child {
    margin-bottom: 0;
}

.summary-box strong {
    color: var(--accent-green);
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vs-divider {
        order: 2;
        min-height: auto;
        padding: 1rem 0;
    }
    
    .contractor-column {
        order: 1;
    }
    
    .ommc-column {
        order: 3;
    }
    
    .comparison-column {
        padding: 1.5rem;
    }
    
    .column-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .column-header h3 {
        font-size: 1.25rem;
    }
    
    .comparison-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .item-icon {
        font-size: 1.25rem;
        min-width: 1.75rem;
    }
    
    .item-content strong {
        font-size: 0.95rem;
    }
    
    .item-content span {
        font-size: 0.85rem;
    }
    
    .vs-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .summary-box {
        padding: 2rem 1.5rem;
    }
    
    .summary-box h4 {
        font-size: 1.25rem;
    }
    
    .summary-box p {
        font-size: 1rem;
    }
}


/* Enhanced CTA Section */
.section-cta {
    background: linear-gradient(135deg, rgba(164, 214, 94, 0.1), rgba(164, 214, 94, 0.05));
    border-top: 1px solid rgba(164, 214, 94, 0.2);
    border-bottom: 1px solid rgba(164, 214, 94, 0.2);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-header {
    margin-bottom: 3rem;
}

.cta-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary.btn-large {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
    color: #1a1a1a;
    border: none;
}

.btn-primary.btn-large:hover {
    background: linear-gradient(135deg, var(--accent-green-hover), var(--accent-green));
    box-shadow: 0 8px 25px rgba(164, 214, 94, 0.3);
}

.btn-secondary.btn-large {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.btn-secondary.btn-large:hover {
    background: var(--accent-green);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(164, 214, 94, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

.trust-indicators {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid rgba(164, 214, 94, 0.2);
    margin-top: 1rem;
}

.trust-item {
    text-align: center;
    min-width: 120px;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-header h2 {
        font-size: 2rem;
    }
    
    .cta-header p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 1.25rem 2rem;
    }
    
    .trust-indicators {
        gap: 2rem;
        flex-direction: column;
    }
    
    .trust-item {
        min-width: auto;
    }
    
    .trust-number {
        font-size: 1.75rem;
    }
    
    .trust-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cta-header h2 {
        font-size: 1.75rem;
    }
    
    .trust-indicators {
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
}


/* Contact Page Styles */
.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    background: var(--secondary-bg);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--accent-green);
    background: rgba(164, 214, 94, 0.05);
}

.video-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.video-icon svg {
    width: 32px;
    height: 32px;
    margin-left: 4px; /* Slight offset for play button visual balance */
}

.video-placeholder h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.video-placeholder > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.video-script {
    background: var(--primary-bg);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.video-script h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.video-script li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.video-script li:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-form {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--primary-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(164, 214, 94, 0.1);
}

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

.contact-info-card {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-info-card h3 {
    color: var(--accent-green);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-detail strong {
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--accent-green-hover);
}

.contact-detail span {
    color: var(--text-secondary);
    font-weight: 500;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-placeholder {
        padding: 2rem 1.5rem;
    }
    
    .video-icon {
        width: 60px;
        height: 60px;
    }
    
    .video-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .video-script {
        padding: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .contact-details {
        gap: 1.25rem;
    }
    
    .faq-item {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .video-placeholder {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.875rem;
    }
}


/* FAQ Page Styles */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-green);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 1.25rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-answer ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .faq-item {
        padding: 2rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
}


/* Blog Page Styles */
.coming-soon-content {
    max-width: 1200px;
    margin: 0 auto;
}

.coming-soon-text {
    padding-right: 2rem;
}

.coming-soon-text h3 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.coming-soon-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-preview {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
}

.preview-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.preview-title {
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.preview-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-post {
    padding: 1.25rem;
    background: var(--primary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.post-category {
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.post-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.post-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-signup {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content {
    background: var(--secondary-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.newsletter-content h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-icon {
    color: var(--accent-green);
    font-weight: 600;
    flex-shrink: 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form .form-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--primary-bg);
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form .form-input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(164, 214, 94, 0.1);
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    white-space: nowrap;
}

.form-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coming-soon-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .coming-soon-text h3 {
        font-size: 1.6rem;
    }
    
    .feature-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .blog-preview {
        padding: 1.5rem;
    }
    
    .newsletter-content {
        padding: 2rem;
    }
    
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .blog-preview {
        padding: 1.25rem;
    }
    
    .newsletter-content {
        padding: 1.5rem;
    }
    
    .newsletter-content h3 {
        font-size: 1.3rem;
    }
    
    .newsletter-content > p {
        font-size: 1rem;
    }
}


/* Partner Page Styles */
.work-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--primary-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.partnership-benefits-visual {
    background: var(--primary-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: fit-content;
}

.partnership-benefits-visual h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-highlight:last-child {
    margin-bottom: 0;
}

.benefit-highlight:hover {
    border-color: var(--accent-green);
    transform: translateX(4px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.highlight-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-step {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        align-self: center;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .partnership-benefits-visual {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .partnership-benefits-visual h3 {
        font-size: 1.3rem;
    }
    
    .benefit-highlight {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .highlight-icon {
        align-self: center;
    }
    
    .benefit-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        align-self: center;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .process-step {
        padding: 1.25rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .partnership-benefits-visual {
        padding: 1.5rem;
    }
    
    .partnership-benefits-visual h3 {
        font-size: 1.2rem;
    }
    
    .benefit-highlight {
        padding: 1rem;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
    }
    
    .highlight-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .benefit-item {
        padding: 0.75rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
}



/* Video Placeholder Styles */
.video-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.video-player-bg {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    z-index: 2;
}

.play-button {
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #45a049;
    transform: scale(1.1);
}

.video-timeline {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.timeline-bar {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-green);
    border-radius: 2px;
}

.video-time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: monospace;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 3;
}

.coming-soon-overlay h3 {
    color: var(--accent-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 300px;
}

.video-content {
    padding: 3rem 0 1rem 0;
    margin-top: 2rem;
}

.video-content h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.video-script {
    background: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
}

.video-script h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.video-script li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-placeholder {
        height: auto;
    }
    
    .video-player-bg {
        height: 300px;
    }
    
    .coming-soon-overlay h3 {
        font-size: 1.5rem;
    }
    
    .video-controls {
        bottom: 15px;
        left: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .play-button {
        width: 35px;
        height: 35px;
    }
}

