/* 
 * SasiaNet Financial Technologies - Core Stylesheet (Light Theme)
 * Custom CSS Framework designed around the official logo background color (#F7F7F5).
 */

/* Custom CSS Variables */
:root {
    --bg-primary: #F7F7F5;
    --bg-secondary: #FFFFFF;
    --bg-surface: #EDEDED;
    --bg-glass: rgba(255, 255, 255, 0.75);
    --bg-glass-hover: rgba(255, 255, 255, 0.95);
    --border-glass: rgba(15, 23, 42, 0.08);
    --border-glass-hover: rgba(15, 23, 42, 0.15);
    
    --accent-emerald: #059669;
    --accent-emerald-glow: rgba(5, 150, 105, 0.15);
    --accent-cyan: #0891B2;
    --accent-cyan-glow: rgba(8, 145, 178, 0.15);
    --accent-indigo: #4F46E5;
    --accent-indigo-glow: rgba(79, 70, 229, 0.15);
    
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    
    --gradient-accent: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-cyan) 100%);
    --gradient-indigo-cyan: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-cyan) 100%);
    --gradient-glow: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, rgba(247, 247, 245, 0) 70%);
    
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --container-max: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 20px rgba(5, 150, 105, 0.12);
}

/* Base Styles & Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface);
    border-radius: 4px;
    border: 1px solid var(--border-glass);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

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

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

.section {
    padding: 6rem 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
}

.flex { display: flex; }
.grid { display: grid; }

.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }

.w-full { width: 100%; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }

.hidden { display: none !important; }

/* Glowing Background Decors */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-glow);
    filter: blur(80px);
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}
.orb-1 { top: 10%; left: -10%; }
.orb-2 { bottom: 15%; right: -10%; }

/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-secondary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-emerald-glow);
    opacity: 0.95;
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-glass);
}

.btn-secondary:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-glass-hover);
    transform: translateY(-2px);
}

/* Logos & Text Highlights */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

.icon-accent {
    color: var(--accent-emerald);
    width: 20px;
    height: 20px;
}

.text-highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.15);
    color: var(--accent-emerald);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Glassmorphism Cards */
.card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(15, 23, 42, 0.02), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Main Header / Navigation */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(247, 247, 245, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-nav ul a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.desktop-nav ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-smooth);
}

.desktop-nav ul a:hover,
.desktop-nav ul a.active {
    color: var(--text-primary);
}

.desktop-nav ul a.active::after {
    width: 100%;
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Navigation Drawer */
.mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1.25rem;
}

.mobile-nav ul a {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.mobile-nav ul a.active {
    color: var(--accent-emerald);
}

/* Hero Section */
.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

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

/* Chart Animation Visual (Homepage) */
.dashboard-preview {
    width: 100%;
    position: relative;
}

.chart-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.engine-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-emerald);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-emerald);
    box-shadow: 0 0 10px var(--accent-emerald-glow);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px var(--accent-emerald); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.svg-chart {
    width: 100%;
    height: 220px;
}

.svg-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-out forwards;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

.chart-grid-line {
    stroke: rgba(15, 23, 42, 0.05);
    stroke-dasharray: 4;
}

/* Trust Bar / Logos */
.trust-bar {
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 2.5rem 0;
    background: rgba(0, 0, 0, 0.02);
}

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

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: var(--transition-smooth);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.logo-item:hover {
    opacity: 0.95;
    transform: scale(1.05);
}

/* Features Grid */
.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-indigo);
}

.feature-card:hover .icon-box {
    background: var(--gradient-accent);
    color: var(--bg-secondary);
    border-color: transparent;
    transform: scale(1.1);
    transition: var(--transition-smooth);
}

/* ROI Calculator Styles */
.calculator-section {
    position: relative;
    z-index: 10;
}

.calc-grid {
    grid-template-columns: 1.2fr 0.8fr;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.calc-inputs {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.55);
    border-right: 1px solid var(--border-glass);
}

.calc-results {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(237, 237, 237, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.calc-group {
    margin-bottom: 2rem;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.slider-val {
    color: var(--accent-emerald);
}

/* Sliders */
.slider-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-surface);
    outline: none;
    border: 1px solid var(--border-glass);
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-emerald);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-emerald-glow);
    transition: var(--transition-smooth);
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--accent-emerald);
}

.result-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.result-num {
    font-size: 2.25rem;
    font-weight: 800;
    font-family: var(--font-title);
    color: var(--accent-emerald);
    text-shadow: 0 0 15px var(--accent-emerald-glow);
    margin: 0.5rem 0;
}

/* Testimonial Carousel / Card */
.testimonial-card {
    text-align: left;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

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

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-indigo-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-secondary);
}

/* ── Shared Page Hero Section (Services, Awards, About, Contact) ── */
.page-hero-section {
    position: relative;
    padding: 7rem 0 5rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-glass);
}
.page-hero-bg-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(var(--border-glass) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-glass) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    pointer-events: none;
}
.page-hero-glow {
    position: absolute; width: 600px; height: 600px;
    border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.page-hero-glow-1 { background: rgba(79,70,229,0.12); top: -200px; left: -150px; }
.page-hero-glow-2 { background: rgba(5,150,105,0.10); bottom: -200px; right: -150px; }
.page-hero-inner  { position: relative; z-index: 1; }

.page-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem;
}
.page-hero-eyebrow-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gradient-accent); display: inline-block;
}
.page-hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}
.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.page-hero-cta-row {
    display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
    margin-top: 0.5rem;
}
.page-hero-scroll-hint {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-top: 3rem;
    animation: scrollBounceHero 2s ease-in-out infinite;
}
.page-hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--accent-emerald), transparent);
}
@keyframes scrollBounceHero {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%       { transform: translateY(8px); opacity: 1; }
}

/* Product Detail Tabs/Sections */
.product-hero {
    text-align: center;
    padding: 5rem 0 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.product-block {
    margin-bottom: 6rem;
}

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

.product-image-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list {
    list-style: none;
    margin-top: 1.5rem;
}

.product-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.product-list li i {
    color: var(--accent-emerald);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Forms & Inputs */
.form-card {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-emerald);
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.15);
}

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

.form-control option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Timeline Layout (About Us) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-glass);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-emerald);
    border: 3px solid var(--bg-primary);
    top: 6px;
    box-shadow: 0 0 10px var(--accent-emerald-glow);
}

.timeline-item:nth-child(odd) .timeline-badge {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -8px;
}

.timeline-year {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-emerald);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

/* Footer Styling */
.main-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2rem 0;
    margin-top: auto;
    z-index: 10;
}

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

.footer-brand {
    max-width: 320px;
}

.footer-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--bg-secondary);
    background: var(--accent-indigo);
    border-color: transparent;
    transform: translateY(-2px);
}

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

.footer-col h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--accent-emerald);
    padding-left: 4px;
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-list i {
    color: var(--accent-cyan);
    width: 16px;
    height: 16px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* Form Submission Page */
.success-card {
    text-align: center;
    max-width: 600px;
    margin: 4rem auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-emerald);
    margin: 0 auto 2rem auto;
    font-size: 2.5rem;
    box-shadow: var(--shadow-glow);
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-inputs {
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 4rem;
        padding-right: 0;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-badge,
    .timeline-item:nth-child(even) .timeline-badge {
        left: calc(2rem - 8px);
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero-slideshow-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-glass);
}
.slideshow-wrapper { position: relative; width: 100%; min-height: 300px; }
.slide { display: none; width: 100%; animation: fadeInSlide 0.6s ease-in-out; }
.slide.active { display: block; }
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.slide img { width: 100%; height: auto; display: block; object-fit: cover; }
.slide-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.85); border: 1px solid var(--border-glass);
    color: var(--text-primary); font-size: 1.2rem; width: 44px; height: 44px;
    border-radius: 50%; cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-smooth); box-shadow: var(--shadow-soft);
}
.slide-btn:hover { background: var(--bg-secondary); transform: translateY(-50%) scale(1.1); }
.slide-prev { left: 1rem; }
.slide-next { right: 1rem; }
.slideshow-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.2);
    cursor: pointer; transition: var(--transition-smooth);
}
.dot.active, .dot:hover {
    background: var(--accent-emerald); border-color: var(--accent-emerald); transform: scale(1.2);
}

/* ============================================================
   STATS PANEL
   ============================================================ */
.stats-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-card { padding: 1.5rem; text-align: center; transition: var(--transition-smooth); }
.stat-card:hover { transform: translateY(-4px); }
.stat-icon { margin-bottom: 0.75rem; display: flex; justify-content: center; }
.stat-num { font-family: var(--font-title); font-size: 2rem; font-weight: 700; color: var(--text-primary); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   STRENGTH CARDS
   ============================================================ */
.strength-card { padding: 1.75rem; transition: var(--transition-smooth); }
.strength-card:hover { transform: translateY(-4px); border-color: var(--accent-emerald); }
.strength-icon {
    width: 44px; height: 44px; background: var(--accent-emerald-glow);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; margin-bottom: 1rem; color: var(--accent-emerald);
}
.strength-card h4 { font-family: var(--font-title); font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text-primary); }
.strength-card p { font-size: 0.9rem; line-height: 1.7; }

/* NEWS CARDS */
.news-card { padding: 1.75rem; transition: var(--transition-smooth); }
.news-card:hover { transform: translateY(-4px); border-color: var(--accent-indigo); }
.news-date { font-size: 0.8rem; font-weight: 600; color: var(--accent-indigo); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.news-title { font-family: var(--font-title); font-size: 1rem; color: var(--text-primary); margin-bottom: 0.75rem; line-height: 1.4; }
.news-excerpt { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* BANNER LINKS */
.banner-links-section { padding: 3rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border-glass); }
.banner-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: center; }
.banner-link-item { display: block; border-radius: var(--radius-md); overflow: hidden; transition: var(--transition-smooth); box-shadow: var(--shadow-soft); }
.banner-link-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.banner-link-item img { width: 100%; height: auto; display: block; }

/* MINI TAGS */
.mini-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 600;
    padding: 0.2rem 0.6rem; background: var(--bg-surface);
    border: 1px solid var(--border-glass); border-radius: 20px;
    color: var(--text-secondary); margin: 0.15rem 0.1rem; letter-spacing: 0.04em;
}

/* PRODUCTS PAGE */
.suite-header { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.suite-badge {
    display: inline-flex; padding: 0.4rem 1rem; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 1rem;
}
.suite-title { font-size: 2.25rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.suite-tagline { font-size: 1rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.02em; margin-bottom: 1.25rem; }
.suite-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 0.75rem; }
.suite-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.product-item { padding: 1.75rem; transition: var(--transition-smooth); }
.product-item:hover { transform: translateY(-4px); }
.product-item h4 { font-family: var(--font-title); font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.product-item p { font-size: 0.9rem; line-height: 1.7; }

/* ABOUT PAGE TABLES */
.info-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.info-table th, .info-table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid var(--border-glass); vertical-align: top; }
.info-table th { color: var(--text-muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; width: 40%; }
.info-table td { color: var(--text-secondary); }
.client-list { list-style: none; padding: 0; margin: 0; }
.client-list li { font-size: 0.9rem; color: var(--text-secondary); padding: 0.4rem 0; border-bottom: 1px solid var(--border-glass); line-height: 1.5; }
.client-list li:last-child { border-bottom: none; }
.value-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.value-item i { flex-shrink: 0; margin-top: 2px; }
.gap-3 { gap: 0.75rem; }
.gap-6 { gap: 1.5rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .stats-panel { grid-template-columns: 1fr 1fr; }
    .banner-links-grid { grid-template-columns: 1fr; }
    .suite-title { font-size: 1.6rem; }
    .suite-products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AWARDS PAGE
   ============================================================ */
.awards-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.award-card {
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.award-year-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    opacity: 0.15;
    letter-spacing: -0.03em;
}

.award-year-badge.bronze { color: #CD7F32; }
.award-year-badge.merit { color: var(--accent-indigo); }

.award-seal-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.award-seal {
    max-height: 120px;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: var(--transition-smooth);
}

.award-card:hover .award-seal {
    transform: scale(1.05);
}

.award-seal-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.bronze-bg { background: rgba(205,127,50,0.1); color: #CD7F32; }
.merit-bg { background: rgba(99,102,241,0.1); color: var(--accent-indigo); }

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

.award-level {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.bronze-text {
    color: #CD7F32;
    background: rgba(205,127,50,0.08);
    border: 1px solid rgba(205,127,50,0.2);
}

.merit-text {
    color: var(--accent-indigo);
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.2);
}

.award-product {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.award-event {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.award-category {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.award-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
}

@media (max-width: 768px) {
    .awards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smaller offsets = less jarring if reveal fires slightly late */
    will-change: opacity, transform;
}
.reveal-up    { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered children — delay only applies before in-view */
.reveal-up.delay-1  { transition-delay: 0.08s; }
.reveal-up.delay-2  { transition-delay: 0.16s; }
.reveal-up.delay-3  { transition-delay: 0.24s; }
.reveal-up.delay-4  { transition-delay: 0.32s; }

/* Clear delay once revealed so subsequent interactions are instant */
.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
    transition-delay: 0s;
}

/* Accessibility: respect user's reduced-motion preference — show content instantly */
@media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ============================================================
   CLIENT TICKER / MARQUEE
   ============================================================ */
.client-ticker {
    overflow: hidden;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
    position: relative;
}
.client-ticker::before,
.client-ticker::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.client-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}
.client-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    font-family: var(--font-title);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.2s;
}
.ticker-item:hover { opacity: 1; color: var(--text-secondary); }
.ticker-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-emerald);
    flex-shrink: 0;
}

/* ============================================================
   QUOTE MARK (TESTIMONIALS)
   ============================================================ */
.quote-mark {
    font-family: var(--font-title);
    font-size: 4rem;
    line-height: 0.8;
    color: var(--accent-emerald);
    opacity: 0.25;
    margin-bottom: 0.5rem;
    user-select: none;
}

/* ============================================================
   ENHANCED CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c1a2e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5,150,105,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,145,178,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}
.cta-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: var(--font-title);
    letter-spacing: -0.02em;
}
.cta-text p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}
.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
}
.cta-secondary-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

/* CTA trust strip */
.cta-trust-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.50);
}
.cta-trust-item i { color: var(--accent-emerald); }

@media (max-width: 768px) {
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn, .cta-actions .cta-secondary-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SERVICES SPOTLIGHT SECTION (Homepage)
   ============================================================ */
.services-spotlight {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(5,150,105,0.04) 100%);
    padding: 6rem 0;
    position: relative;
}
.services-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.service-spotlight-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.service-spotlight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-spotlight-card:hover::before { opacity: 1; }
.service-spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(5,150,105,0.08);
    border-color: rgba(5,150,105,0.15);
}
.service-icon-wrap {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--accent-emerald-glow);
    border: 1px solid rgba(5,150,105,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-emerald);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}
.service-spotlight-card:hover .service-icon-wrap {
    background: var(--gradient-accent);
    color: #fff;
    border-color: transparent;
}
.service-spotlight-card h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.service-spotlight-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.service-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.service-bullet-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.service-bullet-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-emerald);
    flex-shrink: 0;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-emerald);
    transition: gap 0.2s;
}
.service-link:hover { gap: 0.75rem; }

@media (max-width: 768px) {
    .services-spotlight-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROFESSIONAL HOMEPAGE — New Component Styles
   ============================================================ */

/* --- Intro Grid (2-col: headline + stats) --- */
.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.intro-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}
.intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.intro-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
}
@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* --- Section Header (centred) --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}
.section-title {
    font-family: var(--font-title);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
    line-height: 1.15;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

/* --- Section Header Row (left title + right action) --- */
.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 600px) {
    .section-header-row { flex-direction: column; align-items: flex-start; }
}

/* --- Suite Cards Grid --- */
.suite-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.suite-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    overflow: hidden;
}
.suite-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--suite-color, var(--accent-emerald));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.suite-card:hover::after { transform: scaleX(1); }
.suite-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,0,0,0.06);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}
.suite-card-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: var(--suite-glow, var(--accent-emerald-glow));
    border: 1px solid rgba(5,150,105,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--suite-color, var(--accent-emerald));
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}
.suite-card:hover .suite-card-icon {
    background: var(--suite-color, var(--accent-emerald));
    color: #ffffff;
    border-color: transparent;
}
.suite-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--suite-color, var(--accent-emerald));
    margin-bottom: 0.4rem;
}
.suite-card-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
    line-height: 1.3;
}
.suite-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    flex: 1;
}
.suite-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 1.25rem;
}
.suite-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--suite-color, var(--accent-emerald));
    transition: gap 0.2s;
    margin-top: auto;
}
.suite-card-link:hover { gap: 0.75rem; }

.suite-fci-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: rgba(245,158,11,0.12);
    color: #f59e0b;
    border: 1px solid rgba(245,158,11,0.25);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

/* --- Strengths Grid (numbered) --- */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.strength-card {
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
}
.strength-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-emerald);
}
.strength-num {
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    opacity: 0.5;
    margin-bottom: 0.75rem;
}
.strength-icon {
    width: 40px; height: 40px;
    background: var(--accent-emerald-glow);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent-emerald);
}
.strength-card h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}
.strength-card p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-secondary);
}
@media (max-width: 1024px) { .strengths-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .strengths-grid { grid-template-columns: 1fr; } }

/* --- Testimonials Grid --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(15,23,42,0.06);
}
.quote-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* --- News Grid --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.news-card {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}
.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-indigo);
}
.news-category-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-bottom: 0.75rem;
}
.news-date {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}
.news-title {
    font-family: var(--font-title);
    font-size: 1.0rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.news-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.25rem;
}
.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    transition: gap 0.2s;
}
.news-read-more:hover { gap: 0.6rem; }
@media (max-width: 1024px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .news-grid { grid-template-columns: 1fr; } }

/* --- Insights Banner label --- */
.insights-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* ============================================================
   MINOR ENHANCEMENTS
   ============================================================ */

/* --- Header: shrink on scroll --- */
.main-header {
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header.scrolled {
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
    background: rgba(247, 247, 245, 0.97);
}
.main-header.scrolled .header-container {
    height: 64px;
}

/* --- Slideshow Progress Bar --- */
.slideshow-progress {
    height: 3px;
    background: var(--bg-surface);
    width: 100%;
    overflow: hidden;
}
.slideshow-progress-inner {
    height: 100%;
    width: 0%;
    background: var(--gradient-accent);
    border-radius: 0 2px 2px 0;
}

/* --- Scroll-Down Hint --- */
.slideshow-scroll-hint {
    position: absolute;
    bottom: 52px;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    z-index: 10;
    pointer-events: none;
}
.scroll-hint-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.scroll-hint-chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.scroll-hint-chevrons span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
    transform: rotate(45deg);
    animation: scrollBounce 1.4s ease-in-out infinite;
}
.scroll-hint-chevrons span:nth-child(2) { animation-delay: 0.15s; opacity: 0.6; }
.scroll-hint-chevrons span:nth-child(3) { animation-delay: 0.30s; opacity: 0.35; }
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.8; }
    50%       { transform: rotate(45deg) translateY(4px); opacity: 0.4; }
}

/* --- Stat Cards: coloured left border accent --- */
.stat-card.card:nth-child(1) { border-left: 3px solid var(--accent-emerald); }
.stat-card.card:nth-child(2) { border-left: 3px solid var(--accent-cyan); }
.stat-card.card:nth-child(3) { border-left: 3px solid var(--accent-indigo); }
.stat-card.card:nth-child(4) { border-left: 3px solid #f59e0b; }

/* --- Suite Cards: staggered entrance via CSS --- */
.suite-card:nth-child(1) { animation-delay: 0s; }
.suite-card:nth-child(2) { animation-delay: 0.08s; }
.suite-card:nth-child(3) { animation-delay: 0.16s; }
.suite-card:nth-child(4) { animation-delay: 0.24s; }

/* --- News card: accent left border on hover --- */
.news-card {
    border-left: 3px solid transparent;
    transition: var(--transition-smooth), border-left-color 0.25s;
}
.news-card:hover { border-left-color: var(--accent-indigo); border-top-color: var(--border-glass); }

/* --- Desktop nav: active underline always visible --- */
.desktop-nav ul a.active::after { width: 100%; }
.desktop-nav ul a.active { color: var(--text-primary); }

/* --- Strength card hover: show number in emerald --- */
.strength-card:hover .strength-num { opacity: 1; color: var(--accent-emerald); }

/* --- Section divider: faint gradient line between major sections --- */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-glass), transparent);
    margin: 0 auto;
    max-width: var(--container-max);
}

/* --- CTA section: subtle dot grid overlay --- */
.cta-section::before {
    background-image:
        radial-gradient(circle, rgba(5,150,105,0.12) 0%, transparent 70%),
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
}

/* --- Intro pills: subtle hover --- */
.intro-pill:hover {
    background: var(--accent-emerald-glow);
    border-color: rgba(5,150,105,0.2);
    color: var(--accent-emerald);
}
.intro-pill { transition: var(--transition-smooth); }

/* --- Mobile: hide scroll hint --- */
@media (max-width: 768px) {
    .slideshow-scroll-hint { display: none; }
    .stat-card.card:nth-child(n) { border-left-width: 2px; }
}
