/* ============================================
   ALTURA DYNAMICS GROUP - COMPLETE STYLES
   Modern, Professional, Nordic-Inspired Design
   ============================================ */

/* CSS VARIABLES */
:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --accent-dark: #0284c7;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --surface: #0b1220;
    --surface-light: #111827;
    --surface-elevated: #1e293b;
    --border: rgba(148, 163, 184, 0.1);
    --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-2: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--surface);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* CUSTOM CURSOR */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Playfair Display', serif;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* UTILITIES */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.23);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface-elevated);
    border-color: var(--accent);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--accent-light);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(11, 18, 32, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 5%;
    background: rgba(11, 18, 32, 0.95);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--text);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px;
    background: var(--accent);
    color: white !important;
    border-radius: 100px;
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;  /* Added horizontal centering */
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    text-align: center;  /* Center text content */
    margin: 0 auto;      /* Ensure horizontal centering */
    position: relative;
    z-index: 2;
    display: flex;       /* Added for better control */
    flex-direction: column;
    align-items: center; /* Center all child elements */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(14, 165, 233, 0.15), transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(99, 102, 241, 0.1), transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--accent-light);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* HERO VISUAL */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 600px;
    display: none;
}

.floating-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card-1 {
    width: 280px;
    height: 200px;
    top: 0;
    left: 0;
    z-index: 3;
}

.card-2 {
    width: 240px;
    height: 180px;
    top: 150px;
    right: 0;
    z-index: 2;
}

.card-3 {
    width: 260px;
    height: 190px;
    bottom: 100px;
    left: 50px;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

/* TRUST SECTION */
.trust-section {
    padding: 4rem 5%;
    background: var(--surface-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
    color: var(--text);
}

/* SERVICES SECTION */
.services-section {
    padding: 8rem 5%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.service-link {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    gap: 8px;
}

.service-hover-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

.service-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.service-card:hover .service-hover-img {
    opacity: 0.3;
}

/* WHY SECTION */
.why-section {
    padding: 8rem 5%;
    background: var(--surface-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-content h2 {
    margin-bottom: 1.5rem;
}

.why-content > p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.25rem;
    color: var(--text);
}

.feature p {
    font-size: 0.875rem;
}

.why-visual {
    position: relative;
}

.visual-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.visual-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--gradient-1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: white;
    box-shadow: var(--shadow-lg);
}

.badge-large {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

/* SHOWCASE SECTION */
.showcase-section {
    padding: 8rem 5%;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    group: true;
}

.showcase-images {
    position: absolute;
    inset: 0;
}

.showcase-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.img-default {
    opacity: 1;
}

.img-hover {
    opacity: 0;
    transform: scale(1.1);
}

.showcase-item:hover .img-default {
    opacity: 0;
    transform: scale(1.1);
}

.showcase-item:hover .img-hover {
    opacity: 1;
    transform: scale(1);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.showcase-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.showcase-overlay h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.showcase-overlay p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.showcase-metrics {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--accent-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* PROCESS SECTION */
.process-section {
    padding: 8rem 5%;
    background: var(--surface-light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--surface-elevated);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: scale(1.1);
}

.step-content h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    max-width: 200px;
}

.step-line {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

/* CTA SECTION */
.cta-section {
    position: relative;
    padding: 10rem 5%;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mini-cta {
    padding: 6rem 5%;
    background: var(--surface-light);
}

.mini-cta .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    max-width: 900px;
}

.mini-cta h2 {
    margin-bottom: 0.5rem;
}

.mini-cta p {
    margin-bottom: 0;
}

/* FOOTER */
.footer {
    background: var(--primary);
    border-top: 1px solid var(--border);
}

.footer-top {
    padding: 5rem 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--surface-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--accent-light);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.timezone {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dark);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding: 2rem 5%;
    border-top: 1px solid var(--border);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--text);
}

/* PAGE HERO */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 140px 5% 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 18, 32, 0.98) 0%, rgba(11, 18, 32, 0.8) 50%, rgba(11, 18, 32, 0.4) 100%);
}

.page-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.125rem;
    max-width: 500px;
}

/* STATS BAR */
.stats-bar {
    padding: 4rem 5%;
    background: var(--surface-light);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* STORY SECTION */
.story-section {
    padding: 8rem 5%;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.story-visual {
    position: relative;
}

.story-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--surface);
}

.story-image-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-year {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

/* MISSION SECTION */
.mission-section {
    padding: 8rem 5%;
    background: var(--surface-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 2rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.mission-card p {
    margin-bottom: 2rem;
}

.mission-list {
    list-style: none;
}

.mission-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.mission-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* SERVICES DETAILED */
.services-section-alt {
    padding: 8rem 5%;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detailed.reverse {
    direction: rtl;
}

.service-detailed.reverse > * {
    direction: ltr;
}

.service-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-info h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.service-info .lead {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.service-info p {
    margin-bottom: 2rem;
}

.service-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.service-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* WORK SECTION */
.work-section {
    padding: 8rem 5%;
    background: var(--surface-light);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.work-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.work-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.work-images {
    position: absolute;
    inset: 0;
}

.work-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.work-img-default {
    opacity: 1;
}

.work-img-hover {
    opacity: 0;
    transform: scale(1.1);
}

.work-item:hover .work-img-default {
    opacity: 0;
    transform: scale(1.1);
}

.work-item:hover .work-img-hover {
    opacity: 1;
    transform: scale(1);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 60%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.work-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.work-overlay h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.work-overlay p {
    font-size: 0.875rem;
}

/* PROCESS ALTERNATE */
.process-section-alt {
    padding: 8rem 5%;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.process-step-alt {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-dot {
    width: 60px;
    height: 60px;
    background: var(--surface-elevated);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-dot::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
}

.step-content-alt {
    padding-top: 0.5rem;
}

.step-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.step-content-alt h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* SERVICES NAV */
.services-nav {
    padding: 2rem 5%;
    background: var(--surface-light);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.services-tabs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}

.tab:hover,
.tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* SERVICE DETAIL SECTION */
.service-detail-section {
    padding: 6rem 5%;
}

.service-detail-section.alt-bg {
    background: var(--surface-light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-content .section-tag {
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.service-detail-content .lead {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.service-detail-visual {
    position: relative;
}

.visual-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.visual-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    gap: 1rem;
}

.v-stat {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.v-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.v-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.visual-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--accent);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.visual-gallery {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.visual-gallery img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 3px solid var(--surface);
    box-shadow: var(--shadow);
}

.tech-stack {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-item {
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--border);
}

.research-types {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.research-types span {
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--border);
}

.impact-stats {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: white;
    text-align: center;
}

.i-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.i-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* INDUSTRIES */
.industries-section {
    padding: 8rem 5%;
    background: var(--surface-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.industry-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.industry-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.industry-card p {
    font-size: 0.9375rem;
}

.industry-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition);
}

.industry-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-card:hover .industry-hover {
    opacity: 0.1;
}

/* CONTACT SECTION */
.contact-section {
    padding: 6rem 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.info-content strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.info-content a {
    color: var(--accent-light);
}

.info-content a:hover {
    text-decoration: underline;
}

.highlight-block {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.provinces-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.provinces-tags span {
    padding: 0.375rem 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.consultation-note {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(14, 165, 233, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.consultation-note svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--surface-light);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* FORM STYLES */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dark);
}

.checkbox-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.checkbox-label input:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

.file-group {
    margin-bottom: 2rem;
}

.file-input-wrapper {
    position: relative;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-placeholder {
    padding: 2rem;
    background: var(--surface);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.file-input-wrapper:hover .file-placeholder {
    border-color: var(--accent);
    background: rgba(14, 165, 233, 0.05);
}

.file-placeholder svg {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.file-placeholder span {
    display: block;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.file-placeholder small {
    color: var(--text-dark);
}

.form-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.form-footer p {
    font-size: 0.875rem;
}

.form-footer a {
    color: var(--accent-light);
    text-decoration: underline;
}

/* INQUIRIES */
.inquiries-section {
    padding: 6rem 5%;
    background: var(--surface-light);
}

.inquiries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.inquiry-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
}

.inquiry-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.inquiry-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.inquiry-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.inquiry-card p {
    margin-bottom: 1.5rem;
}

.inquiry-link {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.875rem;
}

/* MAP SECTION */
.map-section {
    padding: 6rem 5%;
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.map-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 280px;
}

.map-logo {
    height: 30px;
    margin-bottom: 1rem;
}

.map-card h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.map-phone {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* CAREERS PAGE */
.why-join-section {
    padding: 6rem 5%;
    background: var(--surface-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.opportunities-section {
    padding: 6rem 5%;
}

.opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.opportunity-card {
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition);
}

.opportunity-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.opp-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.opp-icon {
    width: 56px;
    height: 56px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.opp-title h3 {
    color: var(--text);
    margin-bottom: 0.25rem;
}

.opp-type {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.opp-badge {
    margin-left: auto;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 100px;
}

.opp-content p {
    margin-bottom: 1.5rem;
}

.opp-requirements {
    margin-bottom: 1.5rem;
}

.opp-requirements h4 {
    color: var(--text);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.opp-requirements ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.opp-requirements li {
    color: var(--text-muted);
    font-size: 0.9375rem;
    padding-left: 1.25rem;
    position: relative;
}

.opp-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.opp-benefits {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.benefit-tag {
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
}

.application-section {
    padding: 6rem 5%;
    background: var(--surface-light);
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.application-info h2 {
    color: var(--text);
    margin-bottom: 1rem;
}

.application-info > p {
    margin-bottom: 3rem;
    font-size: 1.0625rem;
}

.application-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step-sm {
    display: flex;
    gap: 1rem;
}

.process-step-sm .step-num {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step-sm h4 {
    color: var(--text);
    margin-bottom: 0.25rem;
}

.process-step-sm p {
    font-size: 0.875rem;
}

.application-form-wrapper {
    background: var(--surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.testimonials-section {
    padding: 6rem 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info strong {
    display: block;
    color: var(--text);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .why-grid,
    .story-grid,
    .service-detail-grid,
    .application-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-grid,
    .industries-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid,
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .work-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-line {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mini-cta .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 5% 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .mission-grid,
    .industries-grid,
    .benefits-grid,
    .testimonials-grid,
    .inquiries-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .opp-requirements ul {
        grid-template-columns: 1fr;
    }
    
    .opp-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .opp-badge {
        margin-left: 0;
    }
    
    .visual-stats,
    .story-image-secondary,
    .story-badge {
        display: none;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-tabs {
        gap: 0.5rem;
    }
    
    .tab {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-elevated);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* SELECTION */
::selection {
    background: var(--accent);
    color: white;
}
/* ============================================
   PROCESS & COMPLIANCE PAGE SPECIFIC STYLES
   ============================================ */

/* PROCESS OVERVIEW */
.process-overview {
    padding: 6rem 5%;
    background: var(--surface-light);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.overview-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.o-stat {
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.o-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.o-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* PROCESS DETAILED */
.process-detailed {
    padding: 6rem 5%;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.process-step-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-step-full.reverse {
    direction: rtl;
}

.process-step-full.reverse > * {
    direction: ltr;
}

.step-visual {
    position: relative;
}

.step-number-large {
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 8rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.1;
    line-height: 1;
    z-index: 0;
}

.step-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.step-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.step-content-full {
    padding: 2rem 0;
}

.step-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.step-content-full h3 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.step-lead {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.step-deliverables {
    list-style: none;
    margin-top: 2rem;
}

.step-deliverables li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.step-deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* PROCESS BENEFITS */
.process-benefits {
    padding: 6rem 5%;
    background: var(--surface-light);
}

.benefits-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card-large {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
}

.benefit-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.benefit-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.benefit-card-large h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

/* TIMELINE SECTION */
.timeline-section {
    padding: 6rem 5%;
}

.timeline-visual {
    position: relative;
    padding: 3rem 0;
}

.timeline-track {
    position: relative;
    height: 4px;
    background: var(--surface-elevated);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--gradient-1);
    border-radius: 2px;
}

.timeline-points {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.t-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.t-point::before {
    content: '';
    position: absolute;
    top: -2.5rem;
    width: 16px;
    height: 16px;
    background: var(--surface);
    border: 3px solid var(--accent);
    border-radius: 50%;
}

.t-day {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.t-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-note {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(14, 165, 233, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 3rem;
}

.timeline-note svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* CLIENT FOCUS */
.client-focus {
    padding: 6rem 5%;
    background: var(--surface-light);
}

.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.focus-content h2 {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.focus-content > p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.focus-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.f-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
}

.f-feature svg {
    color: var(--accent);
}

.focus-visual {
    position: relative;
}

.focus-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.focus-quote {
    position: absolute;
    bottom: -30px;
    left: -30px;
    right: 30px;
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.focus-quote p {
    font-style: italic;
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.focus-quote cite {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: normal;
}

/* COMPLIANCE PAGE STYLES */
.registration-section {
    padding: 6rem 5%;
    background: var(--surface-light);
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reg-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition);
}

.reg-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reg-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.reg-card h3 {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.reg-detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.reg-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.reg-value {
    font-weight: 600;
    color: var(--text);
}

.status-good {
    color: #10b981;
}

.reg-note {
    font-size: 0.875rem;
    margin-top: 1rem;
}

.reg-address {
    margin-bottom: 1.5rem;
}

.reg-address strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.reg-address p {
    font-size: 0.9375rem;
}

/* POPIA SECTION */
.popia-section {
    padding: 6rem 5%;
}

.popia-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.popia-content h2 {
    color: var(--text);
    margin-bottom: 1rem;
}

.popia-content .lead {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.popia-principles {
    margin-top: 3rem;
}

.popia-principles h4 {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.principle {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--surface-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.p-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.principle strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.principle p {
    font-size: 0.9375rem;
    margin: 0;
}

.popia-visual {
    position: relative;
}

.security-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 2;
}

.security-badge svg {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.security-badge span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
}

.popia-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.security-features {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.s-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.875rem;
}

.s-feature svg {
    color: var(--accent);
}

/* STANDARDS SECTION */
.standards-section {
    padding: 6rem 5%;
    background: var(--surface-light);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.standard-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition);
}

.standard-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.standard-icon {
    width: 70px;
    height: 70px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.standard-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.standard-card p {
    margin-bottom: 1.5rem;
}

.standard-card ul {
    list-style: none;
}

.standard-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.standard-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* LEGAL SECTION */
.legal-section {
    padding: 6rem 5%;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.legal-content h2 {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.legal-content > p {
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.legal-areas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.l-area {
    padding: 1.5rem;
    background: var(--surface-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.l-area h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.l-area p {
    font-size: 0.9375rem;
    margin: 0;
}

.legal-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.compliance-meter {
    position: relative;
    width: 200px;
    height: 200px;
}

.meter-circle {
    position: relative;
    width: 100%;
    height: 100%;
}

.meter-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.circle-progress {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
    animation: fillMeter 2s ease-out;
}

@keyframes fillMeter {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0; }
}

.meter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.meter-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.meter-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.c-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-light);
}

/* RESPONSIBILITY SECTION */
.responsibility-section {
    padding: 6rem 5%;
    background: var(--surface-light);
}

.responsibility-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.responsibility-visual {
    position: relative;
}

.responsibility-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.responsibility-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 1rem;
}

.r-stat {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.r-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.r-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.responsibility-content h2 {
    color: var(--text);
    margin-bottom: 1rem;
}

.responsibility-content .lead {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.responsibility-content > p {
    margin-bottom: 2rem;
}

.responsibility-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pillar {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.pillar h4 {
    color: var(--text);
    margin-bottom: 0.25rem;
}

.pillar p {
    font-size: 0.9375rem;
    margin: 0;
}

/* CERTIFICATIONS */
.certifications-section {
    padding: 6rem 5%;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cert-card {
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.cert-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.cert-status {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cert-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.cert-status.member {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
}

.cert-card h4 {
    color: var(--text);
    margin-bottom: 1rem;
    padding-right: 80px;
}

.cert-card p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.cert-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* REPORTING SECTION */
.reporting-section {
    padding: 4rem 5%;
    background: var(--surface-light);
}

.reporting-box {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.reporting-icon {
    width: 100px;
    height: 100px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    flex-shrink: 0;
}

.reporting-content h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.reporting-content > p {
    margin-bottom: 2rem;
}

.reporting-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.reporting-or {
    color: var(--text-muted);
}

.reporting-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-light);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
    .overview-grid,
    .popia-grid,
    .legal-grid,
    .responsibility-grid,
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step-full,
    .process-step-full.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .process-step-full.reverse > * {
        direction: ltr;
    }
    
    .step-number-large {
        font-size: 5rem;
        top: -20px;
        left: -10px;
    }
    
    .benefits-grid-large,
    .registration-grid,
    .standards-grid,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .responsibility-stats {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
    }
    
    .focus-quote {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 1rem;
    }
    
    .reporting-box {
        flex-direction: column;
        text-align: center;
    }
    
    .reporting-contact {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .benefits-grid-large,
    .registration-grid,
    .standards-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-points {
        flex-direction: column;
        gap: 2rem;
    }
    
    .t-point::before {
        top: -1.5rem;
    }
    
    .security-badge,
    .security-features {
        display: none;
    }
    
    .compliance-meter {
        width: 150px;
        height: 150px;
    }
}