/* ===================================
   FOX UNIVERSAL FZCO - Corporate Website
   Design System & Global Styles
   =================================== */

/* === Color Palette === */
:root {
    /* Primary Colors - From FOX UNIVERSAL FZCO Brand */
    --primary-dark: #1a2332;
    --primary-blue: #3B6BA8;
    --accent-red: #C94048;
    --accent-red-dark: #B73843;
    
    /* Secondary Colors */
    --text-primary: #1a2332;
    --text-secondary: #5a6c7d;
    --text-light: #7f8c9d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    
    /* Status Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    
    /* Transitions */
    --transition-base: 0.3s ease;
}

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === Header & Navigation === */
/* === Modern Navigation (Navbar1 Style) === */
.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-modern.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo & Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-brand-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.nav-item:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.nav-item.active {
    color: var(--text-primary);
    background: rgba(201, 64, 72, 0.1);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-trigger {
    gap: 0.25rem;
}

.nav-chevron {
    font-size: 0.625rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 320px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 50;
}

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

.dropdown-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: var(--bg-light);
}

.dropdown-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-red);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.dropdown-content {
    flex: 1;
}

.dropdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.dropdown-description {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Navigation Actions */
.nav-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
    }
}

.lang-switcher-modern {
    display: flex;
    gap: 0.25rem;
    padding: 0.25rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.lang-btn-modern {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn-modern:hover {
    color: var(--text-primary);
}

.lang-btn-modern.active {
    background: white;
    color: var(--text-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    background: var(--accent-red);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background: var(--accent-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 64, 72, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 73px; /* Height of fixed header */
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-mobile.active {
    display: block;
    transform: translateX(0);
}

.nav-mobile-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: var(--bg-light);
}

/* Mobile Accordion */
.mobile-accordion {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.mobile-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.mobile-accordion-trigger:hover {
    background: var(--bg-light);
}

.mobile-chevron {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mobile-accordion.active .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    display: none;
    padding: 0.5rem 0;
}

.mobile-accordion.active .mobile-accordion-content {
    display: block;
}

.mobile-dropdown-item {
    display: flex;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
    margin-bottom: 0.25rem;
}

.mobile-dropdown-item:hover {
    background: var(--bg-light);
}

.mobile-dropdown-item i {
    flex-shrink: 0;
    width: 1.25rem;
    font-size: 1.125rem;
    color: var(--accent-red);
    margin-top: 0.125rem;
}

.mobile-dropdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.mobile-dropdown-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Mobile Language Section */
.mobile-lang-section {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 1rem 0;
}

.lang-btn-mobile {
    flex: 1;
    padding: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn-mobile.active {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
}

.btn-mobile-cta {
    display: block;
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--accent-red);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-mobile-cta:hover {
    background: var(--accent-red-dark);
}

/* Old Header Styles (kept for other pages) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-base);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-accent {
    color: var(--accent-red);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition-base);
}

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

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-color);
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition-base);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--accent-red);
}

.btn-secondary:hover {
    background: var(--accent-red);
    color: white;
}

/* White button variant for dark backgrounds */
.hero .btn-secondary {
    background: white;
    color: var(--primary-dark);
    border: 2px solid white;
}

.hero .btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* === Hero Section with Interactive Accordion === */
.hero-accordion {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 8rem 0 4rem;
    margin-top: 73px; /* Height of fixed modern header */
    position: relative;
}

.hero-accordion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 0.875rem;
    color: var(--accent-red);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-title {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Interactive Image Accordion */
.hero-accordion-images {
    position: relative;
    height: 600px;
}

.accordion-container {
    display: flex;
    gap: 1rem;
    height: 100%;
    align-items: center;
}

.accordion-item {
    position: relative;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    width: 80px;
    flex-shrink: 0;
}

.accordion-item.active {
    width: 400px;
}

.accordion-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.accordion-item:hover .accordion-bg {
    transform: scale(1.05);
}

.accordion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.accordion-title {
    position: absolute;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.accordion-item .accordion-title {
    /* Inactive: vertical text at bottom */
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    transform-origin: center;
}

.accordion-item.active .accordion-title {
    /* Active: horizontal text at bottom center */
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    font-size: 1.5rem;
}

/* Old hero styles kept for compatibility */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Hero variation for about page */
.hero-about {
    min-height: 70vh;
    padding: 6rem 0 3rem;
}

/* Modern Hero Design */
.hero-modern {
    background: linear-gradient(135deg, #C94048 0%, #B73843 50%, #1a2332 100%);
}

.hero-modern-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    color: white;
}

.hero-modern-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-modern-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-modern-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-modern-stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-modern-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(212,165,116);stop-opacity:0.1" /><stop offset="100%" style="stop-color:rgb(200,117,51);stop-opacity:0.05" /></linearGradient></defs><rect fill="url(%23g)" width="1000" height="1000"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

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

.section-subtitle {
    color: var(--accent-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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

.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-top: 1rem;
}

.card-link:hover {
    gap: 1rem;
}

/* === Stats Section === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* === Features Section === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.25rem;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    border-radius: 12px;
    margin: 5rem 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === Form Styles === */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-base);
    background: var(--bg-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(201, 64, 72, 0.1);
}

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

/* === Modern Footer (Footer7 Style) === */
.footer-modern {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 8rem 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    padding-bottom: 3rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-link {
    display: block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-brand-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.footer-description {
    max-width: 70%;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-3px);
}

/* Navigation Grid */
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-links a:hover {
    color: var(--accent-red);
    transform: translateX(3px);
}

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

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

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

/* Old Footer Styles (kept for other pages) */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-base);
}

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

.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.contact-info {
    list-style: none;
}

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

.contact-icon {
    color: var(--accent-red);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Hero adjustments for tablets */
    .hero {
        padding: 6rem 0 3rem;
        min-height: 70vh;
    }
    
    .hero-about {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .header-content {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* New Hero Accordion Responsive */
    .hero-accordion {
        padding: 5rem 0 2rem;
        min-height: auto;
        margin-top: 73px;
    }
    
    .hero-accordion-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-accordion-content {
        order: 2;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .hero-accordion-images {
        height: 380px;
        order: 1; /* Move images above content on mobile */
    }
    
    .accordion-container {
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .accordion-container::-webkit-scrollbar {
        display: none;
    }
    
    .accordion-item {
        height: 380px;
        width: 70px;
        border-radius: 12px;
    }
    
    .accordion-item.active {
        width: 260px;
    }
    
    .accordion-title {
        font-size: 0.875rem;
    }
    
    .accordion-item .accordion-title {
        bottom: 3rem;
        font-size: 0.8125rem;
    }
    
    .accordion-item.active .accordion-title {
        bottom: 1.5rem;
        font-size: 1rem;
    }
    
    /* Old hero responsive */
    .hero {
        padding: 5rem 0 3rem;
        min-height: auto; /* Changed from 60vh to auto for better mobile fit */
        margin-top: 73px;
        overflow: visible; /* Prevent cutting off content */
    }
    
    .hero-about {
        min-height: auto; /* Changed from 50vh to auto */
        padding: 4rem 0 2rem;
    }
    
    .hero::before {
        width: 100%;
        opacity: 0.15;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    /* Modern Hero Responsive */
    .hero-modern-title {
        font-size: 2.5rem;
    }
    
    .hero-modern-description {
        font-size: 1rem;
    }
    
    .hero-modern-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-modern-stat {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Increased from default for better spacing */
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section {
        padding: 3rem 0;
        overflow: visible; /* Prevent content clipping */
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word; /* Prevent title overflow */
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Modern Footer Responsive */
    .footer-modern {
        padding: 4rem 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Old footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container-wide {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    /* Hero Accordion - Small Mobile */
    .hero-accordion {
        padding: 4rem 0 2rem;
        margin-top: 70px;
    }
    
    .hero-accordion-wrapper {
        gap: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.6875rem;
        letter-spacing: 1.5px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
        margin-bottom: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-label {
        font-size: 0.8125rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .hero-accordion-images {
        height: 320px;
    }
    
    .accordion-item {
        height: 320px;
        width: 60px;
        border-radius: 10px;
    }
    
    .accordion-item.active {
        width: 220px;
    }
    
    .accordion-title {
        font-size: 0.8125rem;
    }
    
    .accordion-item .accordion-title {
        bottom: 2.5rem;
        font-size: 0.75rem;
    }
    
    .accordion-item.active .accordion-title {
        bottom: 1.25rem;
        font-size: 0.9375rem;
    }
    
    /* Hero section on small mobile */
    .hero {
        padding: 4rem 0 2rem;
        min-height: auto; /* Changed from 50vh to auto */
        margin-top: 70px;
        overflow: visible;
    }
    
    .hero-about {
        min-height: auto; /* Changed from 40vh to auto */
        padding: 3rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    .hero-subtitle {
        font-size: 0.6875rem;
        letter-spacing: 1px;
    }
    
    /* Modern Hero Small Mobile */
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
        letter-spacing: 1.5px;
    }
    
    .hero-modern-title {
        font-size: 2rem;
    }
    
    .hero-modern-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    
    .hero-modern-stat {
        padding: 1.25rem 0.875rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    /* Card improvements for small mobile */
    .card {
        padding: 1.5rem;
        margin-bottom: 0; /* Remove any bottom margin */
    }
    
    .card h3 {
        font-size: 1.125rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* Features grid for small screens */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-image {
        height: 250px;
    }
    
    .feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Services grid improvements */
    .services-grid-6 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-modern {
        padding: 1.5rem;
    }
    
    .service-title-modern {
        font-size: 1.125rem;
    }
    
    .service-desc-modern {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* ========================================
   About3 Component Styles
   ======================================== */

/* About Section - New Design */
.section-about-new {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--accent-red);
}

.about-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #C94048 0%, #B73843 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.about-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.about-card-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Stats Banner */
.about-stats-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.stats-banner-item {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stats-banner-item:last-child {
    border-right: none;
}

.stats-banner-number {
    font-size: 3rem;
    font-weight: 800;
    color: #C94048;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-banner-label {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* Services Grid - 6 Cards */
.services-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-modern {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--accent-red);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-desc-modern {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.service-link-modern:hover {
    gap: 0.75rem;
    color: var(--accent-red-dark);
}

.service-link-modern i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.service-link-modern:hover i {
    transform: translateX(3px);
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats-banner {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .about-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .about-stats-banner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .stats-banner-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 1.5rem;
    }
    
    .stats-banner-item:last-child {
        border-bottom: none;
        padding-bottom: 1rem;
    }
    
    .stats-banner-number {
        font-size: 2.5rem;
    }
    
    .services-grid-6 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .about-stats-banner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .stats-banner-item {
        padding: 1.5rem 1rem;
    }
    
    .stats-banner-number {
        font-size: 2rem;
    }
    
    .stats-banner-label {
        font-size: 0.875rem;
    }
}

/* ========================================
   About3 Component Styles
   ======================================== */

.about3-section {
    padding: 8rem 0;
}

.about3-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.about3-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
}

.about3-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Main Grid */
.about3-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 8rem;
}

.about3-main-image {
    height: 620px;
    border-radius: 12px;
    overflow: hidden;
}

.about3-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about3-main-image:hover .about3-img {
    transform: scale(1.05);
}

.about3-side-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Breakout Card */
.about3-breakout-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.75rem;
}

.about3-logo {
    margin-bottom: 0.5rem;
}

.about3-breakout-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.about3-breakout-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.about3-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.about3-btn:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
    transform: translateX(3px);
}

.about3-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.about3-btn:hover i {
    transform: translateX(3px);
}

/* Secondary Image */
.about3-secondary-image {
    flex: 1;
    min-height: 0;
    border-radius: 12px;
    overflow: hidden;
}

.about3-secondary-image:hover .about3-img {
    transform: scale(1.05);
}

/* Partners Section */
.about3-partners {
    padding: 8rem 0;
    text-align: center;
}

.about3-partners-title {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.about3-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.about3-partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.about3-partner-item:hover {
    transform: translateY(-3px);
}

.about3-partner-text {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Achievements Section */
.about3-achievements {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2.5rem 4rem;
}

.about3-achievements-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about3-achievements-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.about3-achievements-description {
    max-width: 640px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.about3-achievements-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.about3-achievement-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.about3-achievement-label {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
}

.about3-achievement-value {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Decorative Grid Pattern */
.about3-grid-pattern {
    position: absolute;
    top: -1px;
    right: 1px;
    z-index: 0;
    height: 100%;
    width: 100%;
    background-image: 
        linear-gradient(to right, var(--text-secondary) 1px, transparent 1px),
        linear-gradient(to bottom, var(--text-secondary) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    mask-image: linear-gradient(to bottom right, #000, transparent, transparent);
    -webkit-mask-image: linear-gradient(to bottom right, #000, transparent, transparent);
    pointer-events: none;
    display: none;
}

@media (min-width: 768px) {
    .about3-grid-pattern {
        display: block;
    }
}

/* About3 Component - Responsive Design */
@media (max-width: 1024px) {
    .about3-grid {
        gap: 1.5rem;
    }
    
    .about3-main-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .about3-section {
        padding: 4rem 0;
    }
    
    .about3-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        text-align: left;
    }
    
    .about3-title {
        font-size: 2rem;
    }
    
    .about3-description {
        font-size: 1rem;
    }
    
    .about3-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* About cards grid mobile */
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .about-card-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .about-card-title {
        font-size: 1.125rem;
    }
    
    .about-card-text {
        font-size: 0.875rem;
    }
    
    /* Stats banner mobile */
    .about-stats-banner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .stats-banner-item {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .stats-banner-item:last-child {
        border-bottom: none;
    }
    
    .stats-banner-number {
        font-size: 2rem;
    }
    
    .stats-banner-label {
        font-size: 0.875rem;
    }
        margin-bottom: 4rem;
    }
    
    .about3-main-image {
        height: 400px;
        order: 1;
    }
    
    .about3-side-column {
        order: 2;
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .about3-breakout-card {
        flex: 1;
        min-height: 300px;
    }
    
    .about3-secondary-image {
        flex: 1;
        min-height: 300px;
    }
    
    .about3-partners {
        padding: 4rem 0;
    }
    
    .about3-partners-grid {
        gap: 1.5rem;
    }
    
    .about3-achievements {
        padding: 2rem;
    }
    
    .about3-achievements-title {
        font-size: 1.75rem;
    }
    
    .about3-achievements-description {
        font-size: 0.9375rem;
    }
    
    .about3-achievement-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about3-title {
        font-size: 1.75rem;
    }
    
    .about3-side-column {
        flex-direction: column;
    }
    
    .about3-breakout-card {
        min-height: auto;
    }
    
    .about3-secondary-image {
        min-height: 250px;
    }
    
    .about3-partners-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about3-achievements-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about3-achievement-value {
        font-size: 2rem;
    }
}

/* === Utility Classes === */
.text-center {
    text-align: center;
}

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

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

.bg-light {
    background-color: var(--bg-light);
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 4rem;
}

.hidden {
    display: none;
}

/* === Additional Block Styles === */

/* Alternating Feature Blocks */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-block-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #C94048 0%, #B73843 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.highlight-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: rgba(255,255,255,0.95);
    font-size: 1.125rem;
}

/* Icon Circles */
.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C94048, #B73843);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(201, 64, 72, 0.3);
}

.icon-circle-outline {
    width: 80px;
    height: 80px;
    border: 3px solid #C94048;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #C94048;
    margin-bottom: 1.5rem;
}

/* Number Badges */
.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #C94048;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #C94048, #B73843);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: white;
    border: 4px solid #C94048;
    border-radius: 50%;
}

/* Info Cards with Icons */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid #C94048;
    transition: var(--transition-base);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

/* Split Background Section */
.split-bg-section {
    position: relative;
    background: linear-gradient(to right, var(--primary-dark) 50%, var(--bg-light) 50%);
}

/* Colored Accent Boxes */
.accent-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #C94048;
    position: relative;
}

.accent-box::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 40px;
    height: 40px;
    background: #C94048;
    border-radius: 0 10px 0 10px;
}

/* Large Number Display */
.large-number {
    font-size: 4rem;
    font-weight: 700;
    color: #C94048;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Service Grid Alternative */
.service-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card-alt {
    background: white;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.service-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-header {
    background: linear-gradient(135deg, #C94048, #B73843);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-card-body {
    padding: 2rem;
}

/* === Highlight Box === */
.highlight-box {
    background: linear-gradient(135deg, #C94048 0%, #B73843 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.highlight-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* === Service Grid Alternative === */
.service-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-alt {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card-alt:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-header {
    background: linear-gradient(135deg, #1a2332 0%, #2F5F9E 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
}

.card-link {
    color: #C94048;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 0.75rem;
    color: #B73843;
}

.card-link i {
    font-size: 0.875rem;
}

/* ── Service sub-page elements ───────────────────────────────────── */
.service-section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.service-heading-icon {
    color: #C94048;
    margin-right: 0.5rem;
}
.service-content-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.service-expertise-wrap {
    max-width: 1000px;
    margin: 0 auto;
}
.service-step-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid #C94048;
}
.service-step-item:last-child { margin-bottom: 0; }
.service-step-title {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.service-expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
.service-expertise-card-title {
    color: #C94048;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.service-expertise-card-list {
    list-style: none;
    padding: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-block.reverse {
        direction: ltr;
    }
    
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: -2.5rem;
    }
    
    .large-number {
        font-size: 3rem;
    }
    
    .highlight-box {
        padding: 2rem;
    }
    
    .highlight-box h3 {
        font-size: 1.5rem;
    }
    
    .service-grid-alt {
        grid-template-columns: 1fr;
    }
    
    .service-card-header {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   About3 Component Styles
   Adapted from shadcn About3 component
   ============================================ */

.about3-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

/* Header */
.about3-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.about3-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
}

.about3-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Main Grid */
.about3-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 8rem;
}

.about3-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    max-height: 620px;
}

.about3-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about3-main-image:hover .about3-img {
    transform: scale(1.05);
}

/* Side Column */
.about3-side-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Breakout Card */
.about3-breakout-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about3-breakout-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about3-logo {
    margin-right: auto;
}

.about3-breakout-content {
    flex: 1;
}

.about3-breakout-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.about3-breakout-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about3-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: auto;
}

.about3-btn:hover {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
}

.about3-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.about3-btn:hover i {
    transform: translateX(3px);
}

.about3-secondary-image {
    flex: 1;
    min-height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

/* Partners Section */
.about3-partners {
    padding: 8rem 0;
    text-align: center;
}

.about3-partners-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about3-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.about3-partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.about3-partner-item:hover {
    transform: translateY(-3px);
}

.about3-partner-item:hover i {
    color: var(--accent-red);
}

.about3-partner-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Achievements Section */
.about3-achievements {
    position: relative;
    overflow: hidden;
    padding: 4rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.about3-achievements-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.about3-achievements-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.about3-achievements-description {
    max-width: 640px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about3-achievements-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    text-align: center;
}

.about3-achievement-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}

.about3-achievement-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about3-achievement-value {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1;
}

/* Decorative Grid Pattern */
.about3-grid-pattern {
    pointer-events: none;
    position: absolute;
    top: -1px;
    right: 1px;
    z-index: 10;
    height: 100%;
    width: 100%;
    background-image: 
        linear-gradient(to right, var(--text-light) 1px, transparent 1px),
        linear-gradient(to bottom, var(--text-light) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.1;
    mask-image: linear-gradient(to bottom right, #000, transparent, transparent);
}

/* === Responsive Styles === */

/* Tablet */
@media (max-width: 1024px) {
    .about3-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about3-grid {
        grid-template-columns: 1fr;
    }
    
    .about3-side-column {
        flex-direction: row;
        gap: 1.75rem;
    }
    
    .about3-breakout-card {
        flex: 1;
    }
    
    .about3-secondary-image {
        flex: 1;
        min-height: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about3-section {
        padding: 4rem 0;
    }
    
    .about3-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about3-title {
        font-size: 2rem;
    }
    
    .about3-description {
        font-size: 0.9375rem;
    }
    
    .about3-grid {
        gap: 1.25rem;
        margin-bottom: 4rem;
    }
    
    .about3-main-image {
        max-height: 400px;
    }
    
    .about3-side-column {
        flex-direction: column;
    }
    
    .about3-secondary-image {
        min-height: 250px;
    }
    
    .about3-partners {
        padding: 4rem 0;
    }
    
    .about3-partners-grid {
        gap: 1.5rem;
    }
    
    .about3-achievements {
        padding: 2.5rem 1.5rem;
    }
    
    .about3-achievements-header {
        text-align: center;
    }
    
    .about3-achievements-title {
        font-size: 1.75rem;
    }
    
    .about3-achievements-grid {
        justify-content: center;
        gap: 2rem;
    }
    
    .about3-achievement-value {
        font-size: 2.5rem;
    }
    
    .about3-grid-pattern {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about3-title {
        font-size: 1.75rem;
    }
    
    .about3-breakout-card {
        padding: 1.25rem;
    }
    
    .about3-breakout-title {
        font-size: 1rem;
    }
    
    .about3-achievements {
        padding: 2rem 1rem;
    }
    
    .about3-achievement-value {
        font-size: 2rem;
    }
}

/* ============================================
   About Hero V2 - Fully Redesigned
   ============================================ */

.about-hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

/* Background */
.ahv2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ahv2-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: ahv2-zoom 20s ease-in-out infinite alternate;
}

@keyframes ahv2-zoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.ahv2-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(10, 14, 26, 0.88) 0%,
        rgba(26, 35, 50, 0.82) 40%,
        rgba(201, 64, 72, 0.35) 100%
    );
}

/* Animated particles */
.ahv2-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ahv2-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(201, 64, 72, 0.18);
    animation: ahv2-float linear infinite;
}

.ahv2-particles span:nth-child(1)  { width:  6px; height:  6px; left: 10%; top: 20%; animation-duration: 12s; animation-delay: 0s; }
.ahv2-particles span:nth-child(2)  { width: 10px; height: 10px; left: 25%; top: 70%; animation-duration: 18s; animation-delay: 2s; background: rgba(59,107,168,0.2);}
.ahv2-particles span:nth-child(3)  { width:  4px; height:  4px; left: 50%; top: 15%; animation-duration: 10s; animation-delay: 1s; }
.ahv2-particles span:nth-child(4)  { width: 14px; height: 14px; left: 70%; top: 60%; animation-duration: 22s; animation-delay: 3s; background: rgba(59,107,168,0.15);}
.ahv2-particles span:nth-child(5)  { width:  8px; height:  8px; left: 85%; top: 30%; animation-duration: 15s; animation-delay: 0.5s; }
.ahv2-particles span:nth-child(6)  { width:  5px; height:  5px; left: 15%; top: 80%; animation-duration: 14s; animation-delay: 4s; }
.ahv2-particles span:nth-child(7)  { width: 12px; height: 12px; left: 40%; top: 50%; animation-duration: 19s; animation-delay: 2.5s; background: rgba(201,64,72,0.12);}
.ahv2-particles span:nth-child(8)  { width:  7px; height:  7px; left: 60%; top: 85%; animation-duration: 16s; animation-delay: 1.5s; }
.ahv2-particles span:nth-child(9)  { width:  9px; height:  9px; left: 78%; top: 10%; animation-duration: 20s; animation-delay: 3.5s; background: rgba(59,107,168,0.18);}
.ahv2-particles span:nth-child(10) { width:  6px; height:  6px; left: 92%; top: 75%; animation-duration: 13s; animation-delay: 1s; }

@keyframes ahv2-float {
    0%   { transform: translateY(0) rotate(0deg);   opacity: 0.5; }
    50%  { transform: translateY(-40px) rotate(180deg); opacity: 1; }
    100% { transform: translateY(-80px) rotate(360deg); opacity: 0; }
}

/* Layout */
.ahv2-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Left: content */
.ahv2-content {
    animation: ahv2-slide-in 0.9s ease both;
}

@keyframes ahv2-slide-in {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.ahv2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.25rem;
    border: 1px solid rgba(201, 64, 72, 0.6);
    background: rgba(201, 64, 72, 0.15);
    color: #f08080;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(8px);
}

.ahv2-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #C94048;
    border-radius: 50%;
    animation: ahv2-pulse 1.5s ease-in-out infinite;
}

@keyframes ahv2-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.6; }
}

.ahv2-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.ahv2-desc {
    font-size: 1.175rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.5rem;
    max-width: 560px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

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

.ahv2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: #C94048;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 64, 72, 0.4);
}

.ahv2-btn-primary:hover {
    background: #B73843;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 64, 72, 0.5);
    color: white;
}

.ahv2-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.ahv2-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
}

/* Right: floating card */
.ahv2-card-wrap {
    animation: ahv2-card-in 1.1s ease 0.3s both;
}

@keyframes ahv2-card-in {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ahv2-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: ahv2-levitate 6s ease-in-out infinite;
}

@keyframes ahv2-levitate {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.ahv2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C94048, #3B6BA8, #C94048);
    background-size: 200%;
    animation: ahv2-shimmer 3s linear infinite;
}

@keyframes ahv2-shimmer {
    from { background-position: 200% center; }
    to   { background-position: -200% center; }
}

.ahv2-card-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.ahv2-card-logo img {
    height: 48px;
    width: auto;
}

.ahv2-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e1e8ed, transparent);
    margin-bottom: 1.5rem;
}

/* Stats grid inside card */
.ahv2-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #f0f4f8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.ahv2-stat {
    background: white;
    text-align: center;
    padding: 1.25rem 0.75rem;
    transition: background 0.2s;
}

.ahv2-stat:hover {
    background: #fdf5f5;
}

.ahv2-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #C94048;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.ahv2-stat-label {
    font-size: 0.7rem;
    color: #5a6c7d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tags */
.ahv2-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ahv2-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a2332;
    transition: all 0.2s;
}

.ahv2-tag:hover {
    background: #fdf0f0;
    border-color: #C94048;
    color: #C94048;
}

.ahv2-tag i {
    color: #C94048;
    font-size: 0.65rem;
}

/* Scroll hint */
.ahv2-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ahv2-scroll-dot {
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    position: relative;
}

.ahv2-scroll-dot::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    animation: ahv2-scroll-anim 2s ease infinite;
}

@keyframes ahv2-scroll-anim {
    0%   { top: 6px;  opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

/* ============================================
   About Main Section - Redesigned (abm)
   ============================================ */

.abm-section {
    padding: 6rem 0;
    background: #fff;
}

/* Intro row */
.abm-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.abm-intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0.5rem 0 0;
    line-height: 1.15;
}

.abm-intro-right p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.abm-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #C94048;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
}

.abm-link:hover {
    border-bottom-color: #C94048;
    gap: 0.85rem;
}

/* Mosaic row */
.abm-mosaic-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}

/* Photo mosaic */
.abm-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
}

.abm-mosaic-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.abm-photo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #f0f4f8;
}

.abm-photo--tall {
    grid-row: span 2;
}

.abm-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.abm-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(10,14,26,0.75));
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s ease;
}

.abm-photo:hover .abm-photo-label {
    opacity: 1;
    transform: translateY(0);
}

/* Mosaic tall height — stretch to fill full mosaic height */
.abm-photo--tall {
    min-height: 420px;
    height: 100%;
}

.abm-photo--wide {
    min-height: 197px;
}

/* 3rd photo: flex-grow to fill remaining height */
.abm-photo--flex {
    flex: 1;
    min-height: 120px;
}

/* Info column */
.abm-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Stats card */
.abm-stats-card {
    background: linear-gradient(135deg, #1a2332 0%, #2a3a55 100%);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: space-around;
}

.abm-stat {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.abm-stat-value {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    line-height: 1;
}

.abm-stat-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: #C94048;
    line-height: 1;
}

.abm-stat-suffix {
    font-size: 1.5rem;
    font-weight: 800;
    color: #C94048;
    line-height: 1;
    display: flex;
    align-self: center;
}

.abm-stat-lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.4rem;
}

.abm-stat-div {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Feature list */
.abm-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.abm-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.abm-feature:hover {
    border-left-color: #C94048;
    background: #fff5f5;
    transform: translateX(4px);
}

.abm-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #C94048, #B73843);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.abm-feature-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.abm-feature-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* CTA button */
.abm-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: #C94048;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(201, 64, 72, 0.3);
    align-self: flex-start;
}

.abm-cta-btn:hover {
    background: #B73843;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 64, 72, 0.4);
    color: white;
    gap: 1rem;
}

/* Horizontal bar */
.abm-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: 1px solid #e1e8ed;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.abm-bar-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    transition: background 0.25s;
}

.abm-bar-item:hover {
    background: #fff5f5;
}

.abm-bar-item > i {
    font-size: 1.75rem;
    color: #C94048;
    flex-shrink: 0;
}

.abm-bar-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.abm-bar-item strong {
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.abm-bar-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.abm-bar-div {
    width: 1px;
    background: #e1e8ed;
    margin: 1rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .abm-mosaic-row {
        grid-template-columns: 1fr;
    }
    .abm-mosaic {
        min-height: 360px;
    }
    .abm-photo--tall {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .abm-section {
        padding: 4rem 0;
    }
    .abm-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .abm-intro-title {
        font-size: 2rem;
    }
    .abm-mosaic {
        grid-template-columns: 1fr 1fr;
        height: 300px;
    }
    .abm-photo--tall {
        min-height: 300px;
    }
    .abm-photo--wide {
        min-height: 140px;
    }
    .abm-bar {
        grid-template-columns: 1fr;
    }
    .abm-bar-div {
        display: none;
    }
    .abm-stats-card {
        padding: 1.25rem;
    }
    .abm-stat-num {
        font-size: 1.75rem;
    }
    .abm-stat-suffix {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .abm-mosaic {
        grid-template-columns: 1fr;
        height: auto;
    }
    .abm-photo--tall {
        min-height: 220px;
    }
    .abm-mosaic-col {
        flex-direction: row;
    }
    .abm-photo--wide {
        min-height: 160px;
        flex: 1;
    }
    .abm-stats-card {
        flex-direction: column;
        gap: 1rem;
    }
    .abm-stat-div {
        width: 80px;
        height: 1px;
    }
}

/* === Responsive === */

@media (max-width: 1100px) {
    .ahv2-container {
        grid-template-columns: 1fr 360px;
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .about-hero-v2 {
        min-height: auto;
        padding: 2rem 0 3rem;
    }
    .ahv2-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .ahv2-card-wrap {
        order: -1;
    }
    .ahv2-card {
        max-width: 480px;
        margin: 0 auto;
        animation: none;
    }
    .ahv2-scroll {
        display: none;
    }
    .ahv2-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .about-hero-v2 {
        margin-top: 70px;
    }
    .ahv2-title {
        font-size: 2rem;
    }
    .ahv2-desc {
        font-size: 1rem;
    }
    .ahv2-btn-primary, .ahv2-btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    .ahv2-stats {
        grid-template-columns: 1fr 1fr;
    }
    .ahv2-stat-num {
        font-size: 1.4rem;
    }
}

/* ================================================================
   INLINE STYLE REPLACEMENTS — all moved from HTML to CSS
   ================================================================ */

/* ── Mobile logo img ────────────────────────────────────────────── */
.hv2-mob-header .hv2-logo img {
    height: 36px;
}

/* ── Scroll-to-top button ───────────────────────────────────────── */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #C94048;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    z-index: 999;
}
.scroll-to-top:hover {
    background: #B73843;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,64,72,0.4);
}
.scroll-to-top.visible {
    display: flex;
}

/* ── Section CTA centered button wrapper ────────────────────────── */
.section-cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ── Stats grid margin ───────────────────────────────────────────── */
.stats-grid-mb {
    margin-bottom: 4rem;
}

/* ── Stat item description text ─────────────────────────────────── */
.stat-item-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* ── Testimonial section ─────────────────────────────────────────── */
.testimonial-section {
    background: linear-gradient(135deg, #1a2332 0%, #2F5F9E 100%);
    color: white;
}
.testimonial-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-quote-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
    margin-bottom: 1rem;
}
.testimonial-blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
    margin: 2rem 0;
    font-style: italic;
    color: white;
}
.testimonial-author-wrap {
    margin-top: 2rem;
}
.testimonial-author {
    font-weight: 600;
    font-size: 1.125rem;
    color: white;
}
.testimonial-role {
    opacity: 0.8;
    margin-top: 0.5rem;
    color: white;
}

/* ── Process section ──────────────────────────────────────────────── */
.process-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.process-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C94048 0%, #3B6BA8 100%);
    z-index: 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.process-step {
    text-align: center;
}
.process-step-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step-circle--red {
    box-shadow: 0 4px 20px rgba(201,64,72,0.15);
    border: 4px solid #C94048;
}
.process-step-circle--blue {
    box-shadow: 0 4px 20px rgba(59,107,168,0.15);
    border: 4px solid #3B6BA8;
}
.process-step-icon {
    font-size: 2.5rem;
}
.process-step-icon--red { color: #C94048; }
.process-step-icon--blue { color: #3B6BA8; }
.process-step-label {
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 0.5rem;
}
.process-step-label--red { color: #C94048; }
.process-step-label--blue { color: #3B6BA8; }
.process-step-title {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}
.process-step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ── Advantages section ───────────────────────────────────────────── */
.advantages-container {
    max-width: 1100px;
    margin: 0 auto;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
.advantage-card--red { border-left: 4px solid #C94048; }
.advantage-card--blue { border-left: 4px solid #3B6BA8; }
.advantage-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.advantage-card-icon--red { color: #C94048; }
.advantage-card-icon--blue { color: #3B6BA8; }
.advantage-card-title {
    margin-bottom: 1rem;
}
.advantage-card-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Accreditations section ──────────────────────────────────────── */
.accred-container {
    max-width: 900px;
    margin: 0 auto;
}
.accred-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.accred-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}
.accred-card-bar--red { background: linear-gradient(90deg, #C94048, #B73843); }
.accred-card-bar--blue { background: linear-gradient(90deg, #3B6BA8, #2F5F9E); }
.accred-card-bar--mix { background: linear-gradient(90deg, #C94048, #3B6BA8); }
.accred-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.accred-icon--red { color: #C94048; }
.accred-icon--blue { color: #3B6BA8; }
.accred-title { margin-bottom: 0.5rem; }
.accred-desc { color: var(--text-secondary); font-size: 0.95rem; }

/* ── Global reach section ─────────────────────────────────────────── */
.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.global-card {
    padding: 3rem 2rem;
    border-radius: 16px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.global-card--red  { background: linear-gradient(135deg, #C94048 0%, #B73843 100%); }
.global-card--blue { background: linear-gradient(135deg, #3B6BA8 0%, #2F5F9E 100%); }
.global-card--dark { background: linear-gradient(135deg, #1a2332 0%, #2a3f5f 100%); }
.global-card-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.global-card-inner {
    position: relative;
    z-index: 1;
}
.global-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}
.global-card-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
}
.global-card-location {
    font-size: 1.125rem;
    color: white;
    margin: 0;
}
.global-card-desc {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: white;
}

/* ── CTA section z-index container ──────────────────────────────── */
.cta-section .container {
    position: relative;
    z-index: 1;
}

/* ── Mission Hero section (about page) ──────────────────────────── */
.mission-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

/* Background image */
.mission-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.mission-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark overlay with gradient */
.mission-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(10, 20, 40, 0.88) 0%,
        rgba(18, 38, 80, 0.82) 50%,
        rgba(30, 50, 100, 0.75) 100%
    );
}

/* Animated decorative lines (same as page-hero) */
.mission-hero__lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.mission-hero__lines span {
    position: absolute;
    display: block;
    background: rgba(255,255,255,0.04);
}
.mission-hero__lines span:nth-child(1) {
    width: 1px;
    height: 100%;
    left: 25%;
    top: 0;
    animation: mhLineFade 6s ease-in-out infinite;
}
.mission-hero__lines span:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    animation: mhLineFade 6s ease-in-out 2s infinite;
}
.mission-hero__lines span:nth-child(3) {
    width: 1px;
    height: 100%;
    left: 75%;
    top: 0;
    animation: mhLineFade 6s ease-in-out 4s infinite;
}
@keyframes mhLineFade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Content */
.mission-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 6rem 1.5rem;
    color: #fff;
}

/* Eyebrow line */
.mission-hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2.5rem;
}
.mission-hero__line-left,
.mission-hero__line-right {
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

/* Main title */
.mission-hero__title {
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    font-weight: 300;
    line-height: 1.55;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 2rem;
    letter-spacing: -0.01em;
}

/* Subtitle */
.mission-hero__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 680px;
    margin: 0 auto 3.5rem;
    line-height: 1.75;
    font-weight: 400;
}

/* Stats row */
.mission-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}
.mission-hero__stat {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.5rem;
}
.mission-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.mission-hero__stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.mission-hero__stat-label {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

@media (max-width: 600px) {
    .mission-hero__stats {
        gap: 1rem;
        padding: 1.5rem 0;
    }
    .mission-hero__stat-divider { display: none; }
    .mission-hero__stat { min-width: 40%; }
    .mission-hero__title { font-size: 1.5rem; }
    .mission-hero__content { padding: 4rem 1rem; }
}

/* ── About approach section ──────────────────────────────────────── */
.approach-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.approach-line {
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #C94048 0%, #3B6BA8 50%, #C94048 100%);
    z-index: 0;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}
.approach-card {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 2rem;
}
.approach-card--red { box-shadow: 0 8px 24px rgba(201,64,72,0.1); }
.approach-card--blue { box-shadow: 0 8px 24px rgba(59,107,168,0.1); }
.approach-card-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.approach-card-circle--red {
    background: linear-gradient(135deg, #C94048, #B73843);
    box-shadow: 0 4px 20px rgba(201,64,72,0.3);
}
.approach-card-circle--blue {
    background: linear-gradient(135deg, #3B6BA8, #2F5F9E);
    box-shadow: 0 4px 20px rgba(59,107,168,0.3);
}
.approach-card-num {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
}

/* ── About values section ────────────────────────────────────────── */
.values-container {
    max-width: 900px;
    margin: 0 auto;
}
.value-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.value-item:last-child {
    margin-bottom: 0;
}
.value-item-title {
    color: #C94048;
    margin-bottom: 1rem;
}
.value-item-icon {
    margin-right: 0.5rem;
}

/* ── Registration section ────────────────────────────────────────── */
.reg-desc {
    margin-top: 2rem;
}
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.features-grid {
    align-items: start;
}

/* ── Contacts page ───────────────────────────────────────────────── */
.contacts-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}
.contact-link {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
}
.contact-link:hover { color: var(--accent-red-dark); }
.contact-address {
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 0.5rem;
}

.contact-form-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.section-header-mb {
    margin-bottom: 3rem;
}
.contact-form-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}
.form-consent-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}
.form-consent-checkbox {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}
.form-consent-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.form-submit-btn {
    width: 100%;
}
.form-select {
    cursor: pointer;
}

/* ── Working hours section ───────────────────────────────────────── */
.hours-wrap {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
.hours-row:last-of-type {
    border-bottom: none;
}
.hours-day {
    font-weight: 600;
    color: var(--text-primary);
}
.hours-time { color: var(--text-secondary); }
.hours-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}
.hours-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.hours-note-icon {
    color: var(--accent-red);
    margin-right: 0.5rem;
}

/* ── Location section ────────────────────────────────────────────── */
.location-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.location-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.location-title { margin-bottom: 1rem; }
.location-address {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.location-howto {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}
.location-howto-title { margin-bottom: 1rem; }
.location-howto-desc {
    color: var(--text-secondary);
    line-height: 1.8;
}
.location-map-btn {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── FAQ section ──────────────────────────────────────────────────── */
.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-question {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.faq-q-badge {
    background: #C94048;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 3rem;
}
.faq-still {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
.faq-still-title { margin-bottom: 1rem; }
.faq-still-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ── News page ───────────────────────────────────────────────────── */
.news-loading {
    text-align: center;
    padding: 3rem;
}
.news-loading-icon {
    font-size: 3rem;
    color: #C94048;
}
.news-loading-text {
    margin-top: 1rem;
    color: var(--text-secondary);
}
.news-error {
    display: none;
    text-align: center;
    padding: 3rem;
}
.news-error-icon {
    font-size: 3rem;
    color: var(--text-secondary);
}
.news-error-text {
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* ── ABM Feature animation ───────────────────────────────────────── */
.abm-feature {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.45s ease, transform 0.45s ease, border-left-color 0.3s, background 0.3s;
}
.abm-feature--visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── News detail page ─────────────────────────────────────────────── */
.nd-loading {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 72px;
}
.nd-loading-inner {
    text-align: center;
}
.nd-loading-icon {
    font-size: 3rem;
    color: #C94048;
}
.nd-loading-text {
    margin-top: 1rem;
    color: var(--text-secondary);
}
.nd-hero-small { min-height: 55vh; }
.nd-date {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin-top: 1rem;
}
.nd-breadcrumb-top { margin-top: 1.5rem; }
.nd-article-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.nd-article-content {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-primary);
}

/* ── Article: base typography ─────────────────────────────────────── */
.nd-article-content h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 2.75rem 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--border-color);
    line-height: 1.25;
}
.nd-article-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}
.nd-article-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1.5rem 0 0.5rem;
}
.nd-article-content p {
    margin-bottom: 1.25rem;
    color: #374151;
    line-height: 1.85;
}
.nd-article-content ul,
.nd-article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.nd-article-content li {
    color: #374151;
    line-height: 1.7;
}
.nd-article-content strong {
    color: var(--primary-dark);
    font-weight: 700;
}
.nd-article-content a {
    color: var(--accent-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Article: lead paragraph ──────────────────────────────────────── */
.art-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    border-left: 4px solid var(--accent-red);
    padding: 1rem 1.5rem;
    background: rgba(201,64,72,0.04);
    border-radius: 0 8px 8px 0;
    margin: 0 0 2rem;
}

/* ── Article: stats row ───────────────────────────────────────────── */
.art-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
.art-stat {
    background: var(--primary-dark);
    color: #fff;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
}
.art-stat-val {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
    color: #fff;
}
.art-stat-lbl {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
}
@media (max-width: 640px) {
    .art-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
    .art-stats { grid-template-columns: 1fr; }
}

/* ── Article: callout boxes ───────────────────────────────────────── */
.art-callout {
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.art-callout-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.art-callout-body strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.art-callout-body p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}
/* info */
.art-callout--info {
    background: rgba(59,107,168,0.07);
    border-left: 4px solid var(--primary-blue);
}
.art-callout--info .art-callout-icon { color: var(--primary-blue); }
.art-callout--info .art-callout-body strong { color: var(--primary-blue); }
.art-callout--info .art-callout-body p { color: #374151; }
/* warning */
.art-callout--warning {
    background: rgba(234,179,8,0.08);
    border-left: 4px solid #ca8a04;
}
.art-callout--warning .art-callout-icon { color: #ca8a04; }
.art-callout--warning .art-callout-body strong { color: #92400e; }
.art-callout--warning .art-callout-body p { color: #374151; }
/* success / tip */
.art-callout--success {
    background: rgba(22,163,74,0.07);
    border-left: 4px solid #16a34a;
}
.art-callout--success .art-callout-icon { color: #16a34a; }
.art-callout--success .art-callout-body strong { color: #14532d; }
.art-callout--success .art-callout-body p { color: #374151; }
/* danger */
.art-callout--danger {
    background: rgba(201,64,72,0.07);
    border-left: 4px solid var(--accent-red);
}
.art-callout--danger .art-callout-icon { color: var(--accent-red); }
.art-callout--danger .art-callout-body strong { color: var(--accent-red); }
.art-callout--danger .art-callout-body p { color: #374151; }

/* ── Article: comparison table ────────────────────────────────────── */
.art-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.art-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.art-table th {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 0.875rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.art-table th:first-child { border-radius: 11px 0 0 0; }
.art-table th:last-child  { border-radius: 0 11px 0 0; }
.art-table td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    color: #374151;
    line-height: 1.55;
    vertical-align: top;
}
.art-table tr:last-child td { border-bottom: none; }
.art-table tr:nth-child(even) td { background: #f9fafb; }
.art-table td:first-child { font-weight: 600; color: var(--primary-dark); }
.art-table .td-yes { color: #16a34a; font-weight: 600; }
.art-table .td-no  { color: #dc2626; font-weight: 600; }
.art-table .td-partial { color: #ca8a04; font-weight: 600; }

/* ── Article: step blocks ─────────────────────────────────────────── */
.art-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0;
    position: relative;
}
.art-steps::before {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-red), var(--primary-blue));
    opacity: 0.25;
}
.art-step {
    display: flex;
    gap: 1.75rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    align-items: flex-start;
    position: relative;
}
.art-step:last-child { border-bottom: none; }
.art-step-num {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    z-index: 1;
}
.art-step:nth-child(odd) .art-step-num  { background: var(--accent-red); }
.art-step:nth-child(even) .art-step-num { background: var(--primary-blue); }
.art-step-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 0.5rem;
}
.art-step-body p {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}
.art-step-body ul {
    margin: 0.5rem 0 0 1.25rem;
    gap: 0.35rem;
}
.art-step-body li { font-size: 0.875rem; color: #374151; }

/* ── Article: checklist ───────────────────────────────────────────── */
.art-checklist {
    list-style: none !important;
    margin-left: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.25rem 0;
}
.art-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
}
.art-checklist li::before {
    content: none !important;
}
.art-checklist li .chk-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.art-checklist li .chk-icon--yes { background: #dcfce7; color: #16a34a; }
.art-checklist li .chk-icon--no  { background: #fee2e2; color: #dc2626; }
.art-checklist li .chk-icon--ok  { background: #dbeafe; color: var(--primary-blue); }

/* ── Article: highlight card ──────────────────────────────────────── */
.art-highlight {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #243447 100%);
    border-radius: 14px;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    color: #fff;
}
.art-highlight h3 {
    color: #fff !important;
    margin-top: 0;
    font-size: 1.15rem;
    border: none !important;
}
.art-highlight p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem;
}
.art-highlight ul {
    margin-left: 1.5rem;
}
.art-highlight li {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

/* ── Article: quote ───────────────────────────────────────────────── */
.art-quote {
    border-left: 4px solid var(--accent-red);
    padding: 1.25rem 2rem;
    margin: 2rem 0;
    background: #f8f8f8;
    border-radius: 0 10px 10px 0;
}
.art-quote p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--primary-dark) !important;
    margin: 0 !important;
    line-height: 1.7;
}
.art-quote-author {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Article: tag pills row ───────────────────────────────────────── */
.art-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0 1rem;
}
.art-tag {
    padding: 0.3rem 0.85rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Article: two-col layout block ───────────────────────────────── */
.art-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.art-col-box {
    background: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}
.art-col-box h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.art-col-box--red h4  { color: var(--accent-red); }
.art-col-box--blue h4 { color: var(--primary-blue); }
.art-col-box ul {
    margin: 0;
    gap: 0.5rem;
}
.art-col-box li { font-size: 0.875rem; color: #374151; }
@media (max-width: 580px) {
    .art-two-col { grid-template-columns: 1fr; }
    .art-steps::before { display: none; }
    .art-step { gap: 1rem; }
    .art-step-num { width: 2.75rem; height: 2.75rem; min-width: 2.75rem; }
    .art-stats { grid-template-columns: 1fr 1fr; }
    .art-highlight { padding: 1.5rem; }
}
/* ── Article: stat row (new style) ───────────────────────────────── */
.art-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
.art-stat {
    background: var(--primary-dark);
    color: #fff;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.art-stat__num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}
.art-stat__label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
    text-align: center;
}
@media (max-width: 640px) {
    .art-stat-row { grid-template-columns: 1fr 1fr; }
}

/* ── Article: callout (new icon style) ───────────────────────────── */
.art-callout {
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.art-callout__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    line-height: 1;
}
.art-callout > div {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #374151;
}
.art-callout > div strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.art-callout a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
/* variants */
.art-callout--info {
    background: rgba(59,107,168,0.08);
    border-left: 4px solid var(--primary-blue);
}
.art-callout--info .art-callout__icon { color: var(--primary-blue); }
.art-callout--info > div strong { color: var(--primary-blue); }

.art-callout--warn {
    background: rgba(217,119,6,0.08);
    border-left: 4px solid #d97706;
}
.art-callout--warn .art-callout__icon { color: #d97706; }
.art-callout--warn > div strong { color: #92400e; }

.art-callout--danger {
    background: rgba(201,64,72,0.07);
    border-left: 4px solid var(--accent-red);
}
.art-callout--danger .art-callout__icon { color: var(--accent-red); }
.art-callout--danger > div strong { color: var(--accent-red); }

.art-callout--tip {
    background: rgba(22,163,74,0.07);
    border-left: 4px solid #16a34a;
}
.art-callout--tip .art-callout__icon { color: #16a34a; }
.art-callout--tip > div strong { color: #14532d; }

.art-callout--cta {
    background: var(--primary-dark);
    border-left: none;
    border-radius: 12px;
}
.art-callout--cta .art-callout__icon { color: #fff; }
.art-callout--cta > div { color: rgba(255,255,255,0.85); }
.art-callout--cta > div strong { color: #fff; }
.art-callout--cta a { color: #C94048; }

/* ── Article: scenario block ──────────────────────────────────────── */
.art-scenario {
    background: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.25rem 0;
}
.art-scenario__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--accent-red);
    margin-bottom: 0.75rem;
}
.art-scenario p {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* ── Article: generic list (no numbering) ─────────────────────────── */
.art-list {
    list-style: disc !important;
    margin: 1rem 0 1.5rem 1.5rem !important;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.art-list li {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.65;
}

/* ── Article: checklist (tick auto-generated) ─────────────────────── */
.art-checklist {
    list-style: none !important;
    margin-left: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 1.25rem 0;
}
.art-checklist li {
    padding-left: 1.6rem;
    position: relative;
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.65;
}
.art-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: #16a34a;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ── Article: step blocks (new BEM names) ─────────────────────────── */
.art-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0;
    position: relative;
}
.art-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    align-items: flex-start;
    position: relative;
}
.art-step:last-child { border-bottom: none; }
.art-step__num {
    width: 3.25rem;
    height: 3.25rem;
    min-width: 3.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    background: var(--accent-red);
    flex-shrink: 0;
    z-index: 1;
}
.art-step:nth-child(even) .art-step__num { background: var(--primary-blue); }
.art-step__body {
    flex: 1;
    padding-top: 0.5rem;
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.7;
}
.art-step__body strong {
    font-weight: 700;
    color: var(--primary-dark);
}
@media (max-width: 500px) {
    .art-step { gap: 1rem; }
    .art-step__num { width: 2.5rem; height: 2.5rem; min-width: 2.5rem; font-size: 0.75rem; }
    .art-stat-row { grid-template-columns: 1fr 1fr; }
}

.nd-back-wrap {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}
.nd-error {
    display: none;
    min-height: 80vh;
    margin-top: 72px;
}
.nd-error-inner {
    text-align: center;
}
.nd-error-icon {
    font-size: 4rem;
    color: var(--text-secondary);
}
.nd-error-title { margin: 2rem 0 1rem; }
.nd-error-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ================================================================
   PREMIUM HERO SECTION — Full-viewport corporate background
   ================================================================ */

/* New premium hero — replaces .hero-accordion */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0; /* header is fixed, hero is full-bleed */
}

.hero-premium-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=1080&fit=crop&q=85');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Multi-layer dark overlay for readability & premium feel */
.hero-premium-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(10, 14, 26, 0.88) 0%,
            rgba(10, 14, 26, 0.70) 55%,
            rgba(10, 14, 26, 0.45) 100%);
    z-index: 1;
}

/* Subtle vertical accent line */
.hero-premium-accent {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: linear-gradient(180deg, #C94048 0%, #3B6BA8 100%);
    z-index: 2;
}

.hero-premium-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem 5rem;
}

.hero-premium-inner {
    max-width: 720px;
}

.hero-premium-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
}

.hero-premium-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #C94048;
    flex-shrink: 0;
}

.hero-premium-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.hero-premium-title strong {
    font-weight: 700;
    display: block;
}

.hero-premium-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C94048, #3B6BA8);
    margin: 2rem 0;
    border: none;
}

.hero-premium-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    margin-bottom: 3rem;
    max-width: 580px;
    font-weight: 300;
}

.hero-premium-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}

.hero-premium-stat {
    flex: 0 0 auto;
}

.hero-premium-stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.hero-premium-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-premium-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Primary CTA on hero */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2.25rem;
    background: #C94048;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.btn-hero-primary:hover {
    background: #B73843;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,64,72,0.4);
}

/* Ghost secondary CTA on hero */
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2.25rem;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #ffffff;
}

/* ── Hero scroll hint ─────────────────────────────────────────────── */
.hero-premium-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}
.hero-premium-scroll:hover { color: rgba(255,255,255,0.65); }
.hero-premium-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* ================================================================
   COMPLIANCE / CONFIDENTIALITY / FAQ SECTIONS (new content blocks)
   ================================================================ */

/* ── Compliance & Risk section ────────────────────────────────────── */
.compliance-section {
    background: #ffffff;
    padding: 5rem 0;
}
.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.compliance-content { }
.compliance-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.compliance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.compliance-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.975rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.compliance-list li i {
    color: #3B6BA8;
    font-size: 0.875rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.compliance-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.compliance-pillar {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}
.compliance-pillar--red  { border-left-color: #C94048; }
.compliance-pillar--blue { border-left-color: #3B6BA8; }
.compliance-pillar:hover {
    box-shadow: var(--shadow-md);
    background: #ffffff;
}
.compliance-pillar-title {
    font-weight: 700;
    font-size: 0.975rem;
    color: var(--primary-dark);
    margin-bottom: 0.375rem;
}
.compliance-pillar-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── Confidentiality section ──────────────────────────────────────── */
.confidentiality-section {
    background: linear-gradient(135deg, #0f1724 0%, #1a2332 100%);
    color: #ffffff;
    padding: 5rem 0;
}
.confidentiality-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.confidentiality-header .section-subtitle { color: rgba(255,255,255,0.55); }
.confidentiality-title {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.confidentiality-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 1rem;
}
.confidentiality-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.conf-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: background 0.3s ease;
}
.conf-card:hover {
    background: rgba(255,255,255,0.1);
}
.conf-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.conf-card-icon--red  { background: rgba(201,64,72,0.25); color: #e87a81; }
.conf-card-icon--blue { background: rgba(59,107,168,0.25); color: #7aaae8; }
.conf-card-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.975rem;
    margin-bottom: 0.35rem;
}
.conf-card-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

/* ── Geography / Global presence (enhanced) ──────────────────────── */
.geography-section {
    background: var(--bg-light);
    padding: 5rem 0;
}
.geo-map-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
    background: #1a2332;
    aspect-ratio: 16/7;
}
.geo-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.geo-dots-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
}
.geo-dot-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.geo-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: relative;
}
.geo-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.4;
    animation: geoRipple 2s ease-in-out infinite;
}
@keyframes geoRipple {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50%       { transform: scale(1.4); opacity: 0; }
}
.geo-dot--uae  { background: #C94048; color: #C94048; }
.geo-dot--eu   { background: #3B6BA8; color: #3B6BA8; }
.geo-dot--mena { background: #e8a83a; color: #e8a83a; }
.geo-dot-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.geo-regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.geo-region {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.geo-region:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.geo-region-flag {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.geo-region-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}
.geo-region-city {
    font-size: 0.85rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.geo-region-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── FAQ section (homepage) ──────────────────────────────────────── */
.home-faq-section {
    background: #ffffff;
    padding: 5rem 0;
}
.home-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
.home-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.home-faq-item {
    border-bottom: 1px solid var(--border-color);
}
.home-faq-item:first-child {
    border-top: 1px solid var(--border-color);
}
/* CSS-only accordion using checkbox hack */
.home-faq-toggle {
    display: none;
}
.home-faq-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.975rem;
    color: var(--primary-dark);
    line-height: 1.5;
    gap: 1rem;
    user-select: none;
    transition: color 0.3s;
}
.home-faq-label:hover {
    color: var(--accent-red);
}
.home-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.home-faq-toggle:checked + .home-faq-label .home-faq-icon {
    background: var(--accent-red);
    color: white;
    transform: rotate(45deg);
}
.home-faq-toggle:checked + .home-faq-label {
    color: var(--accent-red);
}
.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.home-faq-toggle:checked ~ .home-faq-answer {
    max-height: 300px;
}
.home-faq-answer-inner {
    padding: 0 0 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* FAQ right side — contact card */
.home-faq-aside {
    position: sticky;
    top: 5rem;
}
.faq-aside-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
.faq-aside-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}
.faq-aside-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}
.faq-aside-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.faq-aside-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.faq-aside-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}
.faq-aside-link:hover {
    background: var(--accent-red);
    color: #ffffff;
}
.faq-aside-link i {
    width: 20px;
    text-align: center;
    color: var(--accent-red);
    transition: color 0.2s ease;
}
.faq-aside-link:hover i {
    color: #ffffff;
}

/* ── Service detailed overview (homepage teaser) ──────────────────── */
.service-overview-section {
    background: var(--bg-light);
    padding: 5rem 0;
}
.service-overview-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.sov-tab {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--border-color);
    background: #ffffff;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}
.sov-tab.active,
.sov-tab:hover {
    border-color: var(--accent-red);
    background: var(--accent-red);
    color: #ffffff;
}
.sov-panels { }
.sov-panel {
    display: none;
}
.sov-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.sov-panel-info { }
.sov-panel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.sov-panel-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.sov-panel-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.sov-panel-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.sov-panel-features li i {
    color: #C94048;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.sov-panel-aside {
    background: #ffffff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.sov-panel-aside-title {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-red);
    margin-bottom: 1.25rem;
}
.sov-aside-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.sov-aside-items li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}
.sov-aside-items li:last-child { border-bottom: none; }
.sov-aside-items li i {
    color: #3B6BA8;
    width: 18px;
    text-align: center;
}

/* ── Audit timeline block ────────────────────────────────────────── */
.audit-timeline-wrap {
    margin-top: 3rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}
.audit-timeline-heading {
    text-align: center;
    margin-bottom: 1rem;
}
.audit-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.audit-timeline-item {
    text-align: center;
}
.audit-timeline-num {
    font-size: 2rem;
    color: #C94048;
    font-weight: 700;
}
.audit-timeline-desc {
    margin: 0;
    color: var(--text-secondary);
}

/* ── Banking service icons ──────────────────────────────────────── */
.banking-option-icon {
    color: #C94048;
    margin-right: 0.5rem;
}

/* ── News container hidden state ─────────────────────────────────── */
.news-container-hidden {
    display: none;
}

/* ── News detail content hidden state ──────────────────────────── */
.nd-content-hidden {
    display: none;
}

/* ── News cards (dynamically generated) ────────────────────────── */
.news-card {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}
.news-card-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #C94048;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}
.news-card-img-wrap {
    width: 100%;
    height: 200px;
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    width: calc(100% + 4rem);
}
.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-card-category {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 0.875rem;
    color: #C94048;
    font-weight: 600;
    margin-bottom: 1rem;
}
.news-card-title {
    margin-bottom: 1rem;
}
.news-card-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex: 1;
}
.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}
.news-card-date {
    color: var(--text-light);
    font-size: 0.875rem;
}
.news-card-date i {
    margin-right: 0.5rem;
}

/* ── News empty state ─────────────────────────────────────────────── */
.news-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

/* ── Premium news listing cards ───────────────────────────────────── */
.news-container-hidden { display: none; }
.news-loading { text-align: center; padding: 4rem 0; }
.news-loading-icon { font-size: 2rem; color: var(--accent-red); margin-bottom: 1rem; display: block; }
.news-loading-text { color: var(--text-secondary); }
.news-error { display: none; text-align: center; padding: 3rem; }
.news-error-icon { font-size: 2.5rem; color: var(--text-secondary); margin-bottom: 1rem; display: block; }
.news-error-text { color: var(--text-secondary); }

/* News grid container */
.news-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
@media (max-width: 900px) {
    .news-grid-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .news-grid-container { grid-template-columns: 1fr; }
}

/* Category badge */
.news-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fff;
}
.news-cat-badge--sm {
    font-size: 0.65rem;
    padding: 0.25rem 0.65rem;
}

/* Section divider between featured and regular grid */
.news-section-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 1.5rem 0 0.5rem;
}
.news-section-line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
    display: block;
}
.news-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9ca3af;
    white-space: nowrap;
}

/* Featured wrap */
.news-featured-wrap {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Featured card — wide hero style */
.news-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    background: var(--primary-dark);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.news-featured-card:hover { transform: translateY(-4px); box-shadow: 0 16px 56px rgba(0,0,0,0.18); }
.news-featured-img {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.news-featured-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,35,50,0.3) 0%, rgba(26,35,50,0) 100%);
}
.news-featured-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #fff;
}
.news-featured-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.news-featured-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}
.news-featured-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}
.news-featured-excerpt {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.news-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.news-card-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}
.news-card-meta i { margin-right: 0.35rem; }
.news-read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: #C94048;
    white-space: nowrap;
}
.news-read-more i { margin-left: 0.35rem; }

/* Regular editorial card */
.news-editorial-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.news-editorial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.news-editorial-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}
.news-editorial-img .news-cat-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
}
.news-editorial-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}
.news-editorial-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.35;
    margin: 0;
}
.news-editorial-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-editorial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}
.news-editorial-date {
    font-size: 0.75rem;
    color: var(--text-light);
}
.news-editorial-date i { margin-right: 0.3rem; }
.news-editorial-read {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-red);
}
.news-editorial-read i { margin-left: 0.3rem; transition: transform 0.2s; }
.news-editorial-card:hover .news-editorial-read i { transform: translateX(3px); }

/* Responsive featured card */
@media (max-width: 768px) {
    .news-featured-card { grid-template-columns: 1fr; }
    .news-featured-img { min-height: 220px; }
    .news-featured-body { padding: 1.75rem; }
    .news-featured-title { font-size: 1.25rem; }
}

/* ── About page registration paragraph ─────────────────────────── */
.about-reg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ── Service icon colors ─────────────────────────────────────────── */
.service-icon-modern--red  { background: linear-gradient(135deg, #C94048 0%, #B73843 100%); }
.service-icon-modern--blue { background: linear-gradient(135deg, #3B6BA8 0%, #2F5F9E 100%); }

/* ── Services why-choose section ──────────────────────────────────── */
.services-why-section {
    background: linear-gradient(135deg, #1a2332 0%, #2F5F9E 100%);
    color: white;
    padding: 5rem 0;
}
.services-why-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.services-why-header {
    text-align: center;
    margin-bottom: 4rem;
}
.services-why-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.services-why-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    color: white;
}
.services-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.services-why-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}
.services-why-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.services-why-card-title {
    color: white;
    margin-bottom: 0.75rem;
}
.services-why-card-text {
    opacity: 0.9;
    font-size: 0.95rem;
    color: white;
}

/* ── Service process step number ─────────────────────────────────── */
.card-step-num {
    font-size: 2.5rem;
    color: #C94048;
    margin-bottom: 1rem;
}

/* ── Service packages ────────────────────────────────────────────── */
.pkg-card { border: 2px solid var(--border-color); }
.pkg-card--featured {
    border: 3px solid #C94048;
    position: relative;
    transform: scale(1.05);
}
.pkg-card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #C94048;
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}
.pkg-card-header { text-align: center; margin-bottom: 1.5rem; }
.pkg-card-header--featured { margin-top: 1rem; }
.pkg-card-title {
    color: #C94048;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.pkg-card-subtitle { color: var(--text-secondary); }
.pkg-card-btn { width: 100%; }
.pkg-custom-box {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}
.pkg-custom-title { margin-bottom: 1rem; }
.pkg-custom-text {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

@media (max-width: 768px) {
    .pkg-card--featured { transform: scale(1); }
    .services-why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .process-line,
    .approach-line { display: none; }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .global-grid {
        grid-template-columns: 1fr;
    }
    .approach-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-form-box {
        padding: 1.5rem;
    }
    .testimonial-blockquote {
        font-size: 1.125rem;
    }
    .mission-title {
        font-size: 1.75rem;
    }
}
@media (max-width: 480px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .contacts-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small)
   ================================================================ */

/* ── Hero Premium ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-premium-container {
        padding: 6rem 1.25rem 4rem;
    }
    .hero-premium-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .hero-premium-desc {
        font-size: 1rem;
    }
    .hero-premium-stats {
        gap: 1.5rem;
    }
    .hero-premium-stat-number {
        font-size: 1.75rem;
    }
    .hero-premium-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-hero-primary,
    .btn-hero-ghost {
        width: 100%;
        justify-content: center;
    }
    .hero-premium-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-premium-container {
        padding: 5rem 1rem 3.5rem;
    }
    .hero-premium-stats {
        gap: 1.25rem;
    }
    .hero-premium-stat-number {
        font-size: 1.5rem;
    }
}

/* ── General section spacing ─────────────────────────────────────── */
@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .section-header {
        margin: 0 auto 2.5rem;
    }
}

/* ── Container padding ───────────────────────────────────────────── */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ── Cards grid ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ── Services grid 6 ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-grid-6 {
        grid-template-columns: 1fr;
    }
}

/* ── About cards grid ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .about-stats-banner {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .stats-banner-number {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .about-stats-banner {
        grid-template-columns: 1fr;
    }
}

/* ── Stats grid ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Compliance section ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ── Confidentiality section ─────────────────────────────────────── */
@media (max-width: 900px) {
    .confidentiality-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .confidentiality-title {
        font-size: 1.75rem;
    }
}

/* ── Geography geo-regions ───────────────────────────────────────── */
@media (max-width: 768px) {
    .geo-regions {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ── FAQ homepage ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .home-faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .home-faq-aside {
        position: static;
    }
}

/* ── Service overview (tab panels) ─────────────────────────────── */
@media (max-width: 768px) {
    .sov-panel.active {
        grid-template-columns: 1fr;
    }
    .service-overview-tabs {
        gap: 0.5rem;
    }
}

/* ── Features grid ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    .feature-image {
        height: 280px;
    }
}

/* ── Page hero ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .page-hero {
        min-height: 55vh;
        padding: 6rem 0 3rem;
    }
    .page-hero h1,
    .ph-title {
        font-size: 2rem;
    }
}

/* ── Footer ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .fv2-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .fv2-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .fv2-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .fv2-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ── CTA section ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .cta-section {
        padding: 3.5rem 0;
    }
    .cta-section h2 {
        font-size: 1.75rem;
    }
    .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }
}

/* ── Cards generic mobile ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .card {
        padding: 1.5rem;
    }
    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* ── Testimonial ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .testimonial-blockquote {
        font-size: 1rem;
    }
    .testimonial-inner {
        padding: 0 0.5rem;
    }
}

/* ── Process section mobile ──────────────────────────────────────── */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .process-step-circle {
        width: 90px;
        height: 90px;
    }
    .process-step-icon {
        font-size: 1.75rem;
    }
}
@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Hero accordion (old — kept for any remnant references) ────────── */
@media (max-width: 900px) {
    .hero-accordion-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-accordion-images {
        display: none;
    }
    .hero-accordion {
        padding-top: 6rem;
        min-height: auto;
    }
}

/* ── Headings responsive scaling ─────────────────────────────────── */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
}

/* ── Service sub-pages cards grid ────────────────────────────────── */
@media (max-width: 768px) {
    .about-cards-grid,
    .advantages-grid,
    .services-why-grid {
        grid-template-columns: 1fr;
    }
    .pkg-card--featured {
        transform: none;
    }
}

/* ── Scroll to top position on small screens ─────────────────────── */
@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE ENRICHMENTS
   ═══════════════════════════════════════════════════════════════════ */

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

.about-diff-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-diff-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.about-diff-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(201,64,72,0.12);
    line-height: 1;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
}

.about-diff-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.about-diff-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-diff-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .about-diff-grid { grid-template-columns: 1fr; }
}

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

.expertise-area {
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #fafafa;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.expertise-area:hover {
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}

.expertise-area-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(201,64,72,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-red);
    margin-bottom: 1.25rem;
}

.expertise-area h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.expertise-area p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .expertise-areas-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .expertise-areas-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES PAGE: FULL GRID & PROCESS FLOW
   ═══════════════════════════════════════════════════════════════════ */

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

.svc-detail-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.svc-detail-card:hover {
    box-shadow: 0 10px 36px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.svc-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.svc-detail-header--red {
    background: rgba(201,64,72,0.04);
}

.svc-detail-header--blue {
    background: rgba(59,107,168,0.04);
}

.svc-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.svc-detail-header--red .svc-detail-icon {
    background: rgba(201,64,72,0.12);
    color: var(--accent-red);
}

.svc-detail-header--blue .svc-detail-icon {
    background: rgba(59,107,168,0.12);
    color: var(--primary-blue);
}

.svc-detail-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.svc-detail-tagline {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.svc-detail-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    padding: 1.25rem 1.5rem 0.75rem;
    margin: 0;
}

.svc-detail-list {
    list-style: none;
    padding: 0 1.5rem 1rem;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.svc-detail-list li {
    font-size: 0.82rem;
    color: var(--text-primary);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.4;
}

.svc-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-red);
}

.svc-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-red);
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    transition: gap 0.2s ease, background 0.2s ease;
    margin-top: auto;
}

.svc-detail-link:hover {
    gap: 0.65rem;
    background: rgba(201,64,72,0.04);
}

/* Services Process Flow */
.services-process-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    position: relative;
}

.services-process-flow::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-red), var(--primary-blue));
    opacity: 0.2;
}

.spf-step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.spf-step:last-child {
    border-bottom: none;
}

.spf-step-num {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 1;
    flex-shrink: 0;
}

.spf-step:nth-child(odd) .spf-step-num {
    background: var(--accent-red);
}

.spf-step:nth-child(even) .spf-step-num {
    background: var(--primary-blue);
}

.spf-step-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.spf-step-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-full-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .services-full-grid {
        grid-template-columns: 1fr;
    }
    .services-process-flow::before {
        display: none;
    }
    .spf-step {
        gap: 1.5rem;
    }
    .spf-step-num {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   CASE STUDIES / SCENARIOS
   ═══════════════════════════════════════════════════════════════════ */
.case-studies-section {
    background: var(--bg-light);
}

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

.case-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.case-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.case-card-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    width: fit-content;
}

.case-card-tag--red {
    background: rgba(201,64,72,0.1);
    color: var(--accent-red);
}

.case-card-tag--blue {
    background: rgba(59,107,168,0.1);
    color: var(--primary-blue);
}

.case-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.case-card-challenge,
.case-card-solution {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.case-card-challenge span:first-child,
.case-card-solution span:first-child {
    font-weight: 700;
    color: var(--text-primary);
}

.case-card-result {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: rgba(59,107,168,0.06);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: auto;
}

.case-card-result i {
    color: var(--primary-blue);
    flex-shrink: 0;
}

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

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

/* ═══════════════════════════════════════════════════════════════════
   EXPERT INSIGHTS
   ═══════════════════════════════════════════════════════════════════ */
.expert-insights-section {
    background: #ffffff;
}

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

.insight-card {
    background: #fafafa;
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.insight-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.insight-card-cat {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.insight-card-cat--red {
    background: rgba(201,64,72,0.1);
    color: var(--accent-red);
}

.insight-card-cat--blue {
    background: rgba(59,107,168,0.1);
    color: var(--primary-blue);
}

.insight-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.insight-card-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.insight-card-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.insight-card-topics span {
    padding: 0.25rem 0.65rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

/* ═══════════════════════════════════════════════════════════════════
   SERVICE OVERVIEW TABS
   ═══════════════════════════════════════════════════════════════════ */
.service-detail-overview {
    background: var(--bg-light);
}

.sov-tabs {
    margin-top: 3rem;
}

.sov-tab-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 0;
    padding-bottom: 0;
}

.sov-tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sov-tab-btn:hover {
    color: var(--text-primary);
    background: rgba(59,107,168,0.05);
}

.sov-tab-btn.active {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
    background: rgba(201,64,72,0.04);
}

.sov-tab-content {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.sov-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.sov-panel.active {
    display: grid;
}

.sov-panel-left {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sov-panel-left h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.sov-panel-left p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.sov-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sov-list li {
    font-size: 0.875rem;
    color: var(--text-primary);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.sov-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-red);
}

.sov-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.sov-link:hover {
    gap: 0.75rem;
}

.sov-panel-right {
    background: linear-gradient(145deg, var(--primary-dark) 0%, #243447 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.sov-metric {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sov-metric-val {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.sov-metric-lbl {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.sov-metric-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .sov-panel.active {
        grid-template-columns: 1fr;
    }
    .sov-panel-right {
        padding: 2rem 2.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem 2rem;
    }
    .sov-metric-note {
        width: 100%;
    }
    .sov-tab-btns {
        gap: 0.25rem;
    }
    .sov-tab-btn {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }
    .sov-panel-left {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .sov-tab-btns {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .sov-tab-btns::-webkit-scrollbar { display: none; }
    .sov-tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .sov-panel-right {
        flex-direction: column;
        padding: 1.5rem;
    }
}
