/* ===================================================
   NECZUX GLOBAL GROUP — MAIN STYLESHEET
   Brand: Navy Blue | Turquoise | Warm White
   =================================================== */

/* ===== RESET & ROOT VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy:         #000F7A;
    --navy-dark:    #00085A;
    --navy-deep:    #00063D;
    --teal:         #2ECFBE;
    --teal-bright:  #40E0D0;
    --teal-dim:     #1AADA0;
    --white:        #F5F5F3;
    --white-pure:   #FFFFFF;
    --off-white:    #EEF0F4;
    --dark:         #0D0F1E;
    --gray-mid:     #5A6070;
    --gray-light:   #BDC3CC;
    --success:      #22C55E;
    --warm-bg:      #F7F8FA;

    --font-head:    'Poppins', 'Open Sans', sans-serif;
    --font-body:    'Lato', 'Open Sans', sans-serif;
    --font-mono:    'Roboto Mono', monospace;

    --radius:       10px;
    --radius-lg:    18px;
    --shadow-sm:    0 2px 8px rgba(0,15,122,0.08);
    --shadow-md:    0 6px 24px rgba(0,15,122,0.12);
    --shadow-lg:    0 16px 48px rgba(0,15,122,0.16);
    --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
    --section-pad:  5rem 0;
    --max-width:    1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white-pure);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--gray-mid); margin-bottom: 1rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

.section-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p  { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--dark);
    border-color: var(--teal);
}
.btn-primary:hover {
    background: var(--teal-bright);
    border-color: var(--teal-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46,207,190,0.35);
}

.btn-navy {
    background: var(--navy);
    color: var(--white-pure);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,15,122,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white-pure);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white-pure);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white-pure);
}

.btn-outline-teal {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}
.btn-outline-teal:hover {
    background: var(--teal);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.full-width { width: 100%; }

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,15,122,0.07);
    padding: 0.85rem 0;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}
.logo img { height: 38px; width: auto; }
.logo-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.nav-menu { display: flex; align-items: center; }

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

.nav-list li a {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.nav-list li a:hover,
.nav-list li a.active {
    color: var(--navy);
    background: rgba(0,15,122,0.05);
}
.nav-list li a.active {
    font-weight: 600;
}

.nav-cta {
    background: var(--teal) !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    border-radius: var(--radius) !important;
    padding: 0.6rem 1.4rem !important;
}
.nav-cta:hover {
    background: var(--teal-bright) !important;
    box-shadow: 0 4px 16px rgba(46,207,190,0.4);
    transform: translateY(-1px);
}

/* ===== DROPDOWN MENU ===== */
.dropdown { position: relative; }

.dropdown-toggle i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.dropdown:hover .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 560px;
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,15,122,0.08);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    z-index: 200;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.dropdown-column {
    padding: 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}
.dropdown-column:hover {
    background: rgba(0,15,122,0.03);
    border-color: rgba(0,15,122,0.06);
}

.dropdown-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dropdown-column h4 i { color: var(--teal); font-size: 0.85rem; }

.dropdown-column p {
    font-size: 0.8rem;
    color: var(--gray-mid);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.dropdown-column .dd-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-dim);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}
.dropdown-column:hover .dd-link {
    color: var(--navy);
    gap: 0.5rem;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 6px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

/* Subtle dot-grid pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(46,207,190,0.12) 1px, transparent 1px);
    background-size: 36px 36px;
    z-index: 0;
}

/* Bottom gradient fade */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--navy-deep), transparent);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(46,207,190,0.12);
    border: 1px solid rgba(46,207,190,0.3);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--teal-bright);
    letter-spacing: 0.05em;
}
.badge i { font-size: 0.55rem; color: var(--teal); }

.hero-title {
    color: var(--white-pure);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: var(--teal-bright);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(245,245,243,0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: rgba(245,245,243,0.75);
    font-family: var(--font-head);
    font-weight: 500;
}
.hero-features .feature i { color: var(--teal); font-size: 0.8rem; }

/* ── Homepage hero: content block is left-aligned in 2-col grid ── */
.hero .hero-content {
    text-align: left;
}
.hero .hero-content .hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 540px;
}
.hero .hero-content .hero-buttons { justify-content: flex-start; }
.hero .hero-content .hero-features { justify-content: flex-start; }

/* Hero graphic — animated rings */
.hero-graphic {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
}

.graphic-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(46,207,190,0.2);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: pulse-ring 4s ease-in-out infinite;
}
.ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.ring-2 { width: 75%;  height: 75%;  animation-delay: 0.8s; border-color: rgba(46,207,190,0.3); }
.ring-3 { width: 50%;  height: 50%;  animation-delay: 1.6s; border-color: rgba(46,207,190,0.5); }

@keyframes pulse-ring {
    0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%,-50%) scale(1.04); }
}

.graphic-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 110px; height: 110px;
    background: linear-gradient(135deg, var(--navy), var(--teal-dim));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(46,207,190,0.3);
    gap: 0.25rem;
    border: 2px solid rgba(46,207,190,0.5);
}
.graphic-center i { font-size: 1.75rem; color: var(--teal-bright); }
.graphic-center span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(245,245,243,0.8);
    letter-spacing: 0.1em;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 8rem 0 4.5rem;
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-dark) 60%, var(--navy) 100%);
    color: var(--white-pure);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(46,207,190,0.1) 1px, transparent 1px);
    background-size: 32px 32px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white-pure); margin-bottom: 0.75rem; }
.page-hero .hero-subtitle {
    font-size: 1.15rem;
    color: var(--teal-bright);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-head);
    text-align: center;
    display: block;
    width: 100%;
}
.page-hero .hero-description {
    font-size: 1.05rem;
    color: rgba(245,245,243,0.8);
    max-width: 680px;
    margin: 0.25rem auto 0;
    line-height: 1.75;
    text-align: center;
}

/* ===== CORE SERVICES (homepage) ===== */
.core-services {
    padding: var(--section-pad);
    background: var(--warm-bg);
}

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

.service-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(0,15,122,0.07);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46,207,190,0.2);
}

.service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--teal-dim));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--white-pure);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
    color: var(--navy);
}
.service-card p { font-size: 0.93rem; margin-bottom: 1.25rem; flex: 1; }
.service-link {
    color: var(--teal-dim);
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
    margin-top: auto;
}
.service-link:hover { color: var(--navy); gap: 0.55rem; }

/* ===== FRAMEWORK (homepage) ===== */
.framework {
    padding: var(--section-pad);
    background: var(--white-pure);
}

.framework-timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    counter-reset: step;
}

.framework-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--teal), var(--navy));
    z-index: 0;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

.step-number {
    width: 64px; height: 64px;
    background: var(--white-pure);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    transition: var(--transition);
}
.timeline-step:hover .step-number {
    background: var(--teal);
    color: var(--dark);
    transform: scale(1.08);
}
.timeline-step h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.3rem; }
.timeline-step p  { font-size: 0.82rem; }

/* ===== WHY CHOOSE ===== */
.why-choose {
    padding: var(--section-pad);
    background: var(--warm-bg);
}

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

.benefit-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0,15,122,0.07);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card > i {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1rem;
    display: block;
}
.benefit-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.benefit-card p  { font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: var(--section-pad);
    background: var(--white-pure);
}

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

.testimonial-card {
    background: var(--warm-bg);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(0,15,122,0.07);
    border-left: 3px solid var(--teal);
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testimonial-stars {
    color: #F59E0B;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 0.92rem;
    font-style: italic;
    color: var(--gray-mid);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-pure);
    font-size: 1rem;
    flex-shrink: 0;
}
.author-name  { font-weight: 700; font-size: 0.88rem; color: var(--navy); font-family: var(--font-head); }
.author-title { font-size: 0.78rem; color: var(--gray-mid); }

/* ===== MISSION VISION (about) ===== */
.mission-vision {
    padding: var(--section-pad);
    background: var(--warm-bg);
}

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

.mv-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,15,122,0.07);
    border-top: 3px solid var(--teal);
}
.mv-card > i {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
    display: block;
}
.mv-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 0.75rem; }
.mv-card p  { font-size: 0.93rem; }

/* ===== CORE IDENTITY ===== */
.core-identity {
    padding: var(--section-pad);
    background: var(--white-pure);
}
.identity-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.identity-statement {
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}
.identity-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    font-style: italic;
    padding: 1.25rem 2rem;
    background: rgba(46,207,190,0.07);
    border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    text-align: left;
    margin: 0 auto 2rem;
}

/* ===== CORE VALUES ===== */
.core-values {
    padding: var(--section-pad);
    background: var(--navy-deep);
}
.core-values .section-header h2 { color: var(--white-pure); }
.core-values .section-header p  { color: rgba(245,245,243,0.7); }
.core-values .section-label     { color: var(--teal); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.value-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(46,207,190,0.15);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: var(--transition);
}
.value-card:hover {
    background: rgba(46,207,190,0.08);
    border-color: rgba(46,207,190,0.4);
    transform: translateY(-4px);
}
.value-card > i {
    font-size: 1.75rem;
    color: var(--teal);
    margin-bottom: 1rem;
    display: block;
}
.value-card h4 {
    color: var(--white-pure);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}
.value-card p {
    font-size: 0.82rem;
    color: rgba(245,245,243,0.65);
    line-height: 1.5;
}

/* ===== GROWTH LOOP ===== */
.growth-loop {
    padding: var(--section-pad);
    background: var(--warm-bg);
}

.loop-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.loop-visual-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

/* SVG-based circle diagram is embedded inline in HTML */

.loop-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.loop-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: var(--white-pure);
    border: 1px solid rgba(0,15,122,0.07);
    transition: var(--transition);
}
.loop-step-item:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
}
.loop-step-num {
    width: 32px; height: 32px;
    background: var(--navy);
    color: var(--white-pure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.loop-step-item h5 {
    font-size: 0.92rem;
    color: var(--navy);
    margin-bottom: 0.15rem;
}
.loop-step-item p { font-size: 0.82rem; }

/* ===== WHY SECTION (about) ===== */
.why-section {
    padding: var(--section-pad);
    background: var(--white-pure);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 1.5rem;
}
.why-card {
    background: var(--warm-bg);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0,15,122,0.07);
    transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--teal-dim));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white-pure);
    font-size: 1.35rem;
}
.why-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.9rem; }

/* ===== LEADERSHIP ===== */
.leadership-section {
    padding: var(--section-pad);
    background: var(--warm-bg);
}
.leadership-grid {
    display: flex;
    justify-content: center;
}
.leader-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 380px;
    width: 100%;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,15,122,0.07);
}
.leader-image {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--navy), var(--teal-dim));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white-pure);
    font-size: 2.5rem;
}
.leader-card h3 { color: var(--navy); margin-bottom: 0.25rem; }
.leader-role { color: var(--teal-dim); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
.leader-bio { font-size: 0.92rem; margin-bottom: 1.5rem; }
.leader-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.leader-contact a:hover { color: var(--teal-dim); }

/* ===== RESULTS STRIP ===== */
.results-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.result-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(46,207,190,0.15);
}
.result-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--teal-bright);
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.result-label { font-size: 0.82rem; color: rgba(245,245,243,0.7); }

/* ===== SERVICE ARCHITECTURE (services page) ===== */
.service-architecture {
    padding: var(--section-pad);
    background: var(--white-pure);
}

.service-pillar {
    margin-bottom: 3.5rem;
    padding: 2.5rem;
    background: var(--warm-bg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--teal);
    box-shadow: var(--shadow-sm);
}
.service-pillar:nth-child(2) { border-left-color: var(--navy); }
.service-pillar:nth-child(3) { border-left-color: #2DD4BF; }

.pillar-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.pillar-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    opacity: 0.08;
    font-family: var(--font-head);
    line-height: 1;
    flex-shrink: 0;
}
.pillar-title h2 { margin-bottom: 0.35rem; font-size: 1.6rem; color: var(--navy); }
.pillar-tagline  { color: var(--teal-dim); font-style: italic; font-weight: 600; font-size: 0.92rem; text-align: center; }

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
    gap: 1rem;
}
.service-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: var(--white-pure);
    padding: 1.1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,15,122,0.06);
    transition: var(--transition);
}
.service-item:hover { border-color: rgba(46,207,190,0.3); box-shadow: var(--shadow-sm); }
.service-item > i { color: var(--teal); margin-top: 0.1rem; font-size: 1rem; flex-shrink: 0; }
.service-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.service-item p  { font-size: 0.85rem; }

/* Strategy items */
.strategy-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
    gap: 1rem;
}
.strategy-item {
    background: var(--white-pure);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,15,122,0.06);
    transition: var(--transition);
}
.strategy-item:hover { border-color: rgba(46,207,190,0.3); box-shadow: var(--shadow-sm); }
.strategy-item h4 { font-size: 0.95rem; color: var(--navy); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; }
.strategy-item h4 i { color: var(--teal); font-size: 0.85rem; }
.strategy-item p { font-size: 0.85rem; }

/* ===== FRAMEWORK SECTION (services page) ===== */
.framework-section {
    padding: var(--section-pad);
    background: var(--warm-bg);
}
.framework-process {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.process-step-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}
.process-step-row:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 52px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, var(--teal), rgba(46,207,190,0.1));
}
.step-dot {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white-pure);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0,15,122,0.2);
    margin-bottom: 1.5rem;
}
.step-info { flex: 1; padding-bottom: 1.5rem; }
.step-info h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.35rem; }
.step-info p  { font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-section { padding: var(--section-pad); background: var(--white-pure); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
}

.contact-info h2 { color: var(--navy); margin-bottom: 0.75rem; }
.contact-description { margin-bottom: 2rem; }

.contact-methods { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-method { display: flex; gap: 1rem; align-items: flex-start; }
.contact-method-icon {
    width: 44px; height: 44px;
    background: rgba(0,15,122,0.07);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-method h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 0.25rem; }
.contact-method a  { display: block; color: var(--gray-mid); font-size: 0.9rem; transition: var(--transition); }
.contact-method a:hover { color: var(--navy); }
.contact-method p  { font-size: 0.88rem; margin: 0; }
.small-note { font-size: 0.78rem; opacity: 0.65; }

.social-contact-row h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 0.85rem; }
.social-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.social-icons-row a {
    width: 40px; height: 40px;
    background: var(--warm-bg);
    border: 1px solid rgba(0,15,122,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 0.95rem;
    transition: var(--transition);
}
.social-icons-row a:hover {
    background: var(--navy);
    color: var(--white-pure);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white-pure) !important;
    border-color: #25D366 !important;
    border-radius: var(--radius);
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: var(--font-head);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: 1rem;
}
.whatsapp-btn:hover { background: #1EB85A; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.35); }
.whatsapp-btn i { font-size: 1rem; }

/* Contact Form */
.contact-form-container h2 { color: var(--navy); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-weight: 600; font-size: 0.88rem; color: var(--dark); font-family: var(--font-head); }
input, select, textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(0,15,122,0.12);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white-pure);
    transition: var(--transition);
    width: 100%;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(46,207,190,0.12);
}
textarea { resize: vertical; min-height: 120px; }
.checkbox-group { flex-direction: row; align-items: center; gap: 0.5rem; }
.checkbox-group input { width: auto; }
.checkbox-group label { font-weight: 400; font-size: 0.88rem; }
.form-note { font-size: 0.8rem; color: var(--gray-light); text-align: center; margin-top: 0.5rem; }

/* ===== FAQ ===== */
.faq-section { padding: var(--section-pad); background: var(--warm-bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    background: var(--white-pure);
    border-radius: var(--radius);
    border: 1px solid rgba(0,15,122,0.08);
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    gap: 1rem;
}
.faq-question h4 {
    color: var(--navy);
    font-size: 0.97rem;
    margin: 0;
    line-height: 1.4;
}
.faq-question i {
    color: var(--teal);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}
.faq-answer p { font-size: 0.9rem; }

/* ===== PRODUCTS ===== */
.products-categories { padding: var(--section-pad); background: var(--white-pure); }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0,15,122,0.08);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(46,207,190,0.2); }

.category-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.category-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--navy), var(--teal-dim));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white-pure);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.category-card h3 { font-size: 1.05rem; color: var(--navy); margin: 0; }

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(34,197,94,0.1);
    color: var(--success);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-head);
    margin-bottom: 1rem;
}
.category-badge i { font-size: 0.6rem; }

.category-card ul {
    list-style: none;
    flex: 1;
    margin-bottom: 1.25rem;
}
.category-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0;
    font-size: 0.88rem;
    color: var(--gray-mid);
    border-bottom: 1px solid rgba(0,15,122,0.05);
}
.category-card li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}
.category-card li:last-child { border-bottom: none; }

.delivery-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--teal-dim);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== PRODUCT BENEFITS ===== */
.product-benefits { padding: var(--section-pad); background: var(--warm-bg); }
.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    gap: 1.25rem;
}
.benefit-item {
    background: var(--white-pure);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    border: 1px solid rgba(0,15,122,0.07);
    transition: var(--transition);
}
.benefit-item:hover { box-shadow: var(--shadow-sm); border-color: rgba(46,207,190,0.2); }
.benefit-item > i { font-size: 1.75rem; color: var(--teal); display: block; margin-bottom: 0.75rem; }
.benefit-item h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 0.3rem; }
.benefit-item p  { font-size: 0.82rem; }

/* Ordering process */
.ordering-process { padding: var(--section-pad); background: var(--white-pure); }
.process-steps-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}
.process-steps-row::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(to right, var(--teal), var(--navy));
}
.proc-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.proc-num {
    width: 56px; height: 56px;
    background: var(--white-pure);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.85rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    font-family: var(--font-head);
    transition: var(--transition);
}
.proc-step:hover .proc-num { background: var(--teal); color: var(--dark); }
.proc-step h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 0.3rem; }
.proc-step p  { font-size: 0.82rem; }

/* ===== TRAINING ===== */
.training-programs { padding: var(--section-pad); background: var(--white-pure); }
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 1.5rem;
}
.program-card {
    background: var(--warm-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0,15,122,0.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.program-icon {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, var(--navy), var(--teal-dim));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white-pure);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.program-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.4rem; }
.program-description {
    font-style: italic;
    color: var(--teal-dim);
    font-size: 0.88rem;
    margin-bottom: 1.1rem;
}
.program-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.program-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--gray-mid);
    border-bottom: 1px solid rgba(0,15,122,0.05);
}
.program-features li:last-child { border-bottom: none; }
.program-features i { color: var(--success); font-size: 0.8rem; flex-shrink: 0; }

.methodology-section { padding: var(--section-pad); background: var(--warm-bg); }
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    gap: 1.5rem;
}
.methodology-item {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: var(--white-pure);
    border-radius: var(--radius);
    border: 1px solid rgba(0,15,122,0.07);
    transition: var(--transition);
}
.methodology-item:hover { box-shadow: var(--shadow-sm); border-color: rgba(46,207,190,0.2); }
.methodology-item > i { font-size: 1.75rem; color: var(--navy); display: block; margin-bottom: 0.85rem; }
.methodology-item h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 0.35rem; }
.methodology-item p  { font-size: 0.82rem; }

.formats-section { padding: var(--section-pad); background: var(--white-pure); }
.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
    gap: 1.5rem;
}
.format-card {
    background: var(--warm-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0,15,122,0.07);
    text-align: center;
    transition: var(--transition);
}
.format-card:hover { box-shadow: var(--shadow-md); }
.format-card > i { font-size: 2rem; color: var(--teal); display: block; margin-bottom: 1.25rem; }
.format-card h4 { color: var(--navy); margin-bottom: 1rem; }
.format-card ul { list-style: none; text-align: left; }
.format-card li {
    font-size: 0.88rem;
    color: var(--gray-mid);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0,15,122,0.06);
    display: flex; align-items: center; gap: 0.4rem;
}
.format-card li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}
.format-card li:last-child { border-bottom: none; }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(46,207,190,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--white-pure); margin-bottom: 0.75rem; }
.cta-content > p {
    color: rgba(245,245,243,0.8);
    max-width: 520px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.main-footer {
    background: var(--dark);
    color: var(--white-pure);
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}
.footer-logo img { height: 36px; width: auto; }
.footer-logo span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white-pure);
}

.footer-description {
    color: rgba(245,245,243,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-contact-info { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-info a,
.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(245,245,243,0.6);
    font-size: 0.85rem;
    margin: 0;
    transition: var(--transition);
}
.footer-contact-info a:hover { color: var(--teal); }
.footer-contact-info i { color: var(--teal); font-size: 0.85rem; width: 14px; }

.footer-col h4 {
    color: var(--white-pure);
    font-family: var(--font-head);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
    color: rgba(245,245,243,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--teal);
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.footer-socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(245,245,243,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--teal);
    color: var(--dark);
    border-color: var(--teal);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.newsletter-form input {
    flex: 1;
    padding: 0.65rem 0.85rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: var(--white-pure);
    font-size: 0.85rem;
    min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(245,245,243,0.4); }
.newsletter-form input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 2px rgba(46,207,190,0.12);
}
.newsletter-form button {
    background: var(--teal);
    color: var(--dark);
    border: none;
    border-radius: var(--radius);
    width: 42px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--teal-bright); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { color: rgba(245,245,243,0.4); font-size: 0.82rem; margin: 0; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(245,245,243,0.4); font-size: 0.82rem; transition: var(--transition); }
.footer-links a:hover { color: var(--teal); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .values-grid { grid-template-columns: repeat(3,1fr); }
    .services-grid, .benefits-grid, .mv-grid { grid-template-columns: 1fr 1fr; }
    .hero .container { gap: 2.5rem; }
    .loop-container { grid-template-columns: 1fr; gap: 2rem; }
    .loop-visual-wrap { width: 260px; height: 260px; }
    .results-grid { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .dropdown-menu { width: 480px; }
}

@media (max-width: 768px) {
    :root { --section-pad: 3.5rem 0; }

    .nav-menu {
        position: fixed;
        top: 0; /* Will be set by JS */
        left: -100%;
        width: 100%;
        height: 100vh; /* Will be set by JS */
        background: var(--white-pure);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .nav-menu.active { left: 0; }

    .nav-list { flex-direction: column; gap: 0.25rem; width: 100%; }
    .nav-list li a { padding: 0.75rem 1rem; border-radius: var(--radius); width: 100%; }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,15,122,0.03);
        border-radius: var(--radius);
        padding: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
    }
    .dropdown-menu.open { max-height: 500px; }
    .dropdown-grid { grid-template-columns: 1fr; gap: 0; }

    .mobile-menu-btn { display: flex; }

    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-graphic { display: none; }
    .hero-subtitle { margin: 0 auto 2rem; text-align: center; }
    /* On mobile the single-col homepage centres everything */
    .hero .hero-content                   { text-align: center; }
    .hero .hero-content .hero-subtitle    { text-align: center; margin: 0 auto 2rem; }
    .hero .hero-content .hero-buttons     { justify-content: center; }
    .hero .hero-content .hero-features    { justify-content: center; }
    /* Inner page subtitles always centred */
    .page-hero .hero-subtitle             { text-align: center; }
    .page-hero .hero-description          { text-align: center; }
    .hero-buttons { justify-content: center; flex-direction: column; align-items: stretch; }
    .hero-features { justify-content: center; }

    .services-grid,
    .benefits-grid,
    .mv-grid,
    .testimonials-grid,
    .values-grid { grid-template-columns: 1fr; }
    .framework-timeline { flex-direction: column; gap: 1.5rem; align-items: center; }
    .framework-timeline::before { display: none; }
    .results-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .process-steps-row { grid-template-columns: 1fr 1fr; }
    .process-steps-row::before { display: none; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .hero-title { font-size: 2.2rem; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .process-steps-row { grid-template-columns: 1fr; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-teal { color: var(--teal); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===== ADD THESE TO YOUR EXISTING MAIN.CSS ===== */

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: white;
    padding: 8px 16px;
    z-index: 1001;
    text-decoration: none;
    border-radius: 0 0 var(--radius) 0;
    font-weight: 600;
    transition: top 0.3s ease;
}
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 99;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
}
.scroll-top-btn.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    background: var(--navy);
    color: var(--white-pure);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.scroll-top-btn:focus {
    outline: 2px solid var(--white-pure);
    outline-offset: 2px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white-pure);
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.show { 
    transform: translateY(0); 
}
.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.cookie-content p { 
    color: rgba(245,245,243,0.9);
    margin: 0;
    font-size: 0.9rem;
}
.cookie-buttons { 
    display: flex; 
    gap: 0.5rem; 
    flex-shrink: 0;
}
.cookie-buttons .btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

/* Case Studies Preview */
.case-studies-preview {
    padding: var(--section-pad);
    background: var(--warm-bg);
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.case-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    border: 1px solid rgba(0,15,122,0.07);
}
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46,207,190,0.2);
}
.case-image {
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
}
.case-card h3 {
    font-size: 1.1rem;
    margin: 1rem 1rem 0.5rem;
    color: var(--navy);
}
.case-card p {
    font-size: 0.9rem;
    margin: 0 1rem 1rem;
    color: var(--gray-mid);
}
.case-link {
    display: block;
    padding: 1rem;
    border-top: 1px solid rgba(0,15,122,0.07);
    color: var(--teal-dim);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.case-card:hover .case-link {
    color: var(--navy);
    padding-left: 1.5rem;
}

/* Hero Stats (Contact Page) */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.hero-stats div {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
.hero-stats span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.25rem;
}

/* Bundle Offer Section */
.bundle-offer {
    padding: 4rem 0;
    background: var(--warm-bg);
}
.bundle-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.bundle-content > div:first-child {
    flex: 1;
}
.bundle-content > div:last-child {
    flex: 1;
    text-align: center;
}
.bundle-content h2 {
    font-size: 1.8rem;
    margin: 1rem 0;
}
.bundle-discount-box {
    background: linear-gradient(135deg, var(--navy), var(--teal-dim));
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: white;
}
.bundle-discount-box span {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

/* Form Subtitle */
.form-subtitle {
    color: var(--gray-mid);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Skeleton Loading */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border-radius: var(--radius);
}

/* Mobile Responsive Additions */
@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .hero-stats div {
        width: 100%;
        max-width: 200px;
    }
    .bundle-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
/* ===== SERVICE NAV PILLS (services.html) ===== */
.service-nav {
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(0,15,122,0.08);
    position: sticky;
    top: 72px;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.service-nav-inner {
    display: flex;
    gap: 0.25rem;
    padding: 0.75rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.service-nav-inner::-webkit-scrollbar { display: none; }
.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-mid);
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.nav-pill:hover,
.nav-pill.active {
    background: var(--navy);
    color: var(--white-pure);
    border-color: var(--navy);
}
.nav-pill i { font-size: 0.9rem; }

/* ===== PRODUCT LINK BOX (services.html) ===== */
.product-link-box {
    background: linear-gradient(135deg, rgba(46,207,190,0.06), rgba(0,15,122,0.04));
    border: 1px solid rgba(46,207,190,0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3.5rem;
}
.product-link-box h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}
.product-link-box p {
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TRAINING ITEM (training.html) ===== */
.training-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem;
    background: var(--white-pure);
    border-radius: var(--radius);
    border: 1px solid rgba(0,15,122,0.06);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}
.training-item:hover {
    border-color: rgba(46,207,190,0.3);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}
.training-item i { color: var(--teal); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.training-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.training-item p  { font-size: 0.85rem; }
