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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

.text-large {
    font-size: 20px;
    line-height: 1.6;
}

.text-medium {
    font-size: 17px;
    line-height: 1.7;
}

.text-muted {
    color: #555555;
}

.text-small {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* ============================================ */
/* BUTTONS – UPDATED WITH !important FOR THEME */
/* ============================================ */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border: none !important;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease !important;
}

.btn-primary {
    background: #f7941d !important;
    color: #1a1a1a !important;
}

.btn-primary:hover {
    background: #e8850a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3) !important;
}

.btn-outline {
    background: transparent !important;
    color: #1a1a1a !important;
    border: 1px solid #1a1a1a !important;
}

.btn-outline:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* ============================================ */
/* OUTLINE BUTTON – BLACK BORDER */
/* ============================================ */
.btn-outline-black {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-black:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary-black,
.btn-outline-black {
    text-decoration: none !important;
}

.btn-primary-black:hover,
.btn-outline-black:hover {
    text-decoration: none !important;
}
/* ============================================ */
/* PRIMARY BUTTON – ORANGE TO BLACK ON HOVER */
/* ============================================ */
.btn-primary-black {
    display: inline-block;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    background: #f7941d;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-black:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
/* ============================================ */
/* SECTION – REMOVE ALL HORIZONTAL LINES */
/* ============================================ */
section {
    padding: 60px 0;
}

.section-hero {
    padding: 40px 0 60px 0;
}

.section-header {
    max-width: 950px;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    font-size: 20px;
    color: #555555;
}

.section-subhead {
    font-size: 18px;
    color: #555555;
    margin-top: -4px;
    margin-bottom: 16px;
}

/* ============================================ */
/* INDUSTRY CARDS – SECTION 4 */
/* ============================================ */
.industry-card {
    transition: all 0.3s ease !important;
    border-left: 3px solid #f7941d;
    background: #f8f8f8;
    border-radius: 0 4px 4px 0;
    padding: 24px;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08) !important;
}

.industry-card h4 a {
    color: #1a1a1a;
    text-decoration: none;
}

.industry-card h4 a:hover {
    color: #f7941d;
}

/* ============================================ */
/* INSIGHT CARDS – SECTION 6 */
/* ============================================ */
.insight-card {
    padding: 24px;
    background: #f8f8f8;
    border-radius: 4px;
    height: 100%;
    transition: all 0.3s ease !important;
}

.insight-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08) !important;
}

.insight-card .read-link {
    font-weight: 500;
    color: #f7941d;
    text-decoration: none;
}

.insight-card .read-link:hover {
    text-decoration: underline;
}

/* ============================================ */
/* FIELD NOTES – SECTION 8 */
/* ============================================ */
.field-note-item {
    padding: 20px;
    border-left: 3px solid #f7941d;
    background: #f8f8f8;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease !important;
}

.field-note-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

.field-note-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.field-note-item p {
    font-size: 15px;
    color: #555555;
}

.field-note-item .read-link {
    font-weight: 500;
    color: #f7941d;
    font-size: 14px;
    margin-top: 8px;
    display: inline-block;
}

/* ============================================ */
/* COMMITMENT GRID – SECTION 9 */
/* ============================================ */
.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
}

.commitment-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.commitment-item p {
    font-size: 15px;
    color: #555555;
}

/* ============================================ */
/* CTA SECTION – SECTION 10 */
/* ============================================ */
.cta-section {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 48px;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 18px;
    color: #555555;
    max-width: 650px;
    margin: 0 auto 16px auto;
}

/* ============================================ */
/* EXPERTISE GRID – SECTION 5 */
/* ============================================ */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.expertise-grid .expertise-item {
    padding: 16px;
    background: #f8f8f8;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
}

/* ============================================ */
/* PARTNERS GRID – SECTION 7 */
/* ============================================ */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    justify-content: center;
    padding: 16px 0;
}

.partners-grid .partner-name {
    font-size: 17px;
    font-weight: 500;
}

/* ============================================ */
/* FLIP CARDS – REMOVED / DISABLED */
/* ============================================ */
.flip-card {
    perspective: 1000px;
    height: 100%;
    min-height: 280px;
    border: none;
    border-radius: 0;
    background: transparent;
}

.flip-card .flip-front,
.flip-card .flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 4px;
}

.flip-card .flip-front {
    background: #ffffff;
    border: 1px solid #eaeaea;
    transform: rotateY(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.flip-card .flip-back {
    background: #1a1a1a;
    color: #ffffff;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background-size: cover;
    background-position: center;
}

.flip-card .flip-back h4 {
    color: #ffffff;
}

.flip-card .flip-back p {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card:hover .flip-front {
    transform: rotateY(-180deg);
}

.flip-card:hover .flip-back {
    transform: rotateY(0deg);
}

.flip-card .flip-content {
    width: 100%;
}

.flip-card .flip-content .text-color-primary {
    color: #f7941d;
}

.flip-card .flip-content .text-color-dark {
    color: #1a1a1a;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 1024px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .featured-insights-grid, .field-notes-grid {
        grid-template-columns: 1fr 1fr;
    }
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    .text-large {
        font-size: 17px;
    }
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .featured-insights-grid, .field-notes-grid {
        grid-template-columns: 1fr;
    }
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-section {
        padding: 32px 24px;
    }
    .flip-card {
        min-height: 220px;
    }
    .flip-card .flip-front,
    .flip-card .flip-back {
        position: relative;
        transform: none !important;
        backface-visibility: visible;
        height: auto;
        min-height: 200px;
    }
    .flip-card .flip-back {
        display: none;
    }
    .flip-card:hover .flip-front {
        transform: none;
    }
    .flip-card .flip-front {
        border: 1px solid #eaeaea;
        border-radius: 4px;
    }
    .flip-card .flip-back {
        border-radius: 0 0 4px 4px;
        margin-top: -2px;
        border: 1px solid #1a1a1a;
    }
    .flip-card .flip-back h4,
    .flip-card .flip-back p {
        color: #ffffff;
    }
    .flip-card .flip-back p {
        color: rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    .section-hero {
        padding: 24px 0 40px 0;
    }
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .expertise-grid .expertise-item {
        padding: 12px;
        font-size: 13px;
    }
    .btn-group {
        flex-direction: column;
    }
    .btn {
        text-align: center;
    }
}