/* ==========================================================================
   Omnetway Infosystems Pvt Ltd - Master Stylesheet
   Color Palette:
     Teal (Arches):   #0E7C86 / #075E68 / #1AB3C2
     Orange (Crest):  #FF7300 / #E65100
     Slate (Neutral): #0F172A / #1E293B / #F8FAFC
   ========================================================================== */

:root {
    --brand-teal: #0E7C86;
    --brand-teal-dark: #075E68;
    --brand-teal-light: #E0F4F6;
    --brand-orange: #FF7300;
    --brand-orange-dark: #E65100;
    --brand-orange-light: #FFF3E6;
    
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50:  #F8FAFC;
    --white:     #FFFFFF;

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-subtle: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
    --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-700);
    background-color: var(--white);
    line-height: 1.65;
    font-size: 15.5px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

/* ==========================================================================
   Typography & Shared Components
   ========================================================================== */
h1, h2, h3, h4, h5 {
    color: var(--slate-900);
    font-family: var(--font-heading);
    line-height: 1.25;
    font-weight: 700;
}

.section-padding {
    padding: 85px 0;
}

.bg-light {
    background-color: var(--slate-50);
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.45rem);
    margin-bottom: 16px;
    color: var(--slate-900);
}

.section-desc {
    max-width: 680px;
    margin: 0 auto 50px auto;
    color: var(--slate-600);
    font-size: 16.5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--brand-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--brand-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 115, 0, 0.28);
}

.btn-outline {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
}

.btn-outline:hover {
    background-color: var(--brand-teal);
    color: var(--white);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--slate-900);
}

.btn-white {
    background-color: var(--white);
    color: var(--slate-900);
}

.btn-white:hover {
    background-color: var(--brand-orange);
    color: var(--white);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 13.5px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
    background-color: var(--slate-900);
    color: #94A3B8;
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 22px;
}

.top-info i {
    color: var(--brand-orange);
    margin-right: 6px;
}

.top-meta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11.5px;
}

.badge-status .dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
}

.top-portal-link {
    color: #CBD5E1;
    font-weight: 500;
}

.top-portal-link:hover {
    color: var(--brand-orange);
}

/* Main Navbar */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 82px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 52px;
    height: 52px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.corp-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 21px;
    letter-spacing: 0.5px;
    color: var(--brand-teal-dark);
}

.corp-tag {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--brand-orange);
}

.desktop-nav .nav-links {
    display: flex;
    gap: 28px;
}

.desktop-nav .nav-links a {
    color: var(--slate-800);
    font-weight: 600;
    font-size: 14.5px;
    position: relative;
    padding: 6px 0;
}

.desktop-nav .nav-links a:hover,
.desktop-nav .nav-links a.active {
    color: var(--brand-teal);
}

.desktop-nav .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--brand-orange);
    border-radius: 2px;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: var(--slate-900);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    padding: 20px;
}

.mobile-nav.open {
    display: block;
}

.mobile-links li {
    margin-bottom: 15px;
}

.mobile-links a {
    font-weight: 600;
    color: var(--slate-800);
    font-size: 16px;
}

/* ==========================================================================
   Hero Slider (Index Page)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    height: 620px;
    overflow: hidden;
    color: var(--white);
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero-badge.badge-orange {
    background: rgba(255, 115, 0, 0.25);
    border-color: rgba(255, 115, 0, 0.4);
    color: #FFD2A8;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.18;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--brand-orange);
}

.prev-btn { left: 24px; }
.next-btn { right: 24px; }

.slider-indicators {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    width: 32px;
    background: var(--brand-orange);
}

/* Stats Strip */
.stats-strip {
    background: var(--slate-900);
    padding: 36px 0;
    color: var(--white);
    border-bottom: 4px solid var(--brand-teal);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--brand-orange);
}

.stat-label {
    font-size: 13.5px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ==========================================================================
   Ecosystem Cards (Grid)
   ========================================================================== */
.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

.domain-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--brand-teal);
}

.domain-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--slate-100);
    color: var(--slate-700);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.domain-badge.current {
    background: var(--brand-teal-light);
    color: var(--brand-teal);
}

.domain-icon {
    width: 52px;
    height: 52px;
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.domain-url {
    font-size: 20px;
    color: var(--brand-teal-dark);
    margin-bottom: 4px;
}

.domain-title {
    font-size: 15px;
    color: var(--brand-orange);
    margin-bottom: 14px;
    font-weight: 600;
}

.domain-card p {
    color: var(--slate-600);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.domain-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    border-top: 1px solid var(--slate-100);
    padding-top: 16px;
    font-size: 13px;
    color: var(--slate-700);
}

.domain-features i {
    color: var(--brand-teal);
    margin-right: 6px;
}

/* Advantage Edge Section */
.edge-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 17px;
    color: var(--slate-800);
    line-height: 1.6;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--slate-600);
}

.visual-box {
    position: relative;
}

.rounded-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.stats-float-card {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: var(--white);
    border-left: 5px solid var(--brand-orange);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    max-width: 250px;
}

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

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--brand-teal-dark), var(--brand-teal));
    color: var(--white);
    padding: 55px 0;
}

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

.cta-banner h2 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 6px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Internal Pages (About, Services, Governance, Contact)
   ========================================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--slate-900), var(--brand-teal-dark));
    color: var(--white);
    padding: 60px 0;
}

.page-crumb {
    font-size: 13px;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.page-title {
    color: var(--white);
    font-size: 36px;
    margin: 8px 0 10px 0;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    max-width: 650px;
}

/* Profile Grid (About) */
.profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.pillars-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.pillar {
    background: var(--slate-50);
    padding: 22px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--brand-teal);
}

.pillar i {
    font-size: 22px;
    color: var(--brand-orange);
    margin-bottom: 10px;
}

.statutory-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
}

.statutory-card h3, .statutory-card h4 {
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--slate-100);
}

.stat-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--slate-100);
    font-size: 13.5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.value-box {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--brand-teal);
    box-shadow: var(--shadow-subtle);
}

.val-icon {
    font-size: 26px;
    color: var(--brand-orange);
    margin-bottom: 16px;
}

/* Subsidiary Row (group-companies.php) */
.subsidiary-row {
    display: grid;
    grid-template-columns: 220px 1fr 180px;
    align-items: center;
    gap: 30px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-subtle);
}

.sub-badge-col {
    text-align: center;
}

.sub-avatar {
    width: 60px;
    height: 60px;
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    border-radius: 50%;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sub-domain-label {
    font-weight: 700;
    color: var(--brand-teal-dark);
    font-size: 16px;
}

.sub-lead {
    font-weight: 600;
    color: var(--brand-orange);
    margin-bottom: 8px;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag {
    background: var(--slate-100);
    font-size: 11.5px;
    padding: 3px 10px;
    border-radius: 4px;
    color: var(--slate-700);
    font-weight: 500;
}

.status-pill.current {
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

/* Services Blocks (services.php) */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse .service-info {
    direction: ltr;
}

.service-media img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.service-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-orange);
    font-family: var(--font-heading);
}

.check-list {
    margin-top: 16px;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14.5px;
}

.check-list li::before {
    content: "\f00c";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand-teal);
}

/* Governance Layout */
.governance-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
}

.gov-content h3 {
    margin: 24px 0 10px 0;
}

.cert-item {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--slate-100);
}

.cert-item i {
    font-size: 26px;
    color: var(--brand-teal);
}

/* Contact Page Form */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.info-card {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.form-wrapper {
    background: var(--white);
    border: 1px solid var(--slate-200);
    padding: 38px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.form-desc {
    font-size: 14px;
    color: var(--slate-600);
    margin-bottom: 22px;
}

.corp-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(14, 124, 134, 0.15);
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
}

.alert-success {
    background: #DEF7EC;
    color: #03543F;
}

.alert-danger {
    background: #FDE8E8;
    color: #9B1C1C;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--slate-900);
    color: #94A3B8;
    padding-top: 75px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.corp-name-light {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.8px;
}

.corp-sub {
    font-size: 10px;
    font-weight: 700;
    color: var(--brand-orange);
    letter-spacing: 2px;
}

.footer-about {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--brand-orange);
}

.footer-heading {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: var(--brand-orange);
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    font-size: 13.5px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.badge-tag {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    color: #CBD5E1;
}

.contact-details p {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-details i {
    color: var(--brand-orange);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    font-size: 13px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a:hover {
    color: var(--brand-orange);
}

/* ==========================================================================
   Responsive Media Queries (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 992px) {
    .desktop-nav, .top-bar {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
    .hero-slider-section {
        height: 520px;
    }
    .edge-grid, .profile-grid, .governance-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .subsidiary-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .sub-badge-col {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .sub-avatar {
        margin: 0;
    }
    .service-block, .service-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .corp-form .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .values-grid, .pillars-row {
        grid-template-columns: 1fr;
    }
}