/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-size: 16px;
}

/* Accessibility and Screen Reader Support */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.pb-1 {
    padding-bottom: 2rem !important;
    display: block;
}


/* First Section Styles */

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

h1,
h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Third Section Styles */

.section-title {
    font-size: 2rem;
    text-align: center;
    display: block;
    color: #9d2e9d;
    margin-bottom: 3rem;
    font-weight: 500;
}

.final-cta-title {
    font-size: 2rem;
    color: --var(--color-brand-primary);
    margin-bottom: 3rem !important;
    margin-bottom: 1.5rem !important;
    font-weight: 500;
}

/* Lending Journey Section Styles */

ul {
    width: 100%;
    list-style-type: none;
    /* Remove default bullets for all <ul> */
    padding-left: 0;
    /* Reset padding */
    margin: 0;
}

ul>li {
    position: relative;
    padding-left: 20px;
    /* Indent for custom bullet */
    margin-bottom: 10px;
}

ul>li:before {
    /* content: "•"; Single bullet */
    position: absolute;
    left: 0;
    /* Align bullet with the text */
    color: #40B3A2;
    
    /* Custom color for the bullet */
    font-size: 1.2em;
    /* Adjust size if needed */
}

ul ul>li {
    padding-left: 30px;
    /* Additional indent for nested items */
    margin-bottom: 5px;
    /* Reduce spacing for nested items */
}

ul ul>li:before {
    left: 0 !important;
    /* Align dash */
    color: #40B3A2;
    font-size: 1em;
}

/* Individual Card Styling */

/* FAQ Section Styles */
.faq-section-class {
    display: none;
}

/* Attach this label after review in each page */
.faq-section-class.faqs-visible {
    display: block;
}

.main-section .faq-section-class h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    text-align: center;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--surface-color);
    box-shadow: 0 2px 4px var(--shadow-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-color);
    opacity: 0.9;
}

.faq-question:focus {
    background-color: rgba(64, 179, 162, 0.1);
    outline: none;
}

.faq-question-text {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #40B3A2;
    font-size: 0.9rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-color);
}

.faq-answer-content {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6rem;
    color: var(--text-secondary);
}

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

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

.faq-answer-content ol {
    margin: 1rem;
    counter-reset: faq-counter;
    list-style: none;
    padding-left: 0;
}

.faq-answer-content ol li {
    counter-increment: faq-counter;
    position: relative;
    padding-left: 2rem;
}

.faq-answer-content ol li::before {
    content: counter(faq-counter) ".";
    position: absolute;
    left: 0;
    color: #40B3A2;
    font-weight: 600;
}

.faq-answer-content ul {
    margin: 1rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content ul li {
    padding-left: 2rem;
}

.faq-answer-content ul li:before {
    content: "•";
    color: #40B3A2;
    font-size: 1.5em;
    display: inline-block;
    width: 1em;
}

/* Problem Solution Section */

.solution-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quote {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Industry Challenges Section */

.emphasis-text {
    color: #FF7F00;
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(255, 127, 0, 0.2);
}

/* About You Section */

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: -2em;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Deliver Section */

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    text-align: center;
}

.emphasis-text2 {
    color: var(--accent-color) !important;
    font-weight: 600;
    font-size: 1.2rem !important;
    padding-top: 1rem;
}

/* Hero Section Styles */
.hero-section {
    min-height: 90vh;
    padding: 1rem 2rem 2rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--bg-color) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    position: relative;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.dashboard-image {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.dashboard-image:hover {
    transform: scale(1.02);
}

@media (max-width: 968px) {
    .hero-section {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-image {
        display: none;
    }
}

.solution-cta {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.team-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
    scroll-margin-top: 100px;
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.team-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: normal;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.team-member {
    flex: 0 1 calc(33.333% - 1.67rem);
    text-align: center;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 20px;
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

.team-member-title {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .team-member {
        flex: 0 1 75%;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 0;
    }

    .team-section .section-title {
        font-size: 2rem;
    }

    .team-section .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .team-member {
        flex: 0 1 100%;
        padding: 1.5rem;
    }
}

.speak-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.speak-link:hover {
    color: #40B3A2;
}

/* Blog Section Styles */

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

.blog-card {
    background: var(--surface-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    font-size: 0.75rem;
    color: #40B3A2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    border: 1px solid #40B3A2;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background-color: rgba(64, 179, 162, 0.1);
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--text-primary);
}

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

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more {
    color: var(--accent-hover);
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.view-all-blogs:hover {
    background-color: #359686;
    transform: translateY(-2px);
}

.view-all-blogs i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-all-blogs:hover i {
    transform: translateX(3px);
}

@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

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

    .blog-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* Strategic Priorities Card Styles */

/* Priority item specific colors */

/* Responsive adjustments for the strategic priorities card */

/* Your Growth, Our Focus Section Styles */
.main-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.main-section.light {
    background-color: var(--surface-color);
}

.main-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px var(--shadow-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.help-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 2px 0 0 2px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.card-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.5rem;
    color: #00B8A9;
}

.help-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

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

/* Theme colors using brand palette */
.deals-theme::before {
    background-color: #00B8A9;
}

.relationships-theme::before {
    background-color: #FFCF56;
}

.deals-moving-theme::before {
    background-color: #FF6F61;
}

.future-theme::before {
    background-color: #4D4D4D;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .help-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
    }

    .help-card {
        padding: 1.5rem;
    }

    .help-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-section {
        padding: 3rem 0;
    }

    .main-section .section-title {
        font-size: 2rem;
    }

    .help-card {
        padding: 1.25rem;
    }

    .help-card h3 {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

/* Alternative Your Growth, Our Focus Section - Different Design */

/* Alternative theme colors */

/* Responsive adjustments for alternative design */



.work-steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 1em 2rem;
}

.work-step {
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 250px;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-we-work-content .work-step {
    max-width: 100%;
}

.how-we-work-content .work-step * {
    text-align: left !important;
}

.work-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.step-number:hover {
    transform: scale(1.1);
}

.step-number.green {
    background-color: #00b8a9;
}

.step-number.blue {
    background-color: #FECD57;
}

.step-number.orange {
    background-color: #ED6A5A;
}

.step-number.purple {
    background-color: #555555;
}

.work-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.3;
    text-align: center;
}

.work-step p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.highlight {
    background-color: #D0E0F0;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .work-steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .work-step {
        max-width: 400px;
        text-align: center;
        align-items: center;
    }

    .step-number {
        margin: 0 auto 1.5rem auto;
    }

    .work-step h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .work-steps-grid {
        gap: 2rem;
        max-width: 600px;
        padding: 1.5rem 1rem;
    }

    .work-step {
        padding: 0.5rem;
        max-width: 100%;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .work-step h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .work-step h3 {
        font-size: 1.1rem;
    }

    .work-step p {
        font-size: 0.95rem;
    }
}

/* Work CTA Styles */
.work-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 0;
}

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

.schedule-call-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.schedule-call-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-color);
}

/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .work-cta {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .schedule-call-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

.work-best-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    align-items: flex-start;
}

.work-best-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.work-best-point {
    padding: 0;
    border: none;
    background: none;
    transition: none;
}

.work-best-point:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.work-best-point h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.work-best-point p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.work-best-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-best-img {
    max-width: 100%;
    height: auto;
}

.work-best-cta {
    text-align: center;
    margin-top: 2rem;
}

.work-best-cta p {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.cta-statement {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .work-best-content {
        flex-direction: column;
        gap: 2rem;
    }

    .work-best-image {
        max-width: 100%;
        min-height: 300px;
    }

    .work-best-point h3 {
        font-size: 1.1rem;
    }
}


.lenders-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.lenders-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.lenders-visual {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.lenders-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lender-feature {
    text-align: left;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.lender-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-color);
    border-left: 4px solid var(--accent-color);
}



.lender-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: left;
}

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

/* Responsive adjustments */
@media (max-width: 968px) {
    .lenders-content {
        flex-direction: column;
        gap: 2rem;
    }

    .lenders-image {
        max-width: 100%;
        order: 2;
    }

    .lenders-features {
        order: 1;
    }
}

@media (max-width: 768px) {

    .lender-feature {
        padding: 1rem;
    }

    .lender-feature h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .lender-feature h3 {
        font-size: 1.1rem;
    }

    .lender-feature p {
        font-size: 0.9rem;
    }
}

/* Section Separators */

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
    margin-top: -2rem;
}

.section-divider::before {
    content: '';
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #40B3A2 50%, transparent 100%);
    flex: 1;
    max-width: 300px;
}

.section-divider::after {
    content: '';
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #40B3A2 50%, transparent 100%);
    flex: 1;
    max-width: 300px;
}

.section-divider .divider-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto 0 auto;
}

.testimonials-grid.single-testimonial {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
}

.testimonial-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow-color);
    position: relative;
    max-width: 520px;
    justify-self: center;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.testimonial-author-section {
    flex-shrink: 0;
    text-align: center;
}

.testimonial-author-image {
    margin-bottom: 1rem;
}

.author-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.testimonial-author-info {
    text-align: center;
}

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

.author-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.testimonial-quote-section-title {
    text-align: center;
    padding-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    left: -1rem;
    top: -1rem;
    font-family: serif;
}





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

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .testimonial-quote::before {
        font-size: 2.5rem;
        left: -0.5rem;
        top: -0.5rem;
    }
}

/* Testimonial CTA Section */

/* Operations Page Styles */
.operations-hero {
    padding: 2rem 0 4rem 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--surface-color) 100%);
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.operations-cta-section {
    padding: 5rem 0;
    text-align: center;
}

.operations-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.operations-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .operations-cta h2 {
        font-size: 2rem;
    }

    .operations-cta p {
        font-size: 1.1rem;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-grid .solution-card:nth-child(4) {
    grid-column: 2;
    justify-self: center;
    max-width: 400px;
}

.solution-card {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-color);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    color: white;
    font-size: 2rem;
}

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

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.solution-link:hover {
    color: var(--accent-hover);
    transform: translateX(4px);
}

.solution-link i {
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(4px);
}

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

    .solutions-grid .solution-card:nth-child(4) {
        grid-column: 1;
        justify-self: stretch;
        max-width: none;
    }

    .solution-card {
        padding: 2rem;
    }

    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--surface-color) 100%);
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.about-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px var(--shadow-color);
}

.hero-tag i {
    color: #666;
    font-size: 0.8rem;
}

.about-hero .hero-title {
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 100%;
    text-shadow: 0 2px 4px var(--shadow-color);
}

.about-hero .hero-title .emphasis-text {
    color: #40B3A2;
    font-weight: 600;
}

.about-hero .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 2px var(--shadow-color);
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 4em;
}

.cta-button.secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--surface-color);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.cta-button.secondary:hover {
    background: var(--bg-color);
    border-color: var(--border-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 2rem 0;
        min-height: auto;
    }

    .about-hero .container {
        padding: 0 1rem;
    }

    .hero-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    .about-hero .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .about-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button.secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* How We Got Here Section */
.how-we-got-here {
    padding: 4rem 0;
    background-color: var(--surface-color);
}

.how-we-got-here .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.how-we-got-here .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.how-we-got-here .content-wrapper {
    max-width: 100%;
}

.how-we-got-here .content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: left;
}

.how-we-got-here .content-wrapper p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .how-we-got-here {
        padding: 4rem 0;
    }

    .how-we-got-here .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .how-we-got-here .content-wrapper p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.what-we-believe {
    background-color: var(--bg-color);
    padding: 80px 0 0 0;
}

.what-we-believe .section-header {
    text-align: center;
    margin-bottom: 60px;
}



.what-we-believe .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.what-we-believe .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-card {
    background: var(--surface-color);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.principle-icon {
    margin-bottom: 1.5rem;
    text-align: center;
}

.principle-icon i {
    font-size: 2.5rem;
    margin: auto;
    padding: 1rem 0 1rem 0;
    width: 4.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #40B3A2 0%, #2d8a7d 100%);
    color: white;
    display: inline-block;
}

.principle-card:nth-child(1) .principle-icon i {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.principle-card:nth-child(2) .principle-icon i {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.principle-card:nth-child(3) .principle-icon i {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.principle-card:nth-child(4) .principle-icon i {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
}

.principle-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.principle-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.text-align-std {
    text-align: justify;
}
@media (max-width: 768px) {
    .text-align-std {
        text-align: center;
    }
}

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

    .principle-card {
        padding: 30px 20px;
    }

    .what-we-believe .section-title {
        font-size: 2rem;
    }
}

.how-we-work-section {
    padding: 80px 0 0 0;
    background-color: var(--surface-color);
}

.how-we-work-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-we-work-text {
    flex: 1;
    text-align: left;
}

.work-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-step {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 2.0;
    margin: 0;
}

.how-we-work-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 968px) {
    .how-we-work-content {
        flex-direction: column;
        gap: 40px;
    }

    .how-we-work-text {
        max-width: 100%;
    }

    .how-we-work-text .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .work-steps {
        gap: 25px;
    }

    .work-step {
        gap: 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--surface-color);
    min-width: 160px;
    box-shadow: 0 8px 16px var(--shadow-color);
    z-index: 1000;
    border-radius: 8px;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color);
}

.smart-dropdown {
    min-width: 800px;
    padding: 2rem;
    border-radius: 12px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.simple-dropdown {
    min-width: 220px;
    padding: 0.4rem 0;
    list-style: none;
}

.simple-dropdown li {
    margin: 0;
    padding: 0;
}

.dropdown-menu-link {
    display: block;
    padding: 0.65rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-menu-link:hover,
.dropdown-menu-link:focus-visible {
    color: var(--accent-color);
    background-color: var(--bg-color);
}

.dropdown-column {
    flex: 1;
    padding: 0 1rem;
}

.dropdown-column:first-child {
    padding-left: 0;
}

.dropdown-column:last-child {
    padding-right: 0;
}

.dropdown-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
    text-decoration: none;
    color: inherit;
}

.dropdown-item:hover {
    background-color: var(--bg-color);
    transform: translateX(5px);
    text-decoration: none;
    color: inherit;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.dropdown-icon i {
    color: #40B3A2;
    font-size: 1.2rem;
}

.operations-item .dropdown-icon i {
    color: #f39c12;
}

.revenue-item .dropdown-icon i {
    color: #40B3A2;
}

.dropdown-item-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.dropdown-column:last-child .dropdown-item-content h5 {
    text-align: center;
    font-size: 0.9rem;
}

.dropdown-column:last-child .dropdown-icon {
    width: 32px;
    height: 32px;
}

.dropdown-column:last-child .dropdown-icon i {
    font-size: 1rem;
}

.dropdown-item-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Open dropdown only when .open is set via JS */
.nav-dropdown.open .dropdown-content {
    display: flex;
}

.nav-dropdown.open .simple-dropdown {
    display: block;
}

@media (max-width: 768px) {

    .nav-dropdown .dropdown-content {
        display: none;
        position: static;
        flex-direction: column;
        width: 100%;
    }

    .smart-dropdown {
        min-width: auto;
        width: 100%;
        left: 0;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        position: static;
        transform: none;
    }

    .simple-dropdown {
        min-width: auto;
        width: 100%;
        margin-top: 0.25rem;
        padding: 0;
        position: static;
        border: 0;
        box-shadow: none;
    }

    .dropdown-menu-link {
        padding: 0.75rem 0;
        white-space: normal;
    }

    /* Ensure dropdown opens on click on mobile */
    .nav-dropdown.open .dropdown-content {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .dropdown-column {
        padding: 0;
        margin-bottom: 2rem;
    }

    .dropdown-column:last-child {
        margin-bottom: 0;
    }

    /* Hide headers inside mobile submenu to keep styling consistent */
    .dropdown-section-title {
        display: none;
    }

    .dropdown-item {
        padding: 0.75rem 0;
        margin: 0;
        align-items: center;
    }

    .dropdown-icon {
        width: 35px;
        height: 35px;
    }

    .dropdown-icon i {
        font-size: 1rem;
    }

    .dropdown-item-content h5 {
        font-size: 1rem;
        font-weight: 500;
    }

    .dropdown-item-content p {
        display: none;
    }

    /* Make last column headings consistent and left-aligned */
    .dropdown-column:last-child .dropdown-item-content h5 {
        text-align: left;
        font-size: 1rem;
    }

    /* Remove hover motion that could cause jank on mobile */
    .dropdown-item:hover {
        background-color: transparent;
        transform: none;
    }
}

/* Center Alignment Utilities */

/* Responsive center alignment */

/* ============================================
   HOMEPAGE REDESIGN STYLES
   ============================================ */

/* Hero Section Updates */
.hero-tagline {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-emphasis {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent-color);
    font-style: italic;
    line-height: 1.3;
}

.hero-intro {
    font-size: 2rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.pl-page .hero-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.home-page .hero-tagline, .home-page .hero-emphasis, .home-page .hero-intro {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1.8rem;
    }

    .hero-emphasis {
        font-size: 1.3rem;
    }
}

/* Section Header Block */
.section-header-block {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.section-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Key Solutions Navigator */
.solutions-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.solution-column {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-column-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.solution-column-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #0b1a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-column-icon i {
    font-size: 1.8rem;
}

.solution-column-icon.operations-icon i {
    color: #ffb020;
}

.solution-column-icon.revenue-icon i {
    color: var(--accent-color);
}

.solution-column-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.solution-column-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.solution-column-title a:hover {
    color: var(--accent-color);
}

.solution-column-copy {
    margin: 0.5rem 0 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.solution-anchor-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-anchor-list li {
    margin: 0;
    padding-left: 0;
}

.solution-anchor-list li::before {
    content: none;
}

.solution-anchor-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.solution-anchor-list a:hover {
    color: var(--accent-color);
}

.solution-link-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #0b1a3a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-link-icon i {
    font-size: 1.5rem;
    color: #ffb020;
}

.solution-column:last-child .solution-link-icon i {
    color: var(--accent-color);
}

/* Section Note */
.section-note {
    text-align: center;
    margin: 3rem 0;
    padding: 1.5rem 2rem;
    background: rgba(64, 179, 162, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.section-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Case Study Link */
.cta-links {
    text-align: center;
    margin-top: 2.5rem;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.case-link:hover {
    background: rgba(64, 179, 162, 0.1);
    border-color: rgba(64, 179, 162, 0.3);
}

.case-link i {
    transition: transform 0.3s ease;
}

.case-link:hover i {
    transform: translateX(4px);
}

/* AI Principles Section */
.ai-principles-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-principles-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.ai-principles-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.ai-principles-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.ai-principle-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.principle-marker {
    width: 4px;
    height: 100%;
    min-height: 60px;
    background: var(--accent-color);
    border-radius: 2px;
    flex-shrink: 0;
}

.principle-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

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

@media (max-width: 968px) {
    .ai-principles-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .ai-principles-image {
        flex: none;
        max-width: 100%;
        order: 2;
    }

    .ai-principles-list {
        order: 1;
    }
}

/* Skills Showcase Section */
.skills-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.skill-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow-color);
    border-color: rgba(64, 179, 162, 0.3);
}

.skill-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(64, 179, 162, 0.2) 0%, rgba(64, 179, 162, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skill-feature-icon i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.skill-feature-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

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

.skills-cta {
    text-align: center;
    margin-top: 3rem;
}

.explore-skills-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(64, 179, 162, 0.3);
}

.explore-skills-btn:hover {
    background: #359686;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(64, 179, 162, 0.4);
}

.explore-skills-btn i {
    transition: transform 0.3s ease;
}

.explore-skills-btn:hover i {
    transform: translateX(4px);
}

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

    .skill-feature {
        padding: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .solutions-two-column {
        grid-template-columns: 1fr;
    }

    .solution-anchor-list a {
        font-size: 1.4rem;
    }
}

@media (max-width: 640px) {
    .solution-column {
        padding: 1.5rem;
    }

    .solution-column-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    .solution-column-icon i {
        font-size: 1.35rem;
    }

    .solution-column-title {
        font-size: 1.7rem;
    }

    .solution-column-copy {
        font-size: 1rem;
    }

    .solution-anchor-list a {
        font-size: 1.15rem;
        gap: 0.75rem;
    }

    .solution-link-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }

    .solution-link-icon i {
        font-size: 1.1rem;
    }
}

/* Work Approach Grid */
.work-approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-approach-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.work-approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-color);
    border-color: var(--accent-color);
}

.approach-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2d8a7d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.work-approach-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.work-approach-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .work-approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 600px) {
    .work-approach-grid {
        grid-template-columns: 1fr;
    }

    .work-approach-card {
        padding: 1.5rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .final-cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Homepage Section Refresh */
.home-page .hero-section {
    min-height: calc(100vh - 80px);
    padding: 5rem 2rem 5.5rem;
}

.home-page .hero-section::before {
    background:
        radial-gradient(circle at 50% 14%, rgba(64, 179, 162, 0.22) 0%, rgba(64, 179, 162, 0) 45%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.home-page .hero-content {
    width: 100%;
    justify-content: center;
}

.home-page .hero-text {
    max-width: 920px;
    width: 100%;
}

.home-page .hero-text-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.home-page .hero-intro {
    margin: 0 0 1rem;
    color: #b8ddd6;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    line-height: 1.35;
}

.home-page .hero-tagline {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
}

.home-page .hero-emphasis {
    margin: 0;
    color: var(--text-secondary);
    font-style: normal;
    font-size: clamp(1.08rem, 2.2vw, 1.45rem);
    line-height: 1.7;
}

.home-page .hero-cta-buttons {
    padding-top: 2rem;
}

.home-page #systems-design .section-header-block {
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.home-page #systems-design .section-title {
    margin-bottom: 1.5rem;
}

.home-page #systems-design .section-body {
    display: grid;
    gap: 0.9rem;
}

.home-page #systems-design .section-lead {
    max-width: none;
    margin: 0;
    line-height: 1.75;
    font-size: 1.1rem;
}

.home-page #systems-design .section-body .section-lead:last-child {
    color: var(--accent-color);
    font-weight: 600;
}

.home-page #ai-approach .section-header-block {
    margin-bottom: 2rem;
}

.home-page #ai-approach .what-we-do-body {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.82) 100%);
}

.home-page #ai-approach .what-we-do-body p {
    margin: 0 0 1rem;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.home-page #ai-approach .what-we-do-body p:last-of-type {
    margin-bottom: 0.9rem;
}

.home-page #ai-approach .what-we-do-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.home-page #ai-approach .what-we-do-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.home-page #ai-approach .what-we-do-list li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background-color: var(--accent-color);
    transform: translateY(-50%);
}

.home-page #how-we-work .section-header-block {
    margin-bottom: 2rem;
}

.home-page #how-we-work .shortlist-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.home-page #how-we-work .shortlist-step {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.88) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.home-page #how-we-work .shortlist-step h3 {
    margin: 0 0 1rem;
    color: var(--text-primary);
    font-size: 1.3rem;
    line-height: 1.35;
}

.home-page #how-we-work .shortlist-step p {
    margin: 0 0 0.75rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.home-page #how-we-work .shortlist-step ul {
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.home-page #how-we-work .shortlist-step li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-primary);
    line-height: 1.55;
}

.home-page #how-we-work .shortlist-step li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.home-page .final-cta-section {
    padding: 5.5rem 0;
}

.home-page .final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.home-page .final-cta-content h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.home-page .final-cta-copy {
    max-width: 700px;
    margin: 0 auto 2rem;
    display: grid;
    gap: 0.75rem;
}

.home-page .final-cta-copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.7;
}

@media (max-width: 960px) {
    .home-page #how-we-work .shortlist-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-page .hero-section {
        padding: 4rem 1rem 4.5rem;
    }

    .home-page .hero-text-card {
        border-radius: 0;
    }

    .home-page #systems-design .section-header-block,
    .home-page #ai-approach .what-we-do-body,
    .home-page .final-cta-content {
        border-radius: 16px;
    }

    .home-page #ai-approach .what-we-do-body p,
    .home-page #systems-design .section-lead,
    .home-page .final-cta-copy p {
        font-size: 1rem;
    }
}

/* About Page Refresh */
.about-page .about-hero {
    min-height: calc(100vh - 80px);
    padding: 5rem 1.5rem 5.5rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 10%, rgba(64, 179, 162, 0.2) 0%, rgba(64, 179, 162, 0) 45%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
}

.about-page .about-hero .container {
    max-width: 980px;
    width: 100%;
    padding: 0 2rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.about-page .hero-tag {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(64, 179, 162, 0.35);
    background: rgba(15, 23, 42, 0.55);
    color: #c9e7e1;
    letter-spacing: 0.03em;
}

.about-page .hero-tag i {
    color: var(--accent-color);
}

.about-page .about-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.about-page .about-hero .hero-subtitle {
    max-width: 860px;
    font-size: clamp(1.02rem, 1.9vw, 1.2rem);
    line-height: 1.78;
    font-weight: 400;
    text-shadow: none;
}

.about-page .hero-cta-buttons {
    padding-top: 2rem;
}

.about-page .how-we-got-here {
    padding: 5.25rem 0;
    background-color: var(--surface-color);
}

.about-page .how-we-got-here .container {
    max-width: 960px;
}

.about-page .how-we-got-here .section-title {
    margin-bottom: 2rem;
}

.about-page .how-we-got-here .content-wrapper {
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: 20px;
    border: 1px solid rgba(64, 179, 162, 0.2);
    background: linear-gradient(150deg, rgba(15, 23, 42, 0.62) 0%, rgba(30, 41, 59, 0.44) 100%);
}

.about-page .how-we-got-here .content-wrapper p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about-page .how-we-got-here .content-wrapper p:first-child {
    color: var(--text-primary);
    font-size: 1.18rem;
}

.about-page .what-we-believe {
    padding: 5.5rem 0;
}

.about-page .what-we-believe .section-header {
    max-width: 780px;
    margin: 0 auto 2.75rem;
}

.about-page .what-we-believe .section-title {
    margin-bottom: 0.8rem;
}

.about-page .principles-grid {
    gap: 1.25rem;
}

.about-page .principle-card {
    height: 100%;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.86) 0%, rgba(15, 23, 42, 0.88) 100%);
    padding: 2rem 1.75rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.about-page .principle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(64, 179, 162, 0.45);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.about-page .principle-icon {
    text-align: left;
    margin-bottom: 1rem;
}

.about-page .principle-icon i,
.about-page .principle-card:nth-child(1) .principle-icon i,
.about-page .principle-card:nth-child(2) .principle-icon i,
.about-page .principle-card:nth-child(3) .principle-icon i,
.about-page .principle-card:nth-child(4) .principle-icon i {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(64, 179, 162, 0.95) 0%, rgba(45, 138, 125, 0.9) 100%);
    color: #ffffff;
}

.about-page .principle-card h3 {
    text-align: left;
    margin-bottom: 0.8rem;
}

.about-page .principle-card p {
    text-align: left;
    line-height: 1.72;
}

.about-page .principle-card .emphasis-text2 {
    display: block;
    margin-top: 0.85rem;
    font-size: 1rem;
}

.about-page .team-section {
    padding: 5.5rem 0;
}

.about-page .team-section .section-subtitle {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 860px;
}

.about-page .team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 0;
}

.about-page .team-member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    border-radius: 18px;
}

.about-page .team-member:hover {
    transform: translateY(-4px);
    border-color: rgba(64, 179, 162, 0.45);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.about-page .team-member img {
    width: 112px;
    height: 112px;
    margin-bottom: 1rem;
    border: 2px solid rgba(64, 179, 162, 0.45);
}

.about-page .team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.about-page .team-member-title {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.95rem;
    color: #c1d0d9;
}

.about-page .team-member p {
    line-height: 1.68;
}

.about-page .how-we-work-section {
    padding: 5.25rem 0;
}

.about-page .how-we-work-section .container {
    max-width: 960px;
}

.about-page .how-we-work-section .section-header {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.about-page .how-we-work-section .section-title {
    margin-bottom: 1rem;
}

.about-page .how-we-work-section .section-subtitle {
    margin: 0 auto;
    max-width: 760px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .about-page .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-page .about-hero {
        min-height: auto;
        padding: 4rem 1rem 4.5rem;
    }

    .about-page .about-hero .container {
        border-radius: 0;
        padding: 0;
    }

    .about-page .hero-tag {
        margin-bottom: 1.2rem;
    }

    .about-page .about-hero .hero-subtitle {
        font-size: 1rem;
        line-height: 1.68;
    }

    .about-page .how-we-got-here .content-wrapper {
        border-radius: 16px;
        padding: 1.4rem 1.2rem;
    }

    .about-page .how-we-got-here .content-wrapper p:first-child {
        font-size: 1.05rem;
    }

    .about-page .principles-grid,
    .about-page .team-grid {
        grid-template-columns: 1fr;
    }

    .about-page .principle-card,
    .about-page .team-member {
        border-radius: 16px;
        padding: 1.4rem 1.2rem;
    }

    .about-page .how-we-work-section .section-subtitle {
        font-size: 1rem;
    }
}
