/* ===============================================
   360 Security Group - Modern Design System
   Color Palette from Logo:
   - Primary: #2F2A99 to #1673FF (gradient)
   - Accent: #1673FF
   - Dark: #2F2A99
   =============================================== */

:root {
    --primary-dark: #2F2A99;
    --primary-blue: #1673FF;
    --gradient: linear-gradient(135deg, #2F2A99 0%, #1673FF 100%);
    --gradient-hover: linear-gradient(135deg, #241f7a 0%, #0d5ce6 100%);
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===============================================
   Navigation
   =============================================== */

/* Top Utility Bar */
.top-utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1001;
    font-size: 0.875rem;
}

.utility-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 40px;
    padding: 0.5rem 0;
}

.utility-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.utility-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.utility-link:hover {
    color: var(--primary-blue);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

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

.lang-btn svg {
    width: 18px;
    height: 18px;
}

.arrow-down {
    font-size: 0.7rem;
    margin-left: 0.125rem;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.75rem 0 0.5rem;
    z-index: 1000;
}

.language-selector:hover .lang-dropdown,
.language-selector:focus-within .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: linear-gradient(135deg, rgba(47, 42, 153, 0.05) 0%, rgba(22, 115, 255, 0.05) 100%);
    color: var(--primary-blue);
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(47, 42, 153, 0.08) 0%, rgba(22, 115, 255, 0.08) 100%);
    color: var(--primary-blue);
    font-weight: 600;
}

.lang-code {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.lang-option.active .lang-code {
    color: var(--primary-blue);
}

/* Main Navbar */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
    padding: 1.5rem 0;
}

.logo-container {
    height: 80px;
    width: 280px;
    min-width: 280px;
    display: flex;
    align-items: center;
    flex: 0 0 280px;
    padding-right: 1rem;
}

.logo-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links > a,
.nav-dropdown {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.nav-link-dropdown {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    cursor: pointer;
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0;
    padding-top: 1rem;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, rgba(47, 42, 153, 0.05) 0%, rgba(22, 115, 255, 0.05) 100%);
    color: var(--primary-blue);
    padding-left: 2rem;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.nav-dropdown:hover .nav-link-dropdown {
    color: var(--primary-blue);
}

.nav-links > a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links > a:not(.btn-primary):hover {
    color: var(--primary-blue);
}

.nav-links > a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links > a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-links > a.btn-primary {
    color: #ffffff;
}

.nav-links > a.btn-primary:hover {
    color: #ffffff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===============================================
   Buttons
   =============================================== */

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(22, 115, 255, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 115, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* ===============================================
   Hero Section
   =============================================== */

.hero {
    position: relative;
    padding: 220px 0 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(47, 42, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(22, 115, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

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

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

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===============================================
   Solutions Section
   =============================================== */

.solutions {
    padding: 120px 0;
    background: var(--bg-white);
}

.offensive-services {
    padding: 120px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(22, 115, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.solution-card:hover::before {
    background: radial-gradient(circle, rgba(22, 115, 255, 0.1) 0%, transparent 70%);
}

.solution-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    padding: 8px;
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-card:hover .solution-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(22, 115, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

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

/* ===============================================
   Features Section
   =============================================== */

.features {
    padding: 120px 0;
    background: var(--bg-light);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.features-intro {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
}

.features-list strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.features-list p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.features-visual {
    position: relative;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.mockup-header {
    display: flex;
    gap: 8px;
    padding: 1rem;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mockup-content {
    padding: 3rem 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.threat-alert {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    border-left: 4px solid var(--primary-blue);
    animation: slideIn 0.5s ease;
}

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

.alert-icon {
    font-size: 2.5rem;
}

.alert-content strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.alert-content p {
    color: var(--text-gray);
}

/* ===============================================
   Why Choose Us Section
   =============================================== */

.why-choose {
    padding: 120px 0;
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(47, 42, 153, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.why-card:hover::before {
    background: radial-gradient(circle, rgba(47, 42, 153, 0.08) 0%, transparent 70%);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 247, 255, 0.9) 100%);
    border-radius: 14px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    padding: 12px;
    border: 2px solid rgba(22, 115, 255, 0.15);
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(22, 115, 255, 0.25);
    border-color: var(--primary-blue);
}

.why-card:hover .why-icon img {
    opacity: 1;
}

.why-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ===============================================
   About Our People Section
   =============================================== */

.about-people {
    padding: 120px 0;
    background: var(--bg-white);
}

.people-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.people-text h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.people-intro {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.people-highlight {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(47, 42, 153, 0.05) 0%, rgba(22, 115, 255, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
    margin-bottom: 2rem;
}

.highlight-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.highlight-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.certifications-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.cert-logo {
    height: 120px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 14px;
    padding: 1rem;
    border: 2px solid rgba(22, 115, 255, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.cert-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.cert-logo:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(22, 115, 255, 0.2);
}

.cert-logo:hover img {
    filter: grayscale(0);
}

.people-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.people-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.people-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.pstat-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 247, 255, 0.9) 100%);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
}

.pstat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.people-stat-card:hover .pstat-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
}

.pstat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pstat-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ===============================================
   Trust Section
   =============================================== */

.trust {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.trust h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.trust-subtitle {
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.experience-stat {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-stat:hover {
    transform: translateY(-5px);
}

.exp-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    padding: 8px;
    background: linear-gradient(135deg, rgba(47, 42, 153, 0.1) 0%, rgba(22, 115, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.exp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.experience-stat:hover .exp-icon {
    background: linear-gradient(135deg, rgba(47, 42, 153, 0.2) 0%, rgba(22, 115, 255, 0.2) 100%);
    transform: scale(1.1);
}

.exp-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.exp-label {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact {
    background: var(--bg-light);
    padding: 120px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
}

.contact-intro h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-intro p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.contact-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-highlights li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient);
    display: inline-block;
}

.contact-form {
    background: white;
    padding: 2.75rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(22, 115, 255, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231673FF' d='M6 8a.999.999 0 0 1-.707-.293l-5-5A1 1 0 0 1 1.707.293L6 4.586 10.293.293a1 1 0 1 1 1.414 1.414l-5 5A.999.999 0 0 1 6 8Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

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

.contact-form .btn-primary {
    align-self: flex-start;
}

/* ===============================================
   CTA Section
   =============================================== */

.cta {
    padding: 100px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.cta .btn-primary {
    background: white;
    color: var(--primary-blue);
    box-shadow: none;
}

.cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* ===============================================
   Footer
   =============================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===============================================
   Cookie Consent Banner & Modal
   =============================================== */

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-blue);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-necessary,
.btn-cookie-settings {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(22, 115, 255, 0.3);
}

.btn-cookie-accept:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 115, 255, 0.4);
}

.btn-cookie-necessary {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--border-color);
}

.btn-cookie-necessary:hover {
    background: var(--bg-light);
    border-color: var(--text-gray);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-modal-intro {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cookie-category {
    margin-bottom: 1.75rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: var(--primary-blue);
    background: #f0f7ff;
}

.cookie-category-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--gradient);
}

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

.cookie-switch input:disabled + .cookie-slider {
    background: var(--gradient);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-category-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cookie-required {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.cookie-category-info p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.cookie-policy-link {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.cookie-policy-link p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.cookie-policy-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-policy-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: var(--bg-light);
}

/* ===============================================
   PDF Viewer Modal
   =============================================== */

.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.pdf-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1100px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.pdf-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-light);
}

.pdf-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.pdf-modal-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pdf-download-btn {
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pdf-download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.pdf-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pdf-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.pdf-modal-body {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #525659;
}

.pdf-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pdf-modal {
        padding: 0.5rem;
    }

    .pdf-modal-content {
        height: 95vh;
        border-radius: 12px;
    }

    .pdf-modal-header {
        padding: 1rem 1.25rem;
    }

    .pdf-modal-header h2 {
        font-size: 1.25rem;
    }

    .pdf-download-btn {
        padding: 0.5rem;
        font-size: 0;
    }

    .pdf-download-btn svg {
        margin: 0;
    }
}

/* ===============================================
   Responsive Design
   =============================================== */

@media (max-width: 1024px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-visual {
        order: -1;
    }

    .people-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

@media (max-width: 768px) {
    /* Cookie Consent Mobile */
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 1rem;
    }

    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-necessary,
    .btn-cookie-settings {
        width: 100%;
    }

    .cookie-modal {
        padding: 1rem;
    }

    .cookie-modal-content {
        max-height: 90vh;
    }

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

    .cookie-modal-header h2 {
        font-size: 1.5rem;
    }

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

    .cookie-category {
        padding: 1.25rem;
    }

    .cookie-modal-footer {
        flex-direction: column-reverse;
        padding: 1.25rem 1.5rem;
    }

    .cookie-modal-footer button {
        width: 100%;
    }

    .utility-right {
        gap: 1rem;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 150px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

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

    .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 0;
        background: #f8f9ff;
        display: none;
    }

    .nav-dropdown.active .dropdown-content {
        display: block;
    }

    .nav-links > a {
        padding: 1rem 0;
        width: 100%;
    }

    .language-selector.active .lang-dropdown {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 170px 0 80px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .features-text h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-form {
        padding: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .contact-intro h2 {
        font-size: 2.25rem;
    }

    .contact-form {
        padding: 1.75rem;
    }
}
