:root {
    --dark-bg: #0b1120;
    --accent-orange: #f97316;
    --text-muted: #94a3b8;
    --white: #ffffff;
}

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

/* Hero Section Styles */
.social-hero {
    background: radial-gradient(circle at top right, #1e293b, var(--dark-bg));
    padding: 100px 0;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

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

.eyebrow {
    color: var(--accent-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.sub-description {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.button-group {
    display: flex;
    gap: 15px;
}

.btn-fill {
    background: var(--accent-orange);
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #334155;
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
}

/* The Badge */
.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #334155;
}

.stat-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--accent-orange);
    padding: 25px 35px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Deficit Section Styles */
.deficit-section {
    padding: 100px 0;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.deficit-grid {
    display: flex;
    gap: 60px;
}

.deficit-intro {
    flex: 1;
}

.deficit-intro h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 30px;
}

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

.deficit-cards {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.deficit-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin: 15px 0;
}

.deficit-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {

    .hero-layout,
    .deficit-grid {
        flex-direction: column;
        text-align: center;
    }

    .main-heading {
        font-size: 40px;
    }

    .button-group {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
        width: 100%;
        max-width: 500px;
    }

    .stat-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -40px;
    }

    .deficit-cards {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

/* 2nd section */

/* Container & Section */
.axiom-bento-section {
    background-color: #0b1120; /* Dark navy background */
    padding: 80px 20px;
    font-family: 'Inter', sans-serif; /* Professional sans-serif */
}

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

/* Grid Layout */
.axiom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
}

/* Card Base Styling */
.axiom-card {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.axiom-card-content {
    padding: 40px;
    flex-grow: 1;
}

.axiom-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 20px 0 15px 0;
    letter-spacing: 0.5px;
}

.axiom-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b; /* Muted gray for description */
}

/* Specific Card Rules */
.axiom-card-white {
    background-color: #ffffff;
    color: #0f172a;
}

.axiom-card-dark {
    background-color: #1e293b; /* Slightly lighter navy for the card */
    color: #ffffff;
}

.axiom-card-dark p {
    color: #94a3b8;
}

/* Grid Positioning */
.axiom-span-2 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

/* This creates the tall card on the right */
.axiom-span-tall {
    grid-row: span 1; 
}

/* Community Management Image Styling */
.axiom-card-image {
    width: 100%;
    height: 200px;
}

.axiom-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icons */
.axiom-icon-box {
    background: #fff1f0; /* Light orange tint for icon bg */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.axiom-icon-orange {
    font-size: 24px;
    color: #f97316;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .axiom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .axiom-span-tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .axiom-grid {
        grid-template-columns: 1fr;
    }
    .axiom-span-2 {
        grid-column: span 1;
    }
}
/* 3rd section */

.engagement-loop {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.center-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: #f97316;
    margin: 0 auto 60px;
}

/* Loop Container */
.loop-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* The Connecting Line */
.loop-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    /* Aligns with the middle of the icons */
    left: 50px;
    right: 50px;
    height: 1px;
    background-color: #e2e8f0;
    z-index: 1;
}

.loop-item {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 10px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.icon-circle.orange-bg {
    background-color: #f97316;
    color: white;
    border: none;
}

.loop-text h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.loop-text p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* Mobile Vertical Stack */
@media (max-width: 768px) {
    .loop-steps {
        flex-direction: column;
        gap: 40px;
    }

    .loop-steps::before {
        display: none;
    }
}

:root {
    --dark-bg: #0b1120;
    --orange: #f97316;
    --text-gray: #94a3b8;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    margin: 0;
}

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

/* Impact Section */
.impact-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
    color: var(--white);
}

.impact-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.impact-content {
    flex: 1;
}

.impact-visual {
    flex: 1;
}

.impact-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.impact-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 50px;
}

.orange-text {
    color: var(--orange);
}

.stat-item {
    margin-bottom: 40px;
    max-width: 350px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
}

.stat-text {
    font-size: 48px;
    font-weight: 900;
}

.stat-label {
    color: var(--text-gray);
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Sector Section */
.sector-section {
    padding: 80px 0;
    text-align: center;
}

.sector-heading {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sector-card {
    height: 250px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
}

.sector-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.7);
    /* Dark semi-transparent overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.sector-icon {
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.sector-overlay p {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
    .impact-grid {
        flex-direction: column;
    }

    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 4th section */

:root {
    --navy-black: #0b1120;
    --white: #ffffff;
    --orange: #d66a32;
    --gray-text: #94a3b8;
}

/* Inquiry / FAQ Styles */
/* Container Background */
.ax-inquiry-section {
    background-color: #0b1120;
    padding: 80px 0;
}

.ax-inquiry-title {
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Accordion Items */
.ax-inquiry-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 12px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

/* Header/Button Reset */
.ax-inquiry-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    color: #0b1120;
    text-align: left;
}

.ax-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Content logic - Starts at 0 height */
.ax-inquiry-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #ffffff;
}

.ax-content-inner {
    padding: 0 30px 24px 30px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* The Active State */
.ax-inquiry-item.ax-active .ax-inquiry-content {
    max-height: 200px;
    /* Adjust based on content length */
}

.ax-inquiry-item.ax-active .ax-icon {
    transform: rotate(180deg);
}

/* CTA Section Styles */
.cta-section {
    padding: 100px 0;
    background: var(--white);
}

.cta-card {
    background: var(--navy-black);
    border-radius: 40px;
    /* Highly rounded as per image */
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-card p {
    color: var(--gray-text);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-orange-large {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-orange-large:hover {
    transform: scale(1.05);
}