
:root {
    /* الألوان الأساسية - */
    --primary-green: #006d46;
    --primary-light: #00855a;
    --primary-lighter: #e8f5f0;
    --primary-lightest: #f4faf7;
    --primary-dark: #005538;
    --primary-darker: #00583c;
    --primary-darkest: #002b1d;

    /* تدرجات رمادية محايدة */
    --grey-900: #1a1a1a;
    --grey-800: #2c2c2c;
    --grey-700: #424242;
    --grey-500: #757575;
    --grey-300: #e0e0e0;
    --grey-100: #f5f5f5;
    --grey-50: #fafafa;
    --pure-white: #FFFFFF;

    /* التدرجات فقط */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-light) 100%);
    --gradient-light: linear-gradient(135deg, var(--primary-light) 0%, #00a366 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 109, 70, 0.08);
    --shadow-md: 0 6px 20px rgba(0, 109, 70, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 109, 70, 0.15);
    --shadow-xl: 0 25px 65px rgba(0, 109, 70, 0.18);

    --font-main: 'Neo Sans Arabic', sans-serif;

    /* المتغيرات التقنية */
    --container-width: 1400px;
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 28px;
    --nav-height: 90px;
    --top-bar-height: 45px;
    
    /* الانتقالات */
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. التهيئات الأساسية --- */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    font-size: 16px;
}

body { 
    font-family: var(--font-main); 
    background-color: var(--pure-white); 
    color: var(--gov-grey-700); 
    line-height: 1.7; 
    font-size: 16px; 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1;
}

::selection { 
    background-color: var(--primary-green); 
    color: var(--pure-white); 
}

::-webkit-scrollbar { 
    width: 6px; 
    background: var(--gov-grey-100); 
}

::-webkit-scrollbar-thumb { 
    background: var(--gradient-primary); 
    border-radius: 6px;
    border: 2px solid var(--gov-grey-100);
}

::-webkit-scrollbar-thumb:hover { 
    background: var(--primary-dark); 
}

a { 
    text-decoration: none; 
    color: var(--primary-green); 
    transition: var(--transition-fast); 
}

a:hover { 
    color: var(--primary-dark); 
}

h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-main);
    font-weight: 500; 
    color: var(--primary-darker); 
    line-height: 1.3; 
    margin-bottom: 1rem;
    font-feature-settings: "kern" 1;
}

.container { 
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 0 1.5rem;
    position: relative;
    width: 100%;
}

.section { 
    padding: 100px 0; 
    position: relative; 
    overflow: hidden;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 100%;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #c0eedba8;
    color: #006d46;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--primary-darker);
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-500);
    max-width: 700px;
    font-weight: 500;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

.section { 
    padding: 100px 0; 
    position: relative; 
    overflow: hidden;
    width: 100%;
}

/* --- 3. الشريط العلوي المحسن --- */
.gov-top-bar {
    background: rgb(245, 245, 245);
    backdrop-filter: blur(20px);
    font-size: 13px;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    font-weight: 400;
}

.gov-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-size: 14px;
    font-weight: 500;
}

.gov-left-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.gov-official-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grey-700);
}

.gov-flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    border: 1px solid var(--grey-300);
}

.gov-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grey-500);
}

.gov-date i {
    color: #000000;
    font-size: 16px;
}

.gov-date-mobile {
    display: none;
}

.beta-badge {
    background: #dfdfdf;
    color: #000000;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* --- 4. شريط التنقل --- */
#navbar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 109, 70, 0.1);
    transition: var(--transition-medium);
}

#navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-darker);
    text-decoration: none;
}

.nav-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-darker);
}

.nav-logo-sub {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gov-grey-500);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--gov-grey-700);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    position: relative;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-green);
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: rgba(0, 109, 70, 0.1);
}

/* --- 5. قسم البطل --- */
#hero {
position: relative;
padding: 200px 0 120px 0;
min-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
color: var(--pure-white);
background-attachment: fixed;
}

#hero-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}


#hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;

/* التدرج */
background-image: 
linear-gradient(135deg, rgba(0, 32, 20, 0.801) 30%, rgba(0, 85, 58, 0.9) 100%);
background-size: cover, 60px 60px, 60px 60px;
background-position: center, 0 0, 30px 30px;
background-repeat: no-repeat, repeat, repeat;
}


.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
margin: 0 auto;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--saudi-gold);
    color: var(--saudi-gold);
    padding: 1rem 2rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--pure-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: #FFFFFF;
    display: inline-block;
    box-shadow: none;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1.1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn-primary {
    background: var(--pure-white);
    color: var(--primary-green);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: var(--gov-grey-50);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--pure-white);
    transform: translateY(-4px);
}

/* --- 9. الفرص  مع الصور --- */
#golden-opportunities {
    background: var(--pure-white);
    padding: 120px 0;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.opportunity-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 109, 70, 0.08);
    transition: var(--transition-medium);
    border: 1px solid var(--grey-100);
    position: relative;
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 109, 70, 0.15);
    border-color: var(--primary-lighter);
}

.opportunity-image {
    position: relative;
    overflow: hidden;
}

.opportunity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.opportunity-category {
    background: var(--primary-lighter);
    color: var(--primary-green);
    padding: 0.7rem 1rem;
    width: 100%;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.opportunity-content {
    padding: 2rem;
}

.opportunity-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.opportunity-value {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.opportunity-value::before {
    content: '💰';
    font-size: 1.1rem;
}

.opportunity-desc {
    color: var(--grey-700);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.opportunity-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.meta-item {
    padding: 1rem;
    background: var(--grey-50);
    border-radius: var(--border-radius-sm);
    text-align: center;
    border-right: 3px solid var(--primary-green);
}

.meta-label {
    font-size: 0.85rem;
    color: var(--grey-500);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-darker);
}

/* --- النماذج الملهمة المحسنة --- */
#success-stories {
    background: var(--grey-50);
    padding: 120px 0;
}

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

.story-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 109, 70, 0.08);
    transition: var(--transition-medium);
    border: 1px solid var(--grey-100);
    position: relative;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 109, 70, 0.15);
    border-color: var(--primary-lighter);
}

.story-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--pure-white);
    font-size: 2.2rem;
    box-shadow: 0 6px 20px rgba(0, 109, 73, 0.2);
}

.story-category {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.story-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.story-desc {
    color: var(--grey-700);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.story-stat {
    padding: 1.5rem 1rem;
    background: var(--primary-lightest);
    border-radius: var(--border-radius-md);
    border-top: 3px solid var(--primary-green);
}

.story-stat-value {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.story-stat-label {
    font-size: 0.85rem;
    color: var(--grey-500);
    font-weight: 600;
}

/* --- لوحة المؤشرات --- */
#dashboard {
    background: var(--grey-50);
    padding: 100px 0;
}

.dashboard-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.summary-card {
    background: var(--pure-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--grey-100);
    border-top: 4px solid var(--primary-green);
}

.summary-value {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.summary-label {
    font-size: 0.9rem;
    color: var(--grey-500);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.summary-change {
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.chart-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--grey-100);
    border-top: 4px solid var(--primary-green);
}

.chart-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-darker);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sectors-visual {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
}

.sector-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--grey-50);
    border-radius: var(--border-radius-sm);
    border-right: 4px solid var(--primary-green);
    transition: var(--transition-fast);
}

.sector-item:hover {
    background: var(--primary-lightest);
    transform: translateX(-3px);
}

.sector-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sector-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.1rem;
}

.sector-name {
    font-weight: 600;
    color: var(--primary-darker);
}

.sector-value {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* --- الأنيميشنز المتقدمة --- */
@keyframes partnerSlide {
    0%, 20% { opacity: 1; transform: translateX(0); }
    25%, 45% { opacity: 0; transform: translateX(-100%); }
    50%, 70% { opacity: 0; transform: translateX(100%); }
    75%, 95% { opacity: 1; transform: translateX(0); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* --- تحسينات إضافية --- */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gov-grey-100);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Print Styles --- */
@media print {
    .gov-top-bar,
    .mobile-menu-btn,
    #navbar,
    .btn {
        display: none !important;
    }
    
    .section {
        padding: 20px 0;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}

#start-btn:hover{
    background: #ffffff;
}

#exp-btn:hover{
    background: #ffffff;
}
.fade{
    transition: opacity .15s linear;
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .container { padding: 0 1rem; }
    .minister-container, .vision-container { gap: 3rem; }
    .opportunities-grid, .stories-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
    #services .container > div:last-child { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 992px) {
    .gov-top-content { flex-direction: column; gap: 1rem; text-align: center; }
    .gov-official-info { flex-direction: column; gap: 0.5rem; }
    
    .minister-container, .vision-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
.vision-tabs-nav { 
    display: flex;
    flex-direction: row !important; /* يفرض الترتيب أفقي */
    justify-content: center; 
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    position: static !important; /* يلغي الـ sticky */
    top: auto;
}

.vision-tabs-nav > * {
    flex: 0 0 auto;
}

.vision-tab-btn {
    min-width: 100px;
    max-width: 140px;
    text-align: center;
    padding: 0.8rem 1rem;
}
    
    .journey-tabs-nav { 
        flex-direction: row; 
        justify-content: center;
        gap: 1rem;
    }
    
    .journey-tab-btn {
        flex: 1;
        min-width: 140px;
        max-width: 180px;
    }
    
    .dashboard-grid { 
        grid-template-columns: 1fr; 
    }
    
    .dashboard-summary { 
        grid-template-columns: 1fr; 
    }
    
    #services .container > div:last-child { 
        grid-template-columns: repeat(2, 1fr) !important; 
    }
}

@media (max-width: 768px) {
    .gov-top-bar { position: relative; }
    #navbar { top: 0; }
    #hero { padding-top: 180px; }
    
    .gov-top-content { 
        flex-direction: column; 
        gap: 0.5rem; 
        text-align: center; 
    }
    
    .gov-left-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    .gov-official-badge {
        width: 100%;
        justify-content: center;
    }
    
    .gov-left-info > .gov-date {
        display: none !important;
    }
    
    .gov-top-content > .beta-badge {
        display: none !important;
    }
    
    .gov-date-mobile {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .gov-date-mobile .gov-date {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        color: var(--grey-500);
    }
    
    .gov-date-mobile .beta-badge {
        display: block !important;
        margin: 0;
    }
    
    .mobile-menu-btn { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: var(--pure-white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        align-items: flex-start;
        gap: 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
        z-index: 999;
    }
    
    .nav-menu.active { right: 0; }
    
    .hero-buttons { 
        flex-direction: column; 
        align-items: center; 
    }
    
    .btn { 
        width: 100%; 
        max-width: 300px; 
    }
    
    .metrics-grid, .opportunities-grid, .stories-grid { 
        grid-template-columns: 1fr; 
    }
    
    #services .container > div:last-child { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 1.5rem;
    }
    
    #services .container > div:last-child > div {
        min-width: unset;
    }
    
    .vision-tabs-nav { 
        flex-direction: column; 
        gap: 1rem; 
    }
    
    .journey-step { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 1rem; 
    }
    
    .opportunity-meta, .story-stats { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 480px) {
    .section { padding: 80px 0; }
    .hero-badge { padding: 0.75rem 1.5rem; }
    .metric-card, .opportunity-card, .story-card { margin: 0 0.5rem; }
}
