/* ConocerDigital.ai Integrated Redesign Styles */

:root {
    /* Map to User Provided Brand Colors */
    --primary-color: #0c878e !important;
    /* Teal for Buttons/Highlights */
    --primary-dark: #08668c !important;
    /* Darker Teal for Hover */
    --text-heading: #08668c !important;
    /* Dark Teal for Headings/Footer */
    --text-body: var(--ast-global-color-3, #334155);
    --bg-light: var(--ast-global-color-5, #F0F5FA);
    --bg-white: #FFFFFF;
    --border-color: #e2e8f0;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
}

/* Typography Overrides to match Astra */
/* Note: Astra sets font-family on body, we inherit or enforce if needed */
.redesign-wrapper {
    font-family: 'Roboto', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background: radial-gradient(circle at 50% -20%, #e0f7f8 0%, #ffffff 60%);
    background-attachment: fixed;
}

.redesign-wrapper h1,
.redesign-wrapper h2,
.redesign-wrapper h3,
.redesign-wrapper h4 {
    font-family: 'Roboto Slab', serif;
    color: var(--text-heading);
    margin-bottom: 1rem;
    font-weight: 700;
}

.redesign-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.redesign-wrapper a:hover {
    color: var(--primary-dark);
}

/* Utility Classes */
.redesign-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    /* Override Astra underline */
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: 1px solid var(--primary-color) !important;
    box-shadow: 0 4px 14px rgba(12, 135, 142, 0.4);
    /* Glow effect with Teal */
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 135, 142, 0.6);
}

.btn-outline {
    background-color: #fff;
    color: var(--text-heading) !important;
    border: 1px solid #e2e8f0;
}

.btn-outline:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: var(--text-heading) !important;
}

.btn-ghost {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 1px solid transparent;
    /* Ghost should be borderless usually, or minimal */
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    background: transparent;
    /* Allow body gradient to show */
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: #F0F5FA;
    /* Light Blue/Gray */
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.badge-dot {
    height: 8px;
    width: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
}

.hero-title {
    font-size: 4.5rem;
    /* Much larger */
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-heading);
    letter-spacing: -1px;
}

.highlight-text {
    color: var(--primary-color) !important;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 48px;
    color: #64748b;
    /* Slate-500 equivalent */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Updated Button Styles */
/* Updated Button Styles */
.hero-cta .btn {
    border-radius: 50px !important;
    /* Fully rounded/Pill */
    padding: 12px 28px !important;
    /* Smaller Padding */
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: capitalize !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary-color) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 10px 25px -5px rgba(12, 135, 142, 0.4) !important;
    /* Soft Glow */
}

.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px -5px rgba(12, 135, 142, 0.6) !important;
    background: var(--primary-dark) !important;
}

.btn-outline {
    background: transparent !important;
    border: 2px solid #e2e8f0 !important;
    color: var(--text-heading) !important;
    box-shadow: none !important;
}

.btn-outline:hover {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05) !important;
}

/* Features Grid (Products) */
.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 60px;
}

.features-section {
    padding: var(--section-padding);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.product-card.featured img {
    max-width: 250px;
    width: 100%;
}

.product-logo {
    margin-bottom: 20px;
    max-height: 50px;
    width: auto;
}

.coming-soon-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 10px;
}

/* About / Credentials */
.about-section {
    background-color: var(--bg-white);
    padding: var(--section-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.credential-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.credential-logos {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.credential-logos img {
    max-height: 100px;
    width: auto;
}

/* Team Section */
.team-section {
    background-color: var(--bg-light);
    padding: var(--section-padding);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.team-card {
    background: var(--bg-white);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.team-photo {
    width: 120px;
    height: 120px;
    background-color: #e2e8f0;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    background-image: url('assets/placeholder-user.png');
    /* Placeholder */
    background-size: cover;
    background-position: center;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-title {
    font-size: 0.9rem;
    color: var(--text-body);
    font-style: italic;
}

/* Footer & Form */
.redesign-footer-section {
    background-color: var(--bg-white);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(4, 107, 210, 0.1);
}

.copyright {
    text-align: center;
    margin-top: 60px;
    font-size: 0.9rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        flex-direction: column;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3.5rem !important;
        /* Mobile Size */
    }
}

/* Hero Desktop Refinement */
.hero-title {
    font-size: 4.5rem !important;
    /* Match reference boldness */
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
}

.highlight-text {
    color: var(--primary-color) !important;
    display: block;
    /* Force new line if needed, but <br> handles it */
}

/* FINAL FORCED LOGO ALIGNMENT */
.elementor-location-header .elementor-widget-image {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 20px !important;
}

.elementor-location-header .elementor-widget-image img {
    margin: 0 auto !important;
    mix-blend-mode: multiply !important;
    max-height: 90px !important;
    width: auto !important;
    display: block !important;
}

/* HIDE ELEMENTOR HEADER */
.site-header,
.elementor-location-header {
    display: none !important;
}

/* CUSTOM HEADER */
.custom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
    position: sticky;
    z-index: 1000;
}

/* FINAL OVERRIDE FOR SPACING */
#redesign-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-section {
    padding-top: 20px !important;
    /* Minimal Top Gap */
    margin-top: 0 !important;
}

.custom-header {
    margin-bottom: 0 !important;
    border-bottom: 1px solid #eee !important;
}

.custom-logo img {
    height: 60px;
    width: auto;
    mix-blend-mode: multiply;
    /* Blend white bg */
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-heading);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.header-cta-btn {
    background-color: var(--text-heading);
    /* Dark Teal */
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.header-cta-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Mobile Nav (Simple) */
/* Mobile Nav (Hamburger) */
.mobile-menu-toggle {
    display: none;
    background: transparent !important;
    border: none !important;
    font-size: 1.5rem !important;
    /* Smaller Icon */
    color: var(--primary-color) !important;
    /* Brand Teal */
    cursor: pointer;
    padding: 8px;
    /* Smaller Padding */
    transition: transform 0.3s ease;
    outline: none !important;
    /* No Blue Box */
    -webkit-tap-highlight-color: transparent !important;
    /* No Mobile Highlight */
}

.mobile-menu-toggle:focus {
    outline: none !important;
}

.mobile-menu-toggle:hover {
    color: var(--primary-dark) !important;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .custom-header {
        flex-direction: row;
        /* Keep row for logo + hamburger */
        justify-content: space-between;
        padding: 15px 20px;
        flex-wrap: wrap;
        /* Allow menu to break line */
        align-items: center;
    }

    .mobile-menu-toggle {
        display: block;
        /* Show hamburger */
    }

    .nav-menu {
        display: none;
        /* Hide by default */
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        border-top: 1px solid #eee;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
        /* Show when active */
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .header-cta-btn {
        width: 100%;
        text-align: center;
        display: block;
    }

    /* Hero Buttons Mobile Stack */
    .hero-cta {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100% !important;
        margin: 0 !important;
        display: flex;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }
}

/* IDENTITY SECTION (Not Just an Agency) - REVISED BOLD */
.identity-section,
.about-section-simple {
    padding: 0 20px 80px 20px;
    /* Top Padding Removed */
    background: transparent;
    text-align: left !important;
}

.identity-section .redesign-container,
.about-section-simple .redesign-container {
    max-width: 1000px;
    margin: 0 auto;
}

.identity-section h2,
.about-section-simple h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    /* Heavy Black */
    color: #0f172a !important;
    line-height: 1.05 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 20px;
    max-width: 100%;
}

.identity-section h3.highlight-identity {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    line-height: 1.1 !important;
    margin-bottom: 30px;
    max-width: 100%;
    letter-spacing: -0.5px !important;
}

.identity-section p {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 800px;
    margin-top: 20px;
    line-height: 1.6;
    font-weight: 400;
}

/* Mobile Typography for Identity */
@media (max-width: 768px) {
    .identity-section h2 {
        font-size: 2.2rem !important;
    }

    .identity-section h2 {
        font-size: 2.2rem !important;
    }

    .identity-section h3.highlight-identity {
        font-size: 1.8rem !important;
    }
}

/* FEATURES GRID SECTION (2x2) */
.features-grid-section {
    padding: 40px 20px 80px 20px;
    background: #fff;
    /* Keep white, or use #f8fafc for contrast? Screenshot implies white cards on white/light bg. */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #0f172a;
    /* Dark Blue/Black */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.card-icon.blue-icon {
    background: #2563eb;
    /* Bright Blue for 2nd card */
}

.card-brand-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-card a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.feature-card a:hover {
    text-decoration: underline;
}

/* Mobile Responsive Grid */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }
}

/* LINED SECTION TITLE (Platforms & Capabilities) */
.section-title-lined {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    /* Teal */
    margin-bottom: 40px;
    width: 100%;
}

.section-title-lined::before,
.section-title-lined::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #cbd5e1;
    /* Light Grey Line */
    margin: 0 20px;
}

@media (max-width: 768px) {
    .section-title-lined {
        font-size: 1.8rem;
    }

    .section-title-lined::before,
    .section-title-lined::after {
        margin: 0 10px;
    }
}

.coming-soon-tag {
    margin-top: auto;
    align-self: flex-end;
    background: #e2e8f0;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
    letter-spacing: 0.5px;
    margin: 0 10px;
}

/* ABOUT SECTION (New) */
.about-section-new {
    padding: 80px 20px;
    background: #fff;
}

.about-header {
    text-align: left;
    max-width: 800px;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.highlight-blue {
    color: var(--primary-color) !important;
    /* Teal Match */
}

.about-description {
    font-size: 1.25rem;
    color: var(--text-body);
    line-height: 1.6;
    font-weight: 400;
}

/* TEAM SECTION NEW */
.team-section-new {
    padding: 80px 20px;
    background: #f8fafc;
    /* Light Grey Background */
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Responsive Grid */
    gap: 40px;
    max-width: 1100px;
    /* Increased Width */
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

.team-create {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.team-create:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    /* Circle Image */
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-create h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.team-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CREDENTIAL CARD LARGE */
.credential-card-large {
    background: #f8fafc;
    /* Light Grey/Blue Tint */
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* TEAM GRID SECONDARY (5 Columns) */
.team-grid-secondary {
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important;
    /* Force 5 Columns */
    gap: 20px !important;
    /* Slightly more gap */
    max-width: 1100px !important;
    /* Match the Top Grid EXACTLY */
    margin: 40px auto 0;
    width: 100%;
    justify-content: center;
}

/* Responsive adjustment for 5-col grid */
@media (max-width: 900px) {
    .team-grid-secondary {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
        /* Fallback for tablets/mobile */
        gap: 15px;
    }
}

.team-create-small {
    padding: 20px 10px !important;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Reduce height or at least center content better */
    height: 100%;
    /* Ensure equal heights */
    min-height: 250px;
    /* Force minimum height for Square-ish feel but not too tall */
}

.team-image-small {
    width: 100px !important;
    height: 100px !important;
    background: #e2e8f0;
    /* Default Placeholder Grey */
    border-radius: 50%;
    margin: 0 auto 15px !important;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.team-create-small h3 {
    font-size: 0.95rem !important;
    /* Smaller Name */
    margin-bottom: 5px;
    line-height: 1.2;
}

.team-title-small {
    font-size: 0.75rem !important;
    /* Smaller Title to avoid wrapping */
    line-height: 1.2;
    font-weight: 600;
}

/* MISSION SECTION */
.mission-section {
    padding: 100px 20px;
    background: transparent;
    /* Transparent Background */
    color: #0f172a;
    /* Dark Text */
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-title-white {
    color: #0f172a !important;
    /* Force Dark Text */
    border-color: #0f172a !important;
    /* Dark line */
}

/* Override pseudo-element line width/color if needed */
.section-title-white::before,
.section-title-white::after {
    background: #0f172a !important;
}

.mission-text {
    font-size: 1.5rem;
    /* Larger Impact Text */
    line-height: 1.6;
    font-weight: 300;
    color: #475569;
    /* Dark Grey Text */
    margin-top: 30px;
}

.credential-content {
    flex: 1;
}

.official-badge {
    background: #dbeafe;
    /* Light Blue Badge */
    color: #1e40af;
    /* Dark Blue Text */
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.credential-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.credential-content p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.credential-image-wrapper {
    flex: 0 0 300px;
    /* Fixed width for image container */
    text-align: right;
}

.cert-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2.2rem;
    }

    .credential-card-large {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .credential-image-wrapper {
        flex: auto;
        width: 100%;
        text-align: center;
    }

    .credential-content h3 {
        font-size: 1.8rem;
    }
}

.live-link-badge {
    background: #dcfce7;
    /* Light Green */
    color: #15803d;
    /* Dark Green */
    cursor: pointer;
    text-decoration: none !important;
    transition: transform 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.live-link-badge:hover {
    transform: translateY(-2px);
    background: #bbf7d0;
}

/* Mobile Responsiveness for Features Grid */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Section Title Lined */
.section-title-lined {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 100%;
}

.section-title-lined::before,
.section-title-lined::after {
    content: "";
    flex: 1;
    /* Stretch to fill space */
    height: 1px;
    background-color: #cbd5e1;
    /* Light gray line */
    max-width: 100px;
    /* Limit line length */
}

/* Founder Section Mobile Fix */
@media (max-width: 768px) {
    .about-row-founder {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .founder-image {
        flex: 1 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .founder-image img {
        width: 100% !important;
        max-width: 350px !important;
        height: auto !important;
        object-fit: cover !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .founder-text {
        width: 100% !important;
        text-align: left !important;
    }
}