/* ============================================================
   TECHMINDS - Automation & Engineering Solutions
   Main Stylesheet
   Brand Colors: #080763 (navy) | #12c8ff (cyan)
   Fonts: Montserrat, Roboto, Space Grotesk
   ============================================================ */

/* CSS Custom Properties */
:root {
    --primary: #080763;
    --primary-light: #0e0c85;
    --primary-dark: #050445;
    --accent: #12c8ff;
    --accent-light: #5edaff;
    --accent-dark: #0a9fd4;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f3f4f6;
    --bg-blue: #eff6ff;
    --text-dark: #1e293b;
    --text-main: #374151;
    --text-secondary: #4b5563;
    --text-light: #6b7280;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;

    /* Layered shadow system (compound shadows for depth) */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 1px 2px rgba(0,0,0,0.06), 0 4px 8px rgba(0,0,0,0.04), 0 8px 16px rgba(0,0,0,0.04);
    --shadow-lg: 0 2px 4px rgba(0,0,0,0.04), 0 8px 16px rgba(0,0,0,0.06), 0 16px 32px rgba(0,0,0,0.06);
    --shadow-xl: 0 4px 8px rgba(0,0,0,0.04), 0 12px 24px rgba(0,0,0,0.06), 0 24px 48px rgba(0,0,0,0.08);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
    --max-width: 1400px;
    --focus-ring: 0 0 0 3px rgba(18, 200, 255, 0.4);
    --nav-height: 100px;
    --nav-height-scrolled: 78px;
    --top-bar-height: 55px;

    /* Spacing tokens */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-5xl: 6rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    scroll-padding-top: calc(var(--nav-height) + var(--top-bar-height, 32px));
    hanging-punctuation: first last;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ── Scroll Progress Indicator ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent);
    z-index: 10000;
    transition: none;
    will-change: width;
    contain: layout style;
}

/* ── Page Transition (disabled for performance) ── */
.page-transition {
    display: none;
}

/* ── Skip to Content (Accessibility) ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    text-decoration: none;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* ── Focus Visible (Keyboard Navigation) ── */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* ── Selection Styling ── */
::selection {
    background: rgba(18, 200, 255, 0.2);
    color: var(--primary);
}

::-moz-selection {
    background: rgba(18, 200, 255, 0.2);
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth image loading */
img[loading="lazy"] {
    opacity: 1;
}

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

/* Touch-friendly inputs - prevents iOS zoom on focus */
input, select, textarea {
    font-size: 16px;
}

/* Scroll margin for anchor targets */
[id] {
    scroll-margin-top: calc(var(--nav-height) + var(--top-bar-height, 32px) + 1rem);
}

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; }

.subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

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

/* Section Spacing */
.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

/* ============================================================
   TOP CONTACT BAR
   ============================================================ */
.top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.8rem 0 0.65rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform var(--transition), opacity var(--transition);
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(8, 7, 99, 0.25);
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-left a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    white-space: nowrap;
}

.top-bar-left a:hover {
    color: var(--accent);
}

.top-bar-left a i {
    color: var(--accent);
    font-size: 0.75rem;
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-right a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.85rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 600;
    font-size: 0.78rem;
    transition: all var(--transition);
    margin-right: 1.5rem;
}

.top-bar-right a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.top-bar-right a i {
    font-size: 0.85rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: var(--top-bar-height, 40px);
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
    height: var(--nav-height);
}

.navbar.scrolled {
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: var(--nav-height-scrolled);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2px 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-img {
    height: 42px;
    width: auto;
    transition: all var(--transition);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.navbar.scrolled .nav-logo-img {
    height: 36px;
}

.nav-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-logo-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 2px;
}

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

/* Hide mobile phone links on desktop */
.nav-mobile-phones {
    display: none;
}

.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-cta {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: var(--radius-sm);
    margin-left: 1rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 7, 99, 0.3);
    color: var(--bg-white);
}

.nav-cta.active {
    background: var(--accent);
    color: var(--primary);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    overflow: hidden;
    margin-top: calc(var(--nav-height) + var(--top-bar-height, 32px));
    padding: 4rem 0 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(18, 200, 255, 0.15);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(18, 200, 255, 0.25);
}

.hero h1 {
    color: var(--bg-white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero h1 .highlight {
    color: var(--accent);
    display: inline;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.25rem;
    line-height: 1.75;
    max-width: 540px;
}

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

.hero-stats {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: background var(--transition), transform var(--transition);
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.hero-card:first-child {
    grid-column: span 2;
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(18, 200, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-card h4 {
    color: var(--bg-white);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Button active/pressed state for tactile feedback */
.btn:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
}

/* Button icon animation on hover */
.btn .fa-arrow-right {
    transition: transform var(--transition);
}
.btn:hover .fa-arrow-right {
    transform: translateX(4px);
}
.btn .fa-calendar-check {
    transition: transform var(--transition);
}
.btn:hover .fa-calendar-check {
    transform: scale(1.1);
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 200, 255, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--bg-white);
}

.btn-navy {
    background: var(--primary);
    color: var(--bg-white);
}

.btn-navy:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 7, 99, 0.3);
    color: var(--bg-white);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border-light);
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: var(--bg-blue);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bg-blue), rgba(18, 200, 255, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-size: 1.4rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--accent);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.925rem;
    color: var(--text-secondary);
}

.service-list li i {
    color: var(--accent);
    font-size: 0.75rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

/* ============================================================
   APPROACH / METHODOLOGY
   ============================================================ */
.approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.approach-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(16.666% + 1rem);
    right: calc(16.666% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(8, 7, 99, 0.25);
    border: 3px solid var(--bg-white);
    outline: 2px solid var(--accent);
}

.step-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* SMART Workflow */
.workflow-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.workflow-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(18, 200, 255, 0.1), transparent 60%);
}

.workflow-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.workflow-header h2 {
    color: var(--bg-white);
}

.workflow-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.workflow-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.workflow-node {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    text-align: center;
    min-width: 140px;
    transition: all var(--transition);
}

.workflow-node:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.workflow-node-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.workflow-node h4 {
    color: var(--bg-white);
    font-size: 0.925rem;
    margin-bottom: 0.2rem;
}

.workflow-node p {
    color: rgba(255,255,255,0.78);
    font-size: 0.85rem;
}

.workflow-arrow {
    color: var(--accent);
    font-size: 1.25rem;
}

.workflow-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.workflow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(18, 200, 255, 0.12);
    color: var(--accent);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(18, 200, 255, 0.25);
}

/* ============================================================
   REFERENCES & SECTORS
   ============================================================ */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.clients-grid .client-card:nth-child(1),
.clients-grid .client-card:nth-child(2),
.clients-grid .client-card:nth-child(3) {
    grid-column: span 2;
}

.clients-grid .client-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.clients-grid .client-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.client-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.client-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.client-card .client-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.client-card h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.client-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.sector-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--bg-white);
    transition: all var(--transition);
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(8, 7, 99, 0.3);
}

.sector-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.sector-card h4 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.sector-card p {
    color: rgba(255,255,255,0.82);
    font-size: 0.875rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: var(--focus-ring);
    background: #fff;
}

/* Form validation states */
.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

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

/* Autofill styling override */
.form-group input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: var(--text-dark) !important;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--bg-white);
}

.contact-info-card h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: rgba(255,255,255,0.88);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: rgba(18, 200, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: var(--bg-white);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.contact-info-item p {
    color: rgba(255,255,255,0.82);
    font-size: 0.925rem;
    margin-bottom: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 2px 10px rgba(18, 200, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================================================
   BENEFITS / FEATURES
   ============================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.benefit-card p {
    font-size: 0.925rem;
    color: var(--text-secondary);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(18, 200, 255, 0.15), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(18, 200, 255, 0.1), transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.82);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--bg-white);
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.72);
    font-size: 0.925rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.78);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 0.925rem;
    padding: 0.3rem 0;
    transition: all var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
    padding: 0;
}

.scroll-top-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.scroll-top-ring svg {
    width: 52px;
    height: 52px;
    transform: rotate(-90deg);
}

.scroll-top-ring circle {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.5;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.scroll-top .fa-chevron-up {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 5.5rem 0 2.5rem;
    margin-top: calc(var(--nav-height) + var(--top-bar-height, 32px));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(18, 200, 255, 0.1), transparent 60%);
}

.page-header h1 {
    color: var(--bg-white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255,255,255,0.88);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb a,
.page-header .breadcrumb span {
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.page-header .breadcrumb a {
    color: rgba(255,255,255,0.78);
}

.page-header .breadcrumb a:hover {
    color: var(--accent);
}

.page-header .breadcrumb span {
    color: var(--accent);
}

/* ============================================================
   ABOUT PAGE - Who We Are
   ============================================================ */

/* Challenges Grid */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.challenge-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.challenge-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.challenge-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.challenge-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.challenge-content p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Origin / Our Story Section */
.about-origin {
    background: var(--bg-gray);
}

.origin-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.origin-text .section-label {
    display: inline-block;
}

.origin-text .section-title {
    margin-bottom: 1.5rem;
}

.origin-text > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.origin-text > p strong {
    color: var(--primary);
    font-weight: 600;
}

.origin-values {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.origin-value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.origin-value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--bg-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.origin-value h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.origin-value p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Origin Visual / Stats Card */
.origin-stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
}

.origin-stat-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

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

.origin-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.origin-stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.origin-quote {
    position: relative;
}

.origin-quote i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.5;
}

.origin-quote p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-gray);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(8, 7, 99, 0.8), transparent);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    opacity: 0;
    transition: opacity var(--transition);
}

.team-card:hover .team-photo-overlay {
    opacity: 1;
}

.team-photo-overlay a {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.team-photo-overlay a:hover {
    background: var(--bg-white);
    transform: scale(1.1);
}

.team-info {
    padding: 1.75rem;
}

.team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-dark);
    display: block;
    margin-bottom: 1rem;
}

.team-info > p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-expertise span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    background: var(--bg-blue);
    color: var(--primary);
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.team-expertise span.tag-highlight {
    background: var(--primary);
    color: var(--accent);
    font-weight: 600;
}

/* Difference Grid */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.diff-grid-5 {
    grid-template-columns: repeat(6, 1fr);
}

.diff-grid-5 .diff-card:nth-child(1),
.diff-grid-5 .diff-card:nth-child(2),
.diff-grid-5 .diff-card:nth-child(3) {
    grid-column: span 2;
}

.diff-grid-5 .diff-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.diff-grid-5 .diff-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.diff-card {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.diff-card:hover::before {
    transform: scaleX(1);
}

.diff-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.diff-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-gray);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color var(--transition);
}

.diff-card:hover .diff-number {
    color: var(--accent);
}

.diff-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.diff-card > p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Background helper */
.bg-light {
    background-color: var(--bg-light);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
/* Hero content should always be visible for LCP optimization */
.hero .fade-in,
.hero .fade-in-right {
    opacity: 1;
    transform: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger Animation */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.7s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-light { background-color: var(--bg-light); }
.bg-gray { background-color: var(--bg-gray); }
.bg-blue { background-color: var(--bg-blue); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   INLINE STYLE REPLACEMENT CLASSES
   ============================================================ */
/* CTA phone links row */
.cta-phones {
    margin-top: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cta-phone-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.92);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: color var(--transition);
}

.cta-phone-link:hover {
    color: var(--accent);
}

.cta-phone-link i {
    color: var(--accent);
    font-size: 0.9rem;
}

.cta-faq-hint {
    margin-top: 1.25rem;
    font-size: 0.925rem;
    color: rgba(255,255,255,0.75);
}

.cta-faq-hint a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.cta-faq-hint a:hover {
    color: var(--accent-light);
}

.cta-faq-hint a i {
    font-size: 0.75rem;
}

/* Footer brand header */
.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-brand-logo {
    height: 44px;
    width: auto;
}

.footer-brand-header h3 {
    margin-bottom: 0;
}

/* Footer phone list */
.footer-phones {
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-phone-link:hover {
    color: var(--accent);
}

.footer-phone-link i {
    color: var(--accent);
    font-size: 0.8rem;
    width: 16px;
}

/* Footer bottom legal links */
.footer-legal-links a {
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--accent);
}

/* Breadcrumb chevron */
.breadcrumb-sep {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.7);
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

/* Contact info card links */
.contact-info-link {
    color: rgba(255,255,255,0.82);
    transition: color var(--transition);
}

.contact-info-link:hover {
    color: var(--accent);
}

/* Contact form description */
.form-intro {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* Honeypot field */
.honeypot {
    position: absolute;
    left: -9999px;
}

/* Form status */
.form-status {
    margin-top: var(--space-md);
}

/* Step indicator active/completed states */
.step-indicator.active {
    background: var(--accent) !important;
    color: var(--primary) !important;
}

.step-indicator.completed {
    background: var(--primary) !important;
    color: var(--bg-white) !important;
}

/* Approach comparison icons */
.icon-negative { color: #ef4444; }
.icon-positive { color: #10b981; }

/* Approach featured card */
.service-card-featured {
    border-color: var(--accent);
}

.service-card-featured .service-icon {
    background: var(--primary);
    color: var(--accent);
}

/* Legal container narrow */
.legal-container {
    max-width: 900px;
}

/* Legal see-also */
.legal-see-also {
    margin-top: var(--space-xl);
}

/* Legal footer logo inline */
.footer-logo-inline {
    height: 44px;
    width: auto;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.footer-phones-inline {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-phones-inline a {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-phones-inline a:hover {
    color: var(--accent);
}

.footer-phones-inline a i {
    margin-right: 0.3rem;
}

/* ============================================================
   SECTION SHAPE DIVIDERS
   ============================================================ */
.section-divider {
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 48px;
    background: var(--bg-light);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.section-divider-reverse::after {
    background: var(--bg-white);
    clip-path: ellipse(55% 100% at 50% 0%);
    top: -2px;
    bottom: auto;
}

/* Hero bottom wave */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: var(--bg-light);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 3;
}

/* CTA divider */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 32px;
    background: var(--text-dark);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}

/* ============================================================
   SERVICE CARD FEATURED / BADGE
   ============================================================ */
.service-card-highlight {
    position: relative;
    border-color: var(--accent);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(18, 200, 255, 0.15);
}

.service-card-highlight::after {
    content: 'Most Requested';
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   SOCIAL PROOF / TRUSTED BY
   ============================================================ */
.hero-trust {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-trust-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.75);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-trust-badge i {
    color: var(--accent);
    font-size: 1rem;
}

/* ============================================================
   SCROLL-TO-TOP WITH PROGRESS RING
   ============================================================ */

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .top-bar-left {
        gap: 1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        min-height: 80vh;
    }

    /* Center hero content when visual is hidden */
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .hero-trust {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .approach-steps {
        grid-template-columns: 1fr 1fr;
    }

    .approach-steps::before {
        display: none;
    }

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

    .clients-grid .client-card:nth-child(1),
    .clients-grid .client-card:nth-child(2),
    .clients-grid .client-card:nth-child(3),
    .clients-grid .client-card:nth-child(4),
    .clients-grid .client-card:nth-child(5) {
        grid-column: span 1;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* About page responsive 1024px */
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .origin-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .origin-stat-card {
        position: static;
    }

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

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

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

    .diff-grid-5 .diff-card:nth-child(1),
    .diff-grid-5 .diff-card:nth-child(2),
    .diff-grid-5 .diff-card:nth-child(3),
    .diff-grid-5 .diff-card:nth-child(4),
    .diff-grid-5 .diff-card:nth-child(5) {
        grid-column: span 1;
    }

    .diff-grid-5 .diff-card:nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    /* Hide top bar on mobile */
    .top-bar { display: none; }

    .navbar { height: 65px; top: 0 !important; }
    .navbar.scrolled { height: 60px; top: 0 !important; }

    .hero { margin-top: 65px; min-height: 70vh; }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 380px;
        justify-content: center;
    }
    .page-header { margin-top: 65px !important; padding: 4.5rem 0 2rem; }

    .nav-toggle { display: flex; }

/* ── Mobile Menu (slide-in from right) ── */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        gap: 0.25rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: -8px 0 30px rgba(0,0,0,0.15);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(2px);
        z-index: 998;
    }

    .nav-overlay.active {
        display: block;
    }

    .nav-link, .nav-cta {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    /* Mobile menu phone links */
    .nav-mobile-phones {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: auto;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-light);
    }

    .nav-mobile-phones a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-secondary);
        font-size: 0.9rem;
        font-family: 'Space Grotesk', sans-serif;
        padding: 0.5rem 0;
        transition: color var(--transition);
    }

    .nav-mobile-phones a:hover {
        color: var(--accent);
    }

    .nav-mobile-phones a i {
        color: var(--accent);
        width: 20px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 380px;
        justify-content: center;
    }

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

    .clients-grid .client-card:nth-child(1),
    .clients-grid .client-card:nth-child(2),
    .clients-grid .client-card:nth-child(3),
    .clients-grid .client-card:nth-child(4),
    .clients-grid .client-card:nth-child(5) {
        grid-column: span 1;
    }

    .clients-grid .client-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .workflow-flow {
        flex-direction: column;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* About page responsive 768px */
    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .diff-grid,
    .diff-grid-5 {
        grid-template-columns: 1fr;
    }

    .diff-grid-5 .diff-card:nth-child(1),
    .diff-grid-5 .diff-card:nth-child(2),
    .diff-grid-5 .diff-card:nth-child(3),
    .diff-grid-5 .diff-card:nth-child(4),
    .diff-grid-5 .diff-card:nth-child(5) {
        grid-column: span 1;
    }

    .origin-stat-group {
        grid-template-columns: 1fr 1fr;
    }

    .section { padding: 3.5rem 0; }

    .hero-trust-badges {
        justify-content: center;
    }

    .section-divider::after,
    .hero::after,
    .cta-section::after {
        height: 32px;
    }

    /* Service card badge responsive */
    .service-card-highlight::after {
        top: var(--space-md);
        right: var(--space-md);
        font-size: 0.65rem;
    }

    .nav-mobile-phones {
        display: flex;
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }

    .container { padding: 0 1rem; }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .clients-grid .client-card:nth-child(1),
    .clients-grid .client-card:nth-child(2),
    .clients-grid .client-card:nth-child(3),
    .clients-grid .client-card:nth-child(4),
    .clients-grid .client-card:nth-child(5) {
        grid-column: span 1;
    }

    .hero-stats {
        gap: 1rem;
    }

    .workflow-container {
        padding: 2rem 1.25rem;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .cta-phones {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(8, 7, 99, 0.08);
}

.legal-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 0.975rem;
    color: var(--text-secondary);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    font-size: 0.975rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--primary);
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content code {
    background: rgba(8, 7, 99, 0.06);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
    color: var(--primary);
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding: 0.75rem 1rem;
    background: rgba(8, 7, 99, 0.04);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.legal-updated i {
    margin-right: 0.4rem;
    color: var(--accent);
}

.legal-info-box {
    background: rgba(8, 7, 99, 0.04);
    border: 1px solid rgba(8, 7, 99, 0.08);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0 1.5rem;
}

.legal-info-box p {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.legal-info-box a {
    color: var(--accent);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.925rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(8, 7, 99, 0.1);
}

.legal-table thead th {
    background: var(--primary);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.9rem;
}

.legal-table tbody td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(8, 7, 99, 0.06);
    color: var(--text-secondary);
    vertical-align: top;
}

.legal-table tbody tr:nth-child(even) {
    background: rgba(8, 7, 99, 0.02);
}

.legal-table tbody tr:hover {
    background: rgba(18, 200, 255, 0.04);
}

@media (max-width: 768px) {
    .legal-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .legal-content h2 {
        font-size: 1.2rem;
    }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 3px solid var(--accent);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.cookie-banner-icon {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-banner-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #060552;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid rgba(8, 7, 99, 0.2);
}

.cookie-btn-reject:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--accent);
    border: none;
    padding: 0.6rem 0.75rem;
    font-size: 0.825rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-btn-settings:hover {
    color: var(--primary);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-overlay.active {
    display: flex;
}

.cookie-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(8, 7, 99, 0.08);
}

.cookie-modal-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.cookie-modal-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-modal-body {
    padding: 1rem 1.5rem;
}

.cookie-category {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(8, 7, 99, 0.06);
}

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

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.cookie-category-header h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-category-header .cookie-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-badge-required {
    background: rgba(8, 7, 99, 0.08);
    color: var(--primary);
}

.cookie-badge-optional {
    background: rgba(18, 200, 255, 0.1);
    color: var(--accent);
}

.cookie-category p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background: var(--primary);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
    border-top: 1px solid rgba(8, 7, 99, 0.08);
}

/* Cookie Reopen Button (bottom-left) */
.cookie-reopen {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(8, 7, 99, 0.3);
    z-index: 9999;
    transition: all 0.2s ease;
}

.cookie-reopen:hover {
    background: #060552;
    transform: scale(1.1);
}

.cookie-reopen.visible {
    display: flex;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        padding: 1.25rem;
        gap: 1rem;
    }
    .cookie-banner-icon {
        display: none;
    }
    .cookie-banner-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
    .cookie-btn-settings {
        width: 100%;
        text-align: center;
    }
    .cookie-modal {
        max-height: 90vh;
        border-radius: 12px;
    }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
    position: relative;
    margin-left: 0.5rem;
    z-index: 1001;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: transparent;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.lang-btn:hover,
.lang-btn:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-btn .fa-globe {
    font-size: 0.85rem;
    color: var(--accent);
}

.lang-arrow {
    font-size: 0.6rem;
    transition: transform var(--transition);
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 60px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1002;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: var(--bg-light);
    color: var(--primary);
}

.lang-dropdown a.active {
    font-weight: 700;
    color: var(--accent);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .lang-switcher {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .lang-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .navbar,
    .top-bar,
    .scroll-top,
    .scroll-progress,
    .nav-toggle,
    .nav-overlay,
    .page-transition,
    .cookie-banner,
    .cookie-modal,
    .cookie-reopen {
        display: none !important;
    }

    .hero { margin-top: 0; }
    .page-header { margin-top: 0; }

    body {
        color: #000;
        background: #fff;
    }

    .section { padding: 2rem 0; }

    a { color: var(--primary); }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    .service-card,
    .client-card,
    .benefit-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
