@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Light Color Palette */
    --bg-light: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFFFFF;
    --border-color: rgba(15, 41, 74, 0.08);
    --border-hover: rgba(212, 175, 55, 0.4);
    
    --primary-gold: #C59A3F;
    --primary-gold-rgb: 197, 154, 63;
    --dark-gold: #9E7A31;
    --light-gold: #E5C37A;
    
    --secondary-blue: #0F294A;
    --secondary-blue-rgb: 15, 41, 74;
    --dark-blue: #08162A;
    --light-blue: #1C4476;
    
    --accent-teal: #0D9488;
    --secondary-teal: #0D9488;
    --text-primary: #1E293B; /* Slate-800 for body text */
    --text-headings: #0F294A; /* Royal Navy for headings */
    --text-muted: #64748B; /* Slate-500 */
    --text-gold: #C59A3F;
    --text-blue: #0F294A;
    
    /* System Colors */
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(15, 41, 74, 0.06);
    
    /* Layout Tokens */
    --max-width: 1400px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    
    /* Shadows & Glows */
    --shadow-sm: 0 4px 6px -1px rgba(15, 41, 74, 0.03);
    --shadow-md: 0 10px 30px rgba(15, 41, 74, 0.06);
    --shadow-lg: 0 20px 50px rgba(15, 41, 74, 0.1);
    --gold-glow: 0 0 30px rgba(197, 154, 63, 0.08);
    --blue-glow: 0 0 30px rgba(15, 41, 74, 0.08);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-light);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Background Lights */
.bg-ambient-light {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(150px);
    opacity: 0.25;
    transition: all 1s ease;
}

.ambient-gold {
    background: radial-gradient(circle, var(--light-gold) 0%, transparent 70%);
    top: -20vw;
    right: -10vw;
    animation: float-ambient 25s infinite alternate;
}

.ambient-teal {
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
    bottom: -20vw;
    left: -10vw;
    animation: float-ambient 30s infinite alternate-reverse;
}

@keyframes float-ambient {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5vw, 5vh) scale(1.1); }
    100% { transform: translate(-3vw, -2vh) scale(0.95); }
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(197, 154, 63, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-blue));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

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

.nav-links a.active {
    color: var(--primary-gold);
}

/* Hamburger Menu */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    border: none;
    background: none;
    padding: 0.5rem;
}

.menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary-gold);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 154, 63, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 154, 63, 0.35);
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
}

.btn-secondary {
    background: rgba(15, 41, 74, 0.04);
    color: var(--text-headings);
    border: 1px solid rgba(15, 41, 74, 0.1);
}

.btn-secondary:hover {
    background: rgba(15, 41, 74, 0.08);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.btn-blue {
    background: linear-gradient(135deg, var(--secondary-blue), var(--dark-blue));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(15, 41, 74, 0.2);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 41, 74, 0.35);
    background: linear-gradient(135deg, var(--light-blue), var(--secondary-blue));
}

/* Sections */
section {
    padding: 8rem 0;
    position: relative;
}

.section-alt {
    background: #FFFFFF;
    border-top: 1px solid rgba(15, 41, 74, 0.04);
    border-bottom: 1px solid rgba(15, 41, 74, 0.04);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    background: rgba(197, 154, 63, 0.06);
    border: 1px solid rgba(197, 154, 63, 0.15);
    color: var(--primary-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text-headings);
}

.section-title span {
    background: linear-gradient(135deg, var(--primary-gold) 20%, var(--secondary-blue) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.7;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 9rem;
    overflow: hidden;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background: rgba(15, 41, 74, 0.05);
    border-color: rgba(15, 41, 74, 0.1);
    color: var(--secondary-blue);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.8rem;
    color: var(--text-headings);
}

.hero-title span.glow {
    background: linear-gradient(135deg, var(--primary-gold) 30%, var(--secondary-blue) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-desc {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.hero-info-card {
    background: linear-gradient(135deg, rgba(15, 41, 74, 0.04) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(15, 41, 74, 0.05);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}

.info-val {
    font-size: 0.95rem;
    color: var(--text-headings);
    font-weight: 600;
    word-break: break-word;
}

.info-val a {
    color: var(--text-headings);
    text-decoration: none;
    transition: color 0.3s;
}

.info-val a:hover {
    color: var(--primary-gold);
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Beautiful Animated Tech Globe Overlay */
.tech-illustration {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(197, 154, 63, 0.05) 0%, transparent 60%);
}

.circle-orbit {
    position: absolute;
    border: 1px dashed rgba(197, 154, 63, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 { width: 350px; height: 350px; animation: rotate-clockwise 30s linear infinite; }
.orbit-2 { width: 250px; height: 250px; border: 1px solid rgba(15, 41, 74, 0.1); animation: rotate-counter 20s linear infinite; }
.orbit-3 { width: 150px; height: 150px; border: 2px dashed rgba(197, 154, 63, 0.4); }

.tech-center {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-blue));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 30px rgba(15, 41, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tech-center svg {
    width: 38px;
    height: 38px;
    fill: var(--white);
}

.orbit-currency {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    background: #FFFFFF;
    color: var(--secondary-blue);
    border: 1px solid rgba(15, 41, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    z-index: 5;
}

.orbit-currency:hover {
    background: var(--secondary-blue);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md), var(--gold-glow);
}

@keyframes rotate-clockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-counter {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-features-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature-item {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(197, 154, 63, 0.03) 0%, rgba(15, 41, 74, 0.03) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.about-feature-item:hover {
    border-color: var(--border-hover);
    transform: translateX(5px);
    box-shadow: var(--shadow-md), var(--gold-glow);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(197, 154, 63, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.about-feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-headings);
}

.about-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: linear-gradient(135deg, rgba(15, 41, 74, 0.03) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(15, 41, 74, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Services Section */
.services-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.services-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(15, 41, 74, 0.05);
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.service-tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.service-tab-btn:hover {
    color: var(--primary-gold);
}

.service-tab-btn.active {
    color: var(--primary-gold);
}

.service-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-blue));
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-tab-btn.active::after {
    transform: scaleX(1);
}

.services-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.services-tab-pane.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2.2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--gold-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(197, 154, 63, 0.06);
    border: 1px solid rgba(197, 154, 63, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-gold);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-box {
    background: rgba(197, 154, 63, 0.15);
    color: var(--primary-gold);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-headings);
    line-height: 1.3;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(15, 41, 74, 0.05);
    padding-top: 1.5rem;
}

.service-bullet-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-bullet-list li::before {
    content: '→';
    color: var(--primary-gold);
    font-weight: bold;
}

.service-card:hover .service-bullet-list li {
    color: var(--text-primary);
}

/* Products Section */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* Flagship/Spotlight Layout */
.featured-product-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-md);
}

.featured-product-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--gold-glow);
}

.featured-product-card.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.featured-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featured-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--primary-gold);
    border-left: 3px solid var(--primary-gold);
    padding-left: 1rem;
    margin: 1.5rem 0 2rem 0;
}

.product-features-tabs {
    width: 100%;
    margin-top: 1.5rem;
}

.product-tabs-nav {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(15, 41, 74, 0.05);
    margin-bottom: 1.5rem;
    padding-bottom: 0.25rem;
    overflow-x: auto;
}

.product-tab-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.product-tab-btn:hover,
.product-tab-btn.active {
    color: var(--secondary-blue);
}

.product-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-tab-btn.active::after {
    transform: scaleX(1);
}

.product-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

.product-details-item {
    background: rgba(15, 41, 74, 0.02);
    border: 1px solid rgba(15, 41, 74, 0.04);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.product-details-item:hover {
    background: rgba(15, 41, 74, 0.05);
    border-color: rgba(197, 154, 63, 0.25);
    transform: translateX(4px);
}

.product-details-item::before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: bold;
}

/* Benefits layout */
.product-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.benefit-item {
    background: rgba(15, 41, 74, 0.01);
    border: 1px solid rgba(15, 41, 74, 0.03);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.benefit-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary-blue);
    font-family: var(--font-heading);
}

.benefit-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Graphic for products */
.product-graphic-box {
    width: 100%;
    height: 320px;
    background: radial-gradient(circle, rgba(15, 41, 74, 0.03) 0%, transparent 60%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 41, 74, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-panel {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(197, 154, 63, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    width: 80%;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(15, 41, 74, 0.08);
    padding-bottom: 0.6rem;
    margin-bottom: 1rem;
}

.hud-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.hud-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-headings);
    font-weight: 700;
}

.hud-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hud-bar-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hud-bar-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.hud-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(15, 41, 74, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.hud-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-blue));
    border-radius: 10px;
    width: 85%;
    animation: barFill 2s ease-out;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

@keyframes barFill {
    from { width: 0; }
}

/* Products Grid Cards */
.products-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.product-mini-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--blue-glow);
}

.mini-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(15, 41, 74, 0.04);
    border: 1px solid rgba(15, 41, 74, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.product-mini-card:hover .mini-card-icon {
    background: rgba(15, 41, 74, 0.1);
    color: var(--secondary-blue);
}

.product-mini-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-headings);
}

.product-mini-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.mini-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(15, 41, 74, 0.05);
    padding-top: 1.2rem;
}

.mini-bullet-list li {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-bullet-list li::before {
    content: '•';
    color: var(--secondary-blue);
    font-size: 1.2rem;
    line-height: 1;
}

/* Domain Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: var(--bg-card);
    border: 1px solid rgba(15, 41, 74, 0.05);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    transition: all 0.4s ease;
    border-left: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-sm);
}

.expertise-card:hover {
    border-color: var(--border-hover);
    border-left-color: var(--secondary-blue);
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.expertise-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-headings);
    margin-bottom: 0.8rem;
}

.expertise-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Interactive Solutions Hub / Solution Finder */
.solutions-hub {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: var(--shadow-lg);
}

.finder-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.finder-question {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-headings);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.finder-question span {
    color: var(--primary-gold);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.option-card {
    background: rgba(15, 41, 74, 0.01);
    border: 1px solid rgba(15, 41, 74, 0.06);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.option-card:hover {
    border-color: rgba(197, 154, 63, 0.4);
    background: rgba(197, 154, 63, 0.02);
}

.option-card.selected {
    border-color: var(--secondary-blue);
    background: rgba(15, 41, 74, 0.03);
    box-shadow: 0 0 15px rgba(15, 41, 74, 0.05);
}

.option-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-headings);
}

.option-card.selected .option-title {
    color: var(--secondary-blue);
}

.option-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.finder-results {
    margin-top: 2rem;
    border-top: 1px solid rgba(15, 41, 74, 0.06);
    padding-top: 2rem;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.results-card {
    background: rgba(15, 41, 74, 0.01);
    border: 1px solid rgba(15, 41, 74, 0.06);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.results-header {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.result-list-item {
    background: #FFFFFF;
    border: 1px solid rgba(15, 41, 74, 0.05);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.result-list-item:hover {
    border-color: rgba(197, 154, 63, 0.3);
    transform: translateY(-2px);
}

.result-item-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-headings);
}

.result-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

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

/* Contact Us Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
}

.contact-icon-box {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(15, 41, 74, 0.04);
    border: 1px solid rgba(15, 41, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
}

.contact-text h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-headings);
}

.contact-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--primary-gold);
}

.contact-right {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-headings);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(15, 41, 74, 0.01);
    border: 1px solid rgba(15, 41, 74, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-blue);
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(15, 41, 74, 0.1);
}

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

/* Footer Section */
footer {
    background: #0B1524; /* Keep a professional dark background for footer contrast */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2rem 0;
    color: #E2E8F0;
}

footer .logo-text {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-about {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-info p {
    font-size: 0.85rem;
    color: #94A3B8;
    display: flex;
    gap: 10px;
    line-height: 1.4;
}

.footer-contact-info a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-info a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #64748B;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: #64748B;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Static Pages Styles (Legal & Privacy) */
.page-header-section {
    padding: 9rem 0 3rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
    border-bottom: 1px solid rgba(15, 41, 74, 0.04);
}

.page-content-section {
    padding: 4rem 0 8rem 0;
}

.page-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-md);
}

.page-content-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-headings);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content-wrapper h2:first-of-type {
    margin-top: 0;
}

.page-content-wrapper p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.page-content-wrapper ul {
    list-style-type: square;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.page-content-wrapper li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

/* Accreditation Page Specific Styles */
.accreditation-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accreditation-header-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.accreditation-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-gold), var(--secondary-blue));
}

.accreditation-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.accreditation-meta-item {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}

.accreditation-meta-item span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.accreditation-meta-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--secondary-blue);
    font-family: var(--font-heading);
    word-break: break-word;
}

/* Accreditation Data Table */
.accreditation-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.accreditation-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--bg-card);
}

.accreditation-table th {
    background: #0F294A;
    color: #FFFFFF;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-gold);
}

.accreditation-table td {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
    color: var(--text-primary);
}

.accreditation-table tbody tr:last-child td {
    border-bottom: none;
}

.accreditation-table tbody tr:nth-child(even) {
    background-color: rgba(241, 245, 249, 0.5);
}

.accreditation-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.06);
}

.nqf-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: rgba(15, 41, 74, 0.08);
    color: #0F294A;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 41, 74, 0.2);
}

.credit-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: rgba(212, 175, 55, 0.12);
    color: #927514;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 20px;
}

/* Compliance Notice Box */
.compliance-alert-box {
    background: #FFFDF5;
    border-left: 4px solid var(--primary-gold);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin: 2rem 0;
}

.compliance-alert-box.alert-danger {
    background: #FEF2F2;
    border-left-color: #EF4444;
    border-top-color: rgba(239, 68, 68, 0.2);
    border-right-color: rgba(239, 68, 68, 0.2);
    border-bottom-color: rgba(239, 68, 68, 0.2);
}

.compliance-alert-box h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    color: var(--secondary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compliance-alert-box.alert-danger h4 {
    color: #991B1B;
}

.compliance-alert-box p {
    margin-bottom: 0 !important;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Official Signatory Box */
.accreditation-signatory {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    margin-top: 2.5rem;
}

.signatory-details h5 {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--secondary-blue);
    margin: 0 0 0.25rem 0;
}

.signatory-details p {
    margin: 0 !important;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Homepage Accreditation Banner Section */
.accreditation-home-banner {
    background: linear-gradient(135deg, #0F294A 0%, #1A365D 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    margin: 4rem 0 2rem 0;
    box-shadow: var(--shadow-lg);
}

.accreditation-home-banner::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.accreditation-banner-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.accreditation-banner-content .badge {
    background: rgba(212, 175, 55, 0.2);
    color: #F1C40F;
    border-color: rgba(212, 175, 55, 0.4);
}

.accreditation-banner-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 1rem 0 0.75rem 0;
}

.accreditation-banner-content p {
    color: #CBD5E1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Global Mobile Viewport Guard */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
}

*, *::before, *::after {
    max-width: 100%;
}

img, svg, table, iframe {
    max-width: 100%;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 4.5rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .featured-product-card {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        padding: 2.5rem 1.75rem;
    }
    
    .featured-right {
        order: -1;
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .solutions-hub {
        padding: 2.5rem 1.75rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 44px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-hover);
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        z-index: 999;
        box-shadow: var(--shadow-md);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.05rem;
        padding: 0.5rem 0;
        width: 100%;
        display: block;
    }
    
    .badge {
        max-width: 100% !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.5px !important;
        padding: 5px 12px !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }

    /* About Section Stat Cards Alignment Fix (Screenshot 1) */
    .about-right {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        width: 100%;
    }

    .stat-box {
        padding: 1.75rem 1.25rem;
        width: 100%;
    }

    .stat-number {
        font-size: 2.75rem;
    }

    /* Product Cards & Mockup Graphic Fixes (Screenshots 2, 3, 4) */
    .featured-product-card {
        padding: 1.75rem 1.15rem !important;
        border-radius: var(--radius-lg) !important;
        gap: 2rem !important;
        width: 100% !important;
        overflow: hidden;
    }

    .featured-left, .featured-right {
        width: 100% !important;
        max-width: 100% !important;
    }

    .product-graphic-box {
        height: auto !important;
        min-height: 200px;
        padding: 1rem 0.5rem !important;
        width: 100% !important;
        border-radius: var(--radius-md) !important;
    }

    .hud-panel {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        box-shadow: var(--shadow-sm) !important;
    }

    .hud-title {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .product-features-tabs {
        width: 100% !important;
        overflow: hidden;
    }

    .product-tabs-nav {
        display: flex !important;
        gap: 0.35rem !important;
        overflow-x: auto !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem !important;
        white-space: nowrap !important;
    }

    .product-tab-btn {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
        flex-shrink: 0 !important;
    }

    .product-details-grid,
    .product-benefits-grid,
    .results-list {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    /* Services Tab & Cards */
    .services-tab-pane.active {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .service-card {
        padding: 2rem 1.25rem !important;
        border-radius: var(--radius-md) !important;
    }

    .services-tabs-nav {
        gap: 0.75rem;
    }

    .service-tab-btn {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    /* Tech Illustration / Orbit Graphic */
    .tech-illustration {
        max-width: 280px;
        height: 280px;
    }

    .orbit-1 { width: 240px; height: 240px; }
    .orbit-2 { width: 170px; height: 170px; }
    .orbit-3 { width: 100px; height: 100px; }
    .tech-center { width: 60px; height: 60px; }
    .tech-center svg { width: 28px; height: 28px; }

    /* Solutions Hub */
    .solutions-hub {
        padding: 1.75rem 1.15rem !important;
        border-radius: var(--radius-lg) !important;
        width: 100% !important;
    }

    .results-card {
        padding: 1.25rem 1rem !important;
    }

    .options-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }

    /* Subpage & Accreditation Styles */
    .page-header-section {
        padding: 5.5rem 0 2rem 0;
        text-align: center;
    }

    .page-header-section .section-title {
        font-size: 2rem;
    }

    .page-header-section .section-desc {
        font-size: 0.95rem;
        margin: 0.5rem auto 0 auto;
    }

    .page-content-section {
        padding: 1.75rem 0 3.5rem 0;
    }

    .page-content-wrapper {
        padding: 1.75rem 1.15rem;
        border-radius: var(--radius-md);
    }

    .page-content-wrapper h2 {
        font-size: 1.3rem;
        margin-top: 1.75rem;
    }

    .accreditation-header-card {
        padding: 1.35rem 1.15rem;
        border-radius: var(--radius-md);
    }

    .accreditation-header-card h2 {
        font-size: 1.3rem;
    }

    .accreditation-meta-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .accreditation-meta-item {
        padding: 0.75rem;
    }

    .accreditation-meta-item strong {
        font-size: 0.88rem;
    }

    .accreditation-table-wrapper {
        margin: 1.25rem 0;
        -webkit-overflow-scrolling: touch;
    }

    .accreditation-table th,
    .accreditation-table td {
        padding: 0.75rem 0.6rem;
        font-size: 0.82rem;
        white-space: normal;
    }

    .accreditation-home-banner {
        padding: 2rem 1.15rem;
        text-align: center;
    }

    .accreditation-banner-content {
        margin: 0 auto;
        text-align: center;
    }

    .accreditation-banner-content h3 {
        font-size: 1.4rem;
    }

    .accreditation-banner-content p {
        font-size: 0.92rem;
    }

    .compliance-alert-box {
        padding: 1.15rem 0.85rem;
    }

    .compliance-alert-box h4 {
        font-size: 0.95rem;
    }

    .accreditation-signatory {
        padding: 1.15rem 0.85rem;
        flex-direction: column;
        gap: 0.65rem;
    }
    
    .hero-info-cards {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    
    .contact-right {
        padding: 1.75rem 1.15rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem;
    }

    .logo-img {
        height: 38px;
    }

    .page-header-section .section-title {
        font-size: 1.65rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .page-content-wrapper {
        padding: 1.35rem 0.75rem;
    }

    .accreditation-meta-grid {
        grid-template-columns: 1fr;
    }

    .accreditation-table th,
    .accreditation-table td {
        padding: 0.65rem 0.4rem;
        font-size: 0.78rem;
    }

    .nqf-badge, .credit-badge {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }

    .hero-ctas,
    .subpage-actions-row {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
    }

    .hero-ctas .btn,
    .accreditation-banner-content .btn,
    .subpage-actions-row .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.65rem;
        align-items: center;
    }
}

/* ==========================================================================
   Accredited By QCTO Logo & Branding Components
   ========================================================================== */

/* Header Card Accredited By Box */
.accredited-by-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: #FFFFFF;
    border: 1px solid rgba(15, 41, 74, 0.12);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.accredited-by-box:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 154, 63, 0.15);
}

.accredited-by-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.accredited-by-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Trust Bar / Banner on Homepage */
.accreditation-trust-bar {
    background: linear-gradient(135deg, #0B1524 0%, #0F294A 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem 0;
    margin: 2rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.accreditation-trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.trust-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.trust-bar-left {
    flex: 1;
    max-width: 650px;
}

.trust-bar-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.trust-bar-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.trust-bar-text {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.5;
    margin: 0;
}

.trust-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.accredited-by-badge-card {
    background: #FFFFFF;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #E2E8F0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.accredited-by-badge-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-gold);
}

.accredited-by-badge-card .accredited-by-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #64748B;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.accreditation-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: #0F294A;
    box-shadow: 0 4px 15px rgba(197, 154, 63, 0.3);
}

/* Footer Accredited By Badge */
.footer-accreditation-badge {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: fit-content;
}

.footer-accred-text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94A3B8;
}

.footer-qcto-logo {
    height: 38px;
    width: auto;
    background: #FFFFFF;
    padding: 4px 8px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .trust-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .trust-bar-right {
        width: 100%;
        justify-content: flex-start;
    }

    .accredited-by-box {
        align-items: flex-start;
    }
}

