:root {
    --navy: #0b1a30;
    --navy-deep: #061220;
    --navy-light: #0f2540;
    --teal: #00c9a7;
    --teal-dark: #00a085;
    --cyan: #00b4d8;
    --yellow: #fdd835;
    --text: #e8f0f8;
    --muted: #7f93a8;
    --card-border: rgba(255,255,255,0.08);
    --card-hover: rgba(0,201,167,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--navy);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    transition: background 0.3s ease;
}
.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scrolled {
    background: rgba(11,26,48,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.header-logo {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.header-logo span {
    color: var(--teal);
}

.header-nav {
    display: flex;
    gap: 40px;
}

.header-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--teal);
}

.header-cta {
    background: transparent;
    border: 1px solid var(--teal);
    color: var(--teal);
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--teal);
    color: var(--navy);
}

/* ===== SECTIONS ===== */
section {
    position: relative;
    padding: 120px 24px;
    z-index: 1;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-size: 17px;
    font-weight: 600;
}

.section-header {
    margin-bottom: 60px;
}

.line {
    width: 50px;
    height: 3px;
    background: var(--teal);
    margin-top: 24px;
}

p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.highlight {
    color: var(--teal);
}

.tag {
    font-family: 'Fira Code', monospace;
    color: var(--teal);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ===== HERO ===== */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-home {
    min-height: 70vh;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-home .hero-content {
    max-width: 760px;
}

.hero-home h1 {
    font-size: clamp(44px, 6vw, 76px);
    margin-bottom: 36px;
}

.hero-home .hero-description {
    font-size: 19px;
    line-height: 1.9;
    max-width: 600px;
}

.hero-inner {
    min-height: 36vh;
    padding-top: 140px;
    padding-bottom: 50px;
}

.hero-inner h1 {
    font-size: clamp(30px, 4.5vw, 50px);
}

.hero-inner .hero-description {
    font-size: 16px;
    max-width: 600px;
}

.hero-content {
    max-width: 700px;
}

.hero-tag {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--teal);
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero-description {
    font-size: 18px;
    color: var(--text);
    opacity: 0.85;
    max-width: 550px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
}

.stat {
    text-align: left;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
}

.hero-cta {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: var(--teal);
    color: var(--navy);
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #00ddb5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,201,167,0.25);
}

.btn-ghost {
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-ghost:hover {
    color: var(--teal);
}

.btn-ghost svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ===== PARTNERS ===== */
.partners-section {
    background: var(--navy-deep);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.partner {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 24px 40px;
    transition: all 0.3s ease;
}

.partner:hover {
    border-color: var(--teal);
    background: var(--card-hover);
}

.partner-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: linear-gradient(135deg, #003d33 0%, #00524a 50%, #003d44 100%);
}

.why-content {
    position: relative;
}

.why-section h2,
.why-section p {
    color: #fff;
}

.why-section .line {
    background: rgba(255,255,255,0.5);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-item {
    padding: 30px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(0,201,167,0.25);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.why-item h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 14px;
    opacity: 1;
    color: rgba(255,255,255,0.92);
    line-height: 1.8;
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--navy);
}

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

.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 36px 30px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    border-color: rgba(0,201,167,0.3);
    background: var(--card-hover);
    transform: translateY(-4px);
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--teal);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.service-card h3 {
    color: #fff;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 13px;
    line-height: 1.7;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--navy-deep);
    text-align: center;
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

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

.map-stat-value {
    font-size: 56px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.map-stat-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 8px;
}

/* ===== SEGMENTS ===== */
.segments-section {
    background: var(--navy);
}

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

.segment {
    padding: 30px 20px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.segment:hover {
    border-color: var(--cyan);
    background: rgba(0,180,216,0.08);
}

.segment-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    color: var(--cyan);
}

.segment-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.segment-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--yellow);
    padding: 100px 24px;
}

.cta-content {
    max-width: 600px;
}

.cta-section h2 {
    color: var(--navy);
}

.cta-section p {
    color: var(--navy);
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-dark {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-deep);
    padding: 40px 6%;
}

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

.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.hero-stats {
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .segments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .map-stats {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 5%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* === PAGE: ABOUT === */
/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--navy-deep);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    color: #fff;
}

.about-content p {
    margin-bottom: 20px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.org-chart {
    width: 100%;
    max-width: 400px;
}

.org-node {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    padding: 20px 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.org-node:hover {
    border-color: var(--teal);
    background: var(--card-hover);
}

.org-node.main {
    border-color: var(--teal);
    background: rgba(0,201,167,0.1);
}

.org-node-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.org-branches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.org-branches .org-node {
    padding: 15px;
    margin-bottom: 0;
}

.org-branches .org-node-title {
    font-size: 11px;
}

/* ===== METHODOLOGY SECTION ===== */
.methodology-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--cyan) 100%);
}

.methodology-section h2,
.methodology-section p {
    color: #fff;
}

.methodology-section .line {
    background: rgba(255,255,255,0.5);
}

.methodology-content {
    max-width: 900px;
}

.methodology-content p {
    margin-bottom: 24px;
    opacity: 0.9;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.feature-card h3 {
    color: #fff;
    font-size: 16px;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== VALUES SECTION ===== */
.values-section {
    background: var(--navy);
}

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

.value-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--teal);
    background: var(--card-hover);
}

.value-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 16px;
}

.value-card h3 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--yellow);
    padding: 100px 24px;
}

.cta-content {
    max-width: 600px;
}

.cta-section h2 {
    color: var(--navy);
}

.cta-section p {
    color: var(--navy);
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-dark {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-deep);
    padding: 40px 6%;
}

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

.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 5%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .org-branches {
        grid-template-columns: 1fr;
    }
}

/* === PAGE: SERVICES === */
/* ===== SERVICE CATEGORIES ===== */
.categories-section {
    background: var(--navy-deep);
}

.categories-intro {
    max-width: 700px;
    margin-bottom: 60px;
}

.categories-intro p {
    font-size: 16px;
    color: var(--text);
    opacity: 0.8;
}

.category-block {
    margin-bottom: 80px;
}

.category-block:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
}

.category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

.category-title h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
}

.category-title span {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--cyan);
    letter-spacing: 1px;
}

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

.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 32px 28px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--teal);
    background: var(--card-hover);
    transform: translateY(-4px);
}

.service-card h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-provider {
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    color: var(--cyan);
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* ===== FEATURED PLATFORM ===== */
.platform-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--cyan) 100%);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-content .tag {
    color: rgba(255,255,255,0.7);
}

.platform-content h2 {
    color: #fff;
}

.platform-content .line {
    background: rgba(255,255,255,0.4);
}

.platform-content p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.platform-stat {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.platform-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.platform-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ===== INDUSTRIES ===== */
.industries-section {
    background: var(--navy);
}

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

.industry-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--teal);
    background: var(--card-hover);
}

.industry-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--teal);
}

.industry-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.industry-card h4 {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

/* ===== CERTIFICATIONS ===== */
.certs-section {
    background: var(--navy-deep);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.cert-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 30px 20px;
    text-align: center;
}

.cert-value {
    font-family: 'Fira Code', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 10px;
}

.cert-label {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* ===== WORKFLOW ===== */
.workflow-section {
    background: var(--navy);
}

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

.workflow-step {
    text-align: center;
    position: relative;
}

.workflow-step::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 30px;
    color: var(--teal);
    font-size: 20px;
    opacity: 0.5;
}

.workflow-step:last-child::after {
    display: none;
}

.workflow-number {
    width: 56px;
    height: 56px;
    background: rgba(0,201,167,0.1);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Fira Code', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--teal);
}

.workflow-step h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}

.workflow-step p {
    font-size: 12px;
    line-height: 1.5;
}

/* ===== CTA ===== */
.cta-section {
    background: var(--yellow);
    padding: 80px 6%;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--navy);
}

.cta-content p {
    color: var(--navy);
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-dark {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-deep);
    padding: 40px 6%;
}

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

.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .certs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .workflow-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .workflow-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 5%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
    }
}

/* === PAGE: NEWS === */
/* ===== FEATURED NEWS ===== */
.featured-section {
    background: var(--navy-deep);
    padding: 80px 6%;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.featured-main {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-main:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
}

.featured-image {
    height: 300px;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,201,167,0.1) 0%, rgba(0,180,216,0.1) 100%);
}

.featured-image-placeholder {
    font-size: 48px;
    color: var(--teal);
    opacity: 0.3;
}

.featured-content {
    padding: 35px;
}

.news-category {
    display: inline-block;
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    color: var(--cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0,180,216,0.15);
    padding: 5px 12px;
    margin-bottom: 16px;
}

.featured-main h2 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.featured-main h2 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-main h2 a:hover {
    color: var(--teal);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.news-date {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date svg {
    width: 14px;
    height: 14px;
    stroke: var(--muted);
    stroke-width: 1.5;
    fill: none;
}

.news-excerpt {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.read-more svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Featured sidebar */
.featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-small {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 25px;
    transition: all 0.3s ease;
    flex: 1;
}

.featured-small:hover {
    border-color: var(--cyan);
    background: rgba(0,180,216,0.05);
}

.featured-small h3 {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.featured-small h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-small h3 a:hover {
    color: var(--cyan);
}

/* ===== NEWS GRID ===== */
.news-section {
    background: var(--navy);
    padding: 80px 6%;
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 50px;
}

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

.news-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
}

.news-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,201,167,0.08) 0%, rgba(0,180,216,0.08) 100%);
}

.news-card-image-placeholder {
    font-size: 32px;
    color: var(--teal);
    opacity: 0.2;
}

.news-card-content {
    padding: 25px;
}

.news-card h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.news-card h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card h3 a:hover {
    color: var(--teal);
}

.news-card .news-excerpt {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== SIDEBAR ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 30px;
}

.sidebar-widget h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h4 svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
    stroke-width: 1.5;
    fill: none;
}

/* Tags */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--muted);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-pill:hover {
    color: var(--teal);
    border-color: var(--teal);
    background: rgba(0,201,167,0.1);
}

/* Categories */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item span {
    font-size: 13px;
    color: var(--muted);
    transition: color 0.3s ease;
}

.category-item:hover span {
    color: var(--teal);
}

.category-count {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--navy);
    background: var(--muted);
    padding: 2px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-item:hover .category-count {
    background: var(--teal);
}

/* Recent posts */
.recent-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-item {
    display: flex;
    gap: 14px;
    text-decoration: none;
}

.recent-item-number {
    font-family: 'Fira Code', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-light);
    -webkit-text-stroke: 1px var(--teal);
    line-height: 1;
    min-width: 30px;
}

.recent-item-content h5 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.recent-item:hover h5 {
    color: var(--teal);
}

.recent-item-date {
    font-size: 11px;
    color: var(--muted);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    color: var(--teal);
    border-color: var(--teal);
}

.pagination .active {
    color: var(--navy);
    background: var(--teal);
    border-color: var(--teal);
}

.pagination .dots {
    background: transparent;
    border: none;
    color: var(--muted);
}

.pagination .nav-arrow {
    width: auto;
    padding: 0 16px;
    gap: 6px;
}

.pagination .nav-arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--cyan) 100%);
    padding: 80px 6%;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2,
.newsletter-content p {
    color: #fff;
}

.newsletter-content p {
    margin: 16px 0 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--navy);
    color: #fff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--navy-light);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-deep);
    padding: 40px 6%;
}

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

.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-sidebar {
        flex-direction: row;
    }
    
    .news-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-widget {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 5%;
    }
    
    .featured-sidebar {
        flex-direction: column;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

/* === PAGE: CONTACT === */
/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--navy-deep);
    padding: 100px 6%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 50px;
}

.contact-form-wrapper h2 {
    color: #fff;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group label span {
    color: var(--teal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(0,201,167,0.05);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.btn-submit {
    background: var(--teal);
    color: var(--navy);
    border: none;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #00ddb5;
    transform: translateY(-2px);
}

/* ===== CONTACT INFO ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 40px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--teal);
    background: var(--card-hover);
}

.info-card h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card h3 svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal);
    stroke-width: 1.5;
    fill: none;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--muted);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--teal);
}

.info-item span {
    color: var(--muted);
    font-size: 14px;
}

/* ===== CAREERS SECTION ===== */
.careers-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--cyan) 100%);
    padding: 100px 6%;
}

.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.careers-content h2,
.careers-content p {
    color: #fff;
}

.careers-content .line {
    background: rgba(255,255,255,0.5);
}

.careers-content .tag {
    color: rgba(255,255,255,0.6);
}

.careers-content p {
    margin-top: 24px;
    opacity: 0.9;
    font-size: 16px;
}

.careers-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 50px;
    text-align: center;
}

.careers-cta-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.careers-cta-email {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.careers-cta-email:hover {
    opacity: 0.8;
}

/* ===== WORKING HOURS ===== */
.hours-section {
    background: var(--navy);
    padding: 80px 6%;
}

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

.hours-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
}

.hours-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--cyan);
}

.hours-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.hours-card h3 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.hours-card p {
    font-size: 13px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-deep);
    padding: 40px 6%;
}

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

.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 5%;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .info-card {
        padding: 30px;
    }
}

/* === PAGE: JOIN === */
/* ===== PROGRAM SECTION ===== */
.program-section { background: var(--navy-deep); }

.program-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.program-content p { margin-bottom: 20px; }

.program-badge {
    background: rgba(0,201,167,0.08);
    border: 1px solid rgba(0,201,167,0.2);
    padding: 60px 50px;
    text-align: center;
}
.program-badge-title {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    color: var(--teal);
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.program-badge-name {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.program-badge-sub {
    font-size: 14px;
    color: var(--muted);
}

/* ===== BENEFITS ===== */
.benefits-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--cyan) 100%);
}
.benefits-section h2, .benefits-section p { color: #fff; }
.benefits-section .line { background: rgba(255,255,255,0.5); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 36px 30px;
    transition: all 0.3s ease;
}
.benefit-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}
.benefit-icon {
    width: 44px; height: 44px;
    margin-bottom: 20px; color: #fff;
}
.benefit-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; }
.benefit-card h3 { color: #fff; font-size: 16px; }
.benefit-card p { font-size: 14px; opacity: 0.85; color: rgba(255,255,255,0.8); }

/* ===== STANDARDS ===== */
.standards-section { background: var(--navy); }

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

.standard-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.standard-card:hover { border-color: var(--teal); background: var(--card-hover); }
.standard-value { font-size: 13px; font-weight: 700; color: var(--teal); letter-spacing: 1px; margin-bottom: 12px; }
.standard-label { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--navy-deep); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.step-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
}
.step-card:hover { border-color: var(--teal); background: var(--card-hover); }
.step-number {
    font-size: 48px; font-weight: 800;
    color: rgba(0,201,167,0.15); line-height: 1;
    margin-bottom: 20px;
}
.step-card h3 { color: #fff; font-size: 15px; margin-bottom: 12px; }
.step-card p { font-size: 13px; line-height: 1.7; }

/* ===== CLIENT BENEFITS ===== */
.client-section { background: var(--navy); }

.client-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.client-content p { margin-bottom: 20px; }

.client-example {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 40px;
}
.client-example h3 { color: var(--teal); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }

.example-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.example-num {
    min-width: 28px; height: 28px;
    background: var(--teal);
    color: var(--navy);
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.example-text { font-size: 14px; color: var(--text); opacity: 0.85; line-height: 1.6; }
.example-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
}

/* ===== CTA ===== */
.cta-section { background: var(--yellow); padding: 100px 6%; }
.cta-content { max-width: 650px; }
.cta-section h2 { color: var(--navy); }
.cta-section p { color: var(--navy); opacity: 0.8; margin-bottom: 30px; }
.btn-dark {
    display: inline-block; background: var(--navy); color: #fff;
    padding: 16px 40px; font-weight: 600; font-size: 13px;
    text-decoration: none; transition: all 0.3s ease;
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer { background: var(--navy-deep); padding: 40px 6%; }
.footer-simple { text-align: center; }
.footer-copy { color: var(--muted); font-size: 13px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.program-intro { grid-template-columns: 1fr; gap: 50px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .standards-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .client-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 80px 5%; }
    .standards-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
}

/* === SINGLE POST === */
.single-meta-top {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.single-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 50px;
}
.single-content {
    flex: 1;
    min-width: 0;
}
.single-featured-image {
    margin-bottom: 40px;
    border: 1px solid var(--card-border);
    overflow: hidden;
}
.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}
.single-body {
    color: var(--text);
    font-size: 16px;
    line-height: 1.9;
}
.single-body p {
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 16px;
}
.single-body h2 { font-size: 24px; margin-top: 40px; margin-bottom: 16px; color: #fff; }
.single-body h3 { font-size: 20px; margin-top: 30px; margin-bottom: 12px; color: #fff; }
.single-body ul, .single-body ol { margin: 16px 0; padding-left: 24px; color: var(--text); opacity: 0.9; }
.single-body li { margin-bottom: 8px; line-height: 1.7; }
.single-body blockquote {
    border-left: 3px solid var(--teal);
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(0,201,167,0.05);
    font-style: italic;
}
.single-body blockquote p { color: var(--text); margin-bottom: 0; }
.single-body img { max-width: 100%; height: auto; border: 1px solid var(--card-border); margin: 20px 0; }
.single-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.single-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.single-nav {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
}
.single-nav-link {
    flex: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.single-nav-link:hover { border-color: rgba(0,201,167,0.3); background: var(--card-hover); }
.single-nav-link.next { text-align: right; }
.single-nav-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.single-nav-link.next .single-nav-label { justify-content: flex-end; }
.single-nav-label svg { stroke: currentColor; stroke-width: 2; fill: none; width: 14px; height: 14px; }
.single-nav-title { display: block; font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }

.news-card-image img, .featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-image-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--muted); background: rgba(255,255,255,0.03); }

@media (max-width: 1024px) {
    .single-layout { flex-direction: column; }
}
@media (max-width: 768px) {
    .single-nav { flex-direction: column; }
    .single-nav-link.next { text-align: left; }
    .single-nav-link.next .single-nav-label { justify-content: flex-start; }
}


/* ═══ BREADCRUMBS ═══ */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 20px;
}
.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--teal); }
.breadcrumbs .sep { opacity: 0.4; }

/* ═══ FULL FOOTER ═══ */
.site-footer {
    background: var(--navy-deep);
    padding: 80px 24px 30px;
    border-top: 1px solid var(--card-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}
.footer-logo span { color: var(--teal); }
.footer-desc {
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
    border-radius: 4px;
    transition: all 0.3s;
}
.footer-social a:hover {
    border-color: var(--teal);
    background: rgba(0,201,167,0.1);
}
.footer-social svg {
    width: 16px;
    height: 16px;
    stroke: var(--muted);
    stroke-width: 2;
    fill: none;
}
.footer-social a:hover svg { stroke: var(--teal); }
.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}
.footer-contacts svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    text-align: center;
}
.footer-copy {
    font-size: 12px;
    color: var(--muted);
}

/* ═══ BURGER MENU ═══ */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══ FLAT ORG ILLUSTRATION ═══ */
.org-illustration { max-width: 100%; }
.org-illustration svg { width: 100%; height: auto; }


/* ═══ MOBILE RESPONSIVE ═══ */

/* Burger button */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    position: relative;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Tablet */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .single-layout { grid-template-columns: 1fr !important; }
    .news-layout { grid-template-columns: 1fr !important; }
    .why-grid { grid-template-columns: 1fr !important; }
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .segments-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    .flagship-grid { grid-template-columns: 1fr !important; }
    .contact-grid { grid-template-columns: 1fr !important; }
    .industries-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .certs-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .platform-grid { grid-template-columns: 1fr !important; }
    .workflow-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Burger visible */
    .burger { display: block !important; }
    .hide-mobile { display: none !important; }
    
    /* Full-screen mobile nav overlay */
    .header-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important;
        background-color: #061220 !important;
        display: none !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 100px 40px 40px !important;
        gap: 28px !important;
        z-index: 150 !important;
    }
    .header-nav.open {
        display: flex !important;
    }
    .header-nav a {
        font-size: 22px !important;
        font-weight: 600 !important;
        color: var(--text) !important;
    }
    .header-nav a:hover,
    .header-nav a.active {
        color: var(--teal) !important;
    }
    
    /* Header */
    .header { padding: 12px 16px !important; background-color: #061220 !important; }
    .header-cta.hide-mobile { display: none !important; }
    
    /* Sections */
    section { padding: 60px 16px !important; }
    .container { padding: 0 16px; }
    
    /* Hero */
    .hero-home { min-height: 55vh !important; padding-top: 110px !important; padding-bottom: 50px !important; }
    .hero-home h1 { font-size: clamp(30px, 8vw, 44px) !important; }
    .hero-home .hero-description { font-size: 16px !important; }
    .hero-inner { min-height: auto !important; padding-top: 100px !important; padding-bottom: 40px !important; }
    .hero-inner h1 { font-size: clamp(24px, 6vw, 34px) !important; }
    .hero-cta { flex-direction: column !important; align-items: flex-start !important; }
    
    /* ALL grids → single column */
    .services-grid { grid-template-columns: 1fr !important; }
    .segments-grid { grid-template-columns: 1fr !important; }
    .news-grid { grid-template-columns: 1fr !important; }
    .industries-grid { grid-template-columns: 1fr !important; }
    .certs-grid { grid-template-columns: 1fr !important; }
    .values-grid { grid-template-columns: 1fr !important; }
    .products-grid { grid-template-columns: 1fr !important; }
    .workflow-grid { grid-template-columns: 1fr !important; }
    .benefits-grid { grid-template-columns: 1fr !important; }
    .standards-grid { grid-template-columns: 1fr !important; }
    .steps-grid { grid-template-columns: 1fr !important; }
    .client-grid { grid-template-columns: 1fr !important; }
    .hours-grid { grid-template-columns: 1fr !important; }
    .careers-grid { grid-template-columns: 1fr !important; }
    .features-grid { grid-template-columns: 1fr !important; }
    .security-grid { grid-template-columns: 1fr !important; }
    .flagship-features { grid-template-columns: 1fr !important; }
    .platform-stats { grid-template-columns: 1fr !important; }
    .why-grid { grid-template-columns: 1fr !important; }
    .about-grid { grid-template-columns: 1fr !important; }
    .contact-grid { grid-template-columns: 1fr !important; }
    .flagship-grid { grid-template-columns: 1fr !important; }
    .platform-grid { grid-template-columns: 1fr !important; }
    .program-intro { grid-template-columns: 1fr !important; }
    .org-branches { grid-template-columns: 1fr !important; }
    
    /* Multi-column flex → column */
    .hero-stats { flex-direction: column !important; gap: 24px !important; }
    .map-stats { flex-direction: column !important; gap: 24px !important; }
    .org-comparison { flex-direction: column !important; }
    .org-comparison-side { min-width: auto !important; }
    
    /* News / sidebar */
    .news-layout { grid-template-columns: 1fr !important; }
    .single-layout { grid-template-columns: 1fr !important; }
    .sidebar { flex-direction: column !important; }
    .featured-grid { grid-template-columns: 1fr !important; }
    .featured-sidebar { flex-direction: column !important; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .site-footer { padding: 50px 16px 20px !important; }
    
    /* Partners */
    .partners-grid { flex-direction: column !important; gap: 8px !important; }
    .partner { padding: 14px 20px !important; }
    
    /* CTA */
    .cta-section { padding: 60px 16px !important; }
    
    /* Typography */
    h1 { font-size: clamp(26px, 7vw, 38px) !important; }
    h2 { font-size: clamp(20px, 5vw, 28px) !important; }
    
    /* Single post */
    .single-nav { flex-direction: column !important; }
    .single-nav-link.next { text-align: left !important; }
    .single-nav-link.next .single-nav-label { justify-content: flex-start !important; }
    
    /* Newsletter */
    .newsletter-form { flex-direction: column !important; }
    
    /* Contact form */
    .contact-form-wrapper { padding: 24px !important; }
    .info-card { padding: 24px !important; }
    
    /* Workflow arrows hidden */
    .workflow-step::after { display: none !important; }
}

/* Small mobile */
@media (max-width: 480px) {
    .stat-value { font-size: 28px !important; }
    .hero-home h1 { font-size: 28px !important; }
    .partner { padding: 12px 16px !important; }
    .partner-name { font-size: 13px !important; }
    .map-stat-value { font-size: 36px !important; }
}

/* ═══ BACK TO TOP ═══ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--teal);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 90;
    box-shadow: 0 4px 15px rgba(0,201,167,0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #00ddb5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,201,167,0.4);
}
.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}
@media (max-width: 768px) {
    .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ═══ ORG COMPARISON DIAGRAM ═══ */
.org-comparison {
    display: flex;
    gap: 40px;
    align-items: stretch;
}
.org-comparison-side {
    flex: 1;
    min-width: 0;
}
.mgmt-section .service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 30px 24px;
}
.mgmt-section .service-card:hover {
    border-color: rgba(0,201,167,0.3);
    background: var(--card-hover);
    transform: translateY(-3px);
}

/* Show contact in mobile nav */
@media (max-width: 768px) {
    .header-nav .show-mobile {
        display: block !important;
        margin-top: 16px;
        padding: 14px 32px !important;
        border: 1px solid var(--teal) !important;
        color: var(--teal) !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        letter-spacing: 1px !important;
        text-decoration: none !important;
    }
}


/* ═══ PAGE: STACK (Technology) ═══ */
.flagship-section { background: linear-gradient(135deg, var(--teal-dark), var(--cyan)); padding: 100px 24px; }
.flagship-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.flagship-content h2 { color: var(--navy); }
.flagship-content .line { background: var(--navy); opacity: 0.3; }
.flagship-content p { color: var(--navy); opacity: 0.85; margin-bottom: 16px; font-size: 15px; }
.flagship-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.flagship-feature { display: flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 500; font-size: 13px; }
.flagship-feature-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.flagship-feature-icon svg { width: 18px; height: 18px; stroke: var(--navy); stroke-width: 2; fill: none; }
.flagship-visual { display: flex; flex-direction: column; gap: 20px; }
.flagship-stat { background: rgba(255,255,255,0.15); padding: 30px; backdrop-filter: blur(10px); }
.flagship-stat-value { font-size: 42px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.flagship-stat-label { font-size: 12px; color: var(--navy); opacity: 0.75; letter-spacing: 1px; }
.layers-section { background: var(--navy-deep); }
.layer-block { margin-bottom: 80px; }
.layer-block:last-child { margin-bottom: 0; }
.layer-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 30px; padding-bottom: 16px; border-bottom: 1px solid var(--card-border); }
.layer-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--teal), var(--cyan)); display: flex; align-items: center; justify-content: center; }
.layer-icon svg { width: 22px; height: 22px; stroke: var(--navy); stroke-width: 2; fill: none; }
.layer-title h3 { font-size: 20px; margin-bottom: 4px; }
.layer-title span { font-family: 'Fira Code', monospace; font-size: 10px; color: var(--muted); letter-spacing: 1px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: rgba(255,255,255,0.02); border: 1px solid var(--card-border); padding: 32px 28px; transition: all 0.4s ease; position: relative; }
.product-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--teal), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.product-card:hover { border-color: var(--teal); background: var(--card-hover); transform: translateY(-4px); }
.product-card:hover::after { transform: scaleX(1); }
.product-card h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.product-card p { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.product-tag { font-family: 'Fira Code', monospace; font-size: 9px; color: var(--cyan); background: rgba(0,180,216,0.1); padding: 4px 10px; letter-spacing: 0.5px; }
.product-company { font-family: 'Fira Code', monospace; font-size: 9px; color: var(--yellow); background: rgba(253,216,53,0.1); padding: 4px 10px; letter-spacing: 0.5px; }
.tech-section { background: var(--navy); }
.tech-category { margin-bottom: 50px; }
.tech-category:last-child { margin-bottom: 0; }
.tech-category-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.tech-category-title::after { content: ''; flex: 1; height: 1px; background: var(--card-border); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tech-tag { font-family: 'Fira Code', monospace; font-size: 11px; padding: 10px 18px; background: rgba(255,255,255,0.03); border: 1px solid var(--card-border); color: var(--text); transition: all 0.3s ease; }
.tech-tag:hover { border-color: var(--teal); background: var(--card-hover); color: var(--teal); }
.industries-section { background: var(--navy-deep); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card { background: rgba(255,255,255,0.02); border: 1px solid var(--card-border); padding: 28px 20px; text-align: center; transition: all 0.3s ease; }
.industry-card:hover { border-color: var(--cyan); background: rgba(0,180,216,0.08); }
.industry-icon { width: 36px; height: 36px; margin: 0 auto 14px; color: var(--cyan); }
.industry-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; }
.industry-name { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.security-section { background: var(--navy); }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.security-card { background: rgba(255,255,255,0.02); border: 1px solid var(--card-border); padding: 36px 30px; transition: all 0.3s ease; }
.security-card:hover { border-color: var(--yellow); background: rgba(253,216,53,0.05); }
.security-card h4 { color: #fff; font-size: 16px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.security-card h4 svg { width: 22px; height: 22px; stroke: var(--yellow); stroke-width: 1.5; fill: none; }
.security-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.security-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.security-feature { font-family: 'Fira Code', monospace; font-size: 9px; color: var(--yellow); background: rgba(253,216,53,0.1); padding: 5px 10px; letter-spacing: 0.5px; }
.cta-section { background: var(--yellow); padding: 100px 6%; }
.cta-content { max-width: 600px; }
.cta-section h2 { color: var(--navy); }
.cta-section p { color: var(--navy); opacity: 0.8; margin-bottom: 30px; }
.btn-dark { display: inline-block; background: var(--navy); color: #fff; padding: 16px 40px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-decoration: none; transition: all 0.3s ease; }
.btn-dark:hover { background: var(--navy-deep); transform: translateX(4px); }
footer { background: var(--navy-deep); padding: 40px 6%; }
.footer-simple { text-align: center; }
.footer-copy { font-size: 12px; color: var(--muted); letter-spacing: 1px; }
@media (max-width: 1024px) {
    .flagship-grid { grid-template-columns: 1fr; gap: 40px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr !important; }
    .industries-grid { grid-template-columns: 1fr !important; }
    .security-grid { grid-template-columns: 1fr !important; }
    .flagship-features { grid-template-columns: 1fr !important; }
}