/* ===========================
   FORNAXM Website Styles
   =========================== */

/* CSS Variables - Color Palette */
:root {
    --deep-space-blue: #1A365D;
    --cosmic-gold: #D4AF37;
    --pure-white: #FFFFFF;
    --soft-gray: #F7FAFC;
    --steel-blue: #4A5568;
    --light-gold: #F6E05E;
    --dark-blue: #0F2942;
    --border-gray: #E2E8F0;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition-smooth: all 0.3s ease;
    --shadow-card: 0 4px 6px rgba(26, 54, 93, 0.1);
    --shadow-hover: 0 10px 20px rgba(26, 54, 93, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--steel-blue);
    background-color: var(--pure-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
    color: var(--deep-space-blue);
}

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

/* Navigation */
.navbar {
    background-color: var(--pure-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-space-blue);
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-menu a {
    color: var(--steel-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--cosmic-gold);
}

.nav-cta {
    background-color: var(--cosmic-gold);
    color: var(--pure-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background-color: var(--deep-space-blue);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--deep-space-blue);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--deep-space-blue) 0%, var(--dark-blue) 100%);
    opacity: 0.03;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--cosmic-gold) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-headline {
    font-size: 3rem;
    color: var(--deep-space-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.125rem;
    color: var(--steel-blue);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--cosmic-gold);
    color: var(--pure-white);
}

.btn-primary:hover {
    background-color: var(--deep-space-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--deep-space-blue);
    border-color: var(--deep-space-blue);
}

.btn-secondary:hover {
    background-color: var(--deep-space-blue);
    color: var(--pure-white);
    transform: translateY(-2px);
}

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

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--deep-space-blue);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--cosmic-gold);
    margin: 1rem auto 0;
}

/* Expertise Section */
.expertise {
    padding: 6rem 0;
    background-color: var(--pure-white);
}

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

.expertise-card {
    background-color: var(--pure-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-gray);
}

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

.expertise-icon {
    color: var(--cosmic-gold);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-space-blue);
}

.expertise-card p {
    color: var(--steel-blue);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background-color: var(--soft-gray);
}

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

.why-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Proof Points */
.proof-points {
    padding: 6rem 0;
    background-color: var(--pure-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cosmic-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-space-blue);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--steel-blue);
}

/* Work Preview */
.work-preview {
    padding: 6rem 0;
    background-color: var(--soft-gray);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.work-card {
    background-color: var(--pure-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.work-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-space-blue);
}

.work-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: var(--steel-blue);
}

.work-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.work-tag {
    background-color: var(--soft-gray);
    color: var(--deep-space-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.work-link {
    color: var(--cosmic-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.work-link:hover {
    color: var(--deep-space-blue);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-space-blue) 0%, var(--dark-blue) 100%);
    color: var(--pure-white);
}

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

.cta-content h2 {
    color: var(--pure-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-secondary {
    margin-top: 1.5rem;
    font-size: 1rem;
}

.cta-link {
    color: var(--cosmic-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.cta-link:hover {
    color: var(--light-gold);
}

.cta-divider {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 1rem;
}

/* Footer */
.footer {
    background-color: var(--deep-space-blue);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    color: var(--cosmic-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--cosmic-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--cosmic-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-grid,
    .newsletter-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--pure-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-card);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    h2, .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .expertise-card,
    .work-card,
    .newsletter-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Page Hero (for interior pages) */
.page-hero {
    background: linear-gradient(135deg, var(--deep-space-blue) 0%, var(--dark-blue) 100%);
    color: var(--pure-white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--pure-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero .hero-subtext {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
    background-color: var(--soft-gray);
}

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

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-gray);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: var(--pure-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cosmic-gold);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    background-color: var(--pure-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--deep-space-blue);
}

.contact-method {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-gray);
}

.contact-method:last-of-type {
    border-bottom: none;
}

.contact-method h4 {
    color: var(--deep-space-blue);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: var(--cosmic-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-method a:hover {
    color: var(--deep-space-blue);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--steel-blue);
    font-style: italic;
}

.contact-cta-box {
    background-color: var(--soft-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-cta-box h4 {
    color: var(--deep-space-blue);
    margin-bottom: 0.75rem;
}

.contact-cta-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Page Styles */
.about-intro {
    padding: 6rem 0;
    background-color: var(--pure-white);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

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

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-highlights {
    padding: 6rem 0;
    background-color: var(--soft-gray);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-card {
    background-color: var(--pure-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.highlight-card h3 {
    color: var(--cosmic-gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--steel-blue);
    margin-bottom: 0;
}

.about-values {
    padding: 6rem 0;
    background-color: var(--pure-white);
}

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

.value-item {
    margin-bottom: 3rem;
}

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

.value-item h3 {
    color: var(--deep-space-blue);
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Responsive adjustments for new pages */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.25rem;
    }
    
    .contact-section {
        padding: 4rem 0;
    }

    .contact-info {
        padding: 2rem;
    }

    .newsletter-page-subscribe {
        padding: 2rem;
    }
}

/* Case Study Styles */
.case-study {
    padding: 6rem 0;
    background-color: var(--pure-white);
}

.case-study.alt-bg {
    background-color: var(--soft-gray);
}

.case-study-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.case-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.case-tag {
    background-color: var(--soft-gray);
    color: var(--deep-space-blue);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.case-study.alt-bg .case-tag {
    background-color: var(--pure-white);
}

.case-study-header h2 {
    font-size: 2.5rem;
    color: var(--deep-space-blue);
    margin-bottom: 1rem;
}

.case-subtitle {
    font-size: 1.25rem;
    color: var(--steel-blue);
    font-weight: 400;
}

.case-study-content {
    max-width: 900px;
    margin: 0 auto;
}

.case-section {
    margin-bottom: 3rem;
}

.case-section:last-child {
    margin-bottom: 0;
}

.case-section h3 {
    font-size: 1.75rem;
    color: var(--deep-space-blue);
    margin-bottom: 1.5rem;
}

.case-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.case-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.case-section li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--steel-blue);
}

.case-section em {
    display: block;
    font-size: 1.25rem;
    color: var(--deep-space-blue);
    font-style: italic;
    padding: 1.5rem;
    background-color: var(--soft-gray);
    border-left: 4px solid var(--cosmic-gold);
    margin: 2rem 0;
}

.case-study.alt-bg .case-section em {
    background-color: var(--pure-white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--soft-gray);
    border-radius: 8px;
}

.case-study.alt-bg .impact-item {
    background-color: var(--pure-white);
}

.impact-stat {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cosmic-gold);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-space-blue);
    margin-bottom: 0.75rem;
}

.impact-item p {
    font-size: 0.95rem;
    color: var(--steel-blue);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .case-study-header h2 {
        font-size: 2rem;
    }
    
    .case-subtitle {
        font-size: 1.125rem;
    }
    
    .case-section h3 {
        font-size: 1.5rem;
    }
    
    .case-section p,
    .case-section li {
        font-size: 1rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-stat {
        font-size: 2.5rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background-color: var(--pure-white);
}

.newsletter-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.newsletter-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--steel-blue);
    margin-bottom: 1.5rem;
}

.newsletter-subscribe-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.newsletter-card {
    background-color: var(--pure-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-gray);
}

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

.newsletter-card-date {
    font-size: 0.875rem;
    color: var(--cosmic-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-card h3 {
    font-size: 1.25rem;
    color: var(--deep-space-blue);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.newsletter-card h3 a {
    color: var(--deep-space-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.newsletter-card h3 a:hover {
    color: var(--cosmic-gold);
}

.newsletter-card p {
    flex-grow: 1;
    color: var(--steel-blue);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.newsletter-card-link {
    color: var(--cosmic-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.newsletter-card-link:hover {
    color: var(--deep-space-blue);
}

.newsletter-view-all {
    text-align: center;
    margin-top: 2.5rem;
}

.newsletter-loading {
    text-align: center;
    padding: 3rem;
    color: var(--steel-blue);
    grid-column: 1 / -1;
}

/* Newsletter Page Styles */
.newsletter-page-content {
    padding: 6rem 0;
    background-color: var(--soft-gray);
}

.newsletter-page-subscribe {
    background-color: var(--pure-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    border: 1px solid var(--border-gray);
}

.newsletter-page-subscribe h2 {
    font-size: 2rem;
    color: var(--deep-space-blue);
    margin-bottom: 1rem;
}

.newsletter-page-subscribe p {
    font-size: 1.125rem;
    color: var(--steel-blue);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.newsletter-page-subscribe .substack-embed-wrapper {
    margin: 2rem auto 0;
    max-width: 480px;
}

.newsletter-page-subscribe .substack-embed-wrapper iframe {
    border-radius: 8px;
    border: 1px solid var(--border-gray) !important;
}

.newsletter-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Expertise Detail Page Styles */
.expertise-detail {
    padding: 0;
}

.expertise-detail-item {
    padding: 6rem 0;
    background-color: var(--pure-white);
}

.expertise-detail-item.alt-bg {
    background-color: var(--soft-gray);
}

.expertise-detail-item .container {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
}

.expertise-detail-icon {
    color: var(--cosmic-gold);
    padding-top: 0.5rem;
}

.expertise-detail-content h2 {
    font-size: 2rem;
    color: var(--deep-space-blue);
    margin-bottom: 1rem;
}

.expertise-lead {
    font-size: 1.25rem;
    color: var(--steel-blue);
    margin-bottom: 2rem;
    font-weight: 500;
}

.expertise-detail-content h3 {
    font-size: 1.25rem;
    color: var(--deep-space-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.expertise-detail-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.expertise-detail-content ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.expertise-detail-content li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--steel-blue);
}

.expertise-detail-content li strong {
    color: var(--deep-space-blue);
}

/* How I Work Section */
.how-i-work {
    padding: 6rem 0;
    background-color: var(--pure-white);
}

.work-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cosmic-gold);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--deep-space-blue);
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    color: var(--steel-blue);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .expertise-detail-item .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-detail-icon {
        text-align: center;
    }
    
    .work-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-detail-item {
        padding: 4rem 0;
    }
    
    .expertise-detail-content h2 {
        font-size: 1.75rem;
    }
    
    .expertise-lead {
        font-size: 1.125rem;
    }
    
    .expertise-detail-content p,
    .expertise-detail-content li {
        font-size: 1rem;
    }
    
    .work-process {
        grid-template-columns: 1fr;
    }
    
    .process-number {
        font-size: 2.5rem;
    }
}
