:root {
    --primary: #0052cc;
    --primary-dark: #003d99;
    --primary-light: #e6f0ff;
    --primary-glow: rgba(0, 82, 204, 0.15);
    --secondary: #0a2540;
    --accent: #00c2ff;
    --text-main: #1d1d1f;
    --text-muted: #5e6675;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --warning: #f59e0b;
    --success: #10b981;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(0, 82, 204, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

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

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

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-light);
}

.mobile-menu-toggle i {
    width: 24px;
    height: 24px;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 82, 204, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 82, 204, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary) !important;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 37, 64, 0.2);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease, color 0.3s ease;
}

.btn-text:hover {
    gap: 14px;
    color: var(--primary-dark);
}

.btn-text i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(2px);
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--primary);
}

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

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero.v2 {
    padding: 180px 0 130px;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0, 82, 204, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 194, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at top right, #eef2ff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero.v2::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 82, 204, 0.12);
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.8rem);
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
    background: #fff;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.icon-primary {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.decor-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════════
   TRUST STRIP (Numbers)
   ═══════════════════════════════════════════════════════════ */
.trust-strip {
    padding: 50px 0;
    background: var(--bg-white);
    border-bottom: 1px solid #f1f5f9;
}

.trust-strip-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-item .trust-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-item .trust-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   STORY SECTION
   ═══════════════════════════════════════════════════════════ */
.story-section {
    padding: 110px 0;
    background: var(--bg-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.story-content h2 span {
    color: var(--primary);
}

.story-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.risk-card {
    background: linear-gradient(135deg, #fff8f0 0%, #fff5f5 100%);
    border: 1px solid #fee2e2;
    padding: 45px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.icon-warning {
    color: var(--warning);
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.risk-card h3 {
    margin-bottom: 12px;
}

.risk-card p {
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES V2
   ═══════════════════════════════════════════════════════════ */
.services-v2 {
    padding: 120px 0;
    background: var(--bg-light);
}

.services-v2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-v2-card {
    background: var(--bg-white);
    padding: 50px 38px;
    border-radius: var(--radius-xl);
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

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

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

.service-v2-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--primary-light);
}

.card-header {
    margin-bottom: 25px;
}

.service-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    margin-bottom: 22px;
    padding: 10px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
}

.service-v2-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.service-v2-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.expert-badge {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #0d3157 100%);
    color: white;
    padding: 24px 40px;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.3);
}

.expert-badge strong {
    color: var(--accent);
}

/* Service Toggle & Expandable Detail */
.service-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    margin-top: auto;
}

.service-toggle i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-toggle.open i {
    transform: rotate(180deg);
}

.service-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.service-detail.open {
    max-height: 400px;
    opacity: 1;
}

.detail-steps {
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.detail-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
}

.step-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin-top: 2px;
}

.detail-step strong {
    display: block;
    font-size: 0.92rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.detail-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    flex-grow: 0;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION V2
   ═══════════════════════════════════════════════════════════ */
.about-v2 {
    padding: 110px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--secondary);
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.92rem;
}

.stat-item i {
    color: var(--primary);
    width: 20px;
}

/* ═══════════════════════════════════════════════════════════
   MANAGEMENT SYSTEMS (ISO)
   ═══════════════════════════════════════════════════════════ */
.mgmt-systems {
    margin-top: 80px;
    text-align: center;
}

.mgmt-systems h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.mgmt-systems h3 span {
    color: var(--primary);
}

.mgmt-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.mgmt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mgmt-card {
    background: var(--bg-light);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-lg);
    padding: 36px 24px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.mgmt-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    border-color: var(--primary-light);
}

.mgmt-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.mgmt-icon i {
    width: 26px;
    height: 26px;
}

.mgmt-icon-green {
    background: #ecfdf5;
    color: #10b981;
}

.mgmt-icon-amber {
    background: #fffbeb;
    color: #f59e0b;
}

.mgmt-icon-indigo {
    background: #eef2ff;
    color: #6366f1;
}

.mgmt-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.mgmt-card p {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.88rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mgmt-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .mgmt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION V2
   ═══════════════════════════════════════════════════════════ */
.contact-v2 {
    padding: 130px 0;
    background: linear-gradient(135deg, #0a2540 0%, #001a33 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-card {
    background: var(--bg-white);
    color: var(--text-main);
    padding: 65px;
    border-radius: var(--radius-xl);
    display: grid;
    gap: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.contact-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.contact-header h2 span {
    color: var(--primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

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

.method i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.method h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin-bottom: 4px;
}

.method p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.v2-form {
    display: grid;
    gap: 18px;
}

.v2-form input, .v2-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-light);
}

.v2-form input:focus, .v2-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: var(--bg-white);
}

.v2-form input::placeholder, .v2-form textarea::placeholder {
    color: #94a3b8;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
    padding: 60px 0 40px;
    background: var(--bg-light);
    border-top: 1px solid #e2e8f0;
}

.footer-v2-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 6px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.copyright {
    font-size: 0.85rem;
    color: #94a3b8;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-right {
    animation: fadeInRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    opacity: 0;
}

/* Scroll reveal */
.reveal, .reveal-right, .service-v2-card, .story-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal.active, .reveal-right.active, .service-v2-card.active, .story-grid.active {
    opacity: 1;
    transform: translate(0);
}

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */
#cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 37, 64, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

#cookie-overlay.visible {
    opacity: 1;
}

#cookie-overlay.closing {
    opacity: 0;
}

.cookie-banner {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 640px;
    width: 100%;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-overlay.visible .cookie-banner {
    transform: translateY(0);
}

.cookie-banner-inner {
    padding: 32px 34px 28px;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.cookie-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: var(--secondary);
}

.cookie-banner-inner > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Cookie Categories */
.cookie-categories {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle:hover {
    background: #f1f5f9;
}

.cookie-toggle.disabled {
    cursor: default;
    opacity: 0.7;
}

.cookie-toggle-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cookie-toggle-info strong {
    font-size: 0.92rem;
    color: var(--secondary);
}

.cookie-toggle-info small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Toggle Switch */
.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 44px;
    height: 24px;
    background: #cbd5e1;
    border-radius: 50px;
    position: relative;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

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

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

.toggle-slider.locked {
    background: var(--success);
}

.toggle-slider.locked::after {
    transform: translateX(20px);
}

/* Cookie Action Buttons */
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--primary);
    color: white;
    flex: 1;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid #e2e8f0;
    flex: 1;
}

.cookie-btn-reject:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: #f8fafc;
}

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

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

.cookie-save-row {
    justify-content: flex-end;
    margin-top: 12px;
}

.cookie-policy-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-size: 0.82rem;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.cookie-policy-link:hover {
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
   ═══════════════════════════════════════════════════════════ */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1100;
    padding: 80px 30px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-drawer a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    display: block;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-drawer a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.mobile-nav-drawer .btn-primary {
    margin-top: 20px;
    text-align: center;
    border-bottom: none;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary);
}

.mobile-nav-close i {
    width: 24px;
    height: 24px;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero .container, .story-grid, .about-grid, .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero.v2 {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.8rem !important;
    }

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

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

    .contact-card {
        padding: 40px 25px;
    }

    .nav-links {
        display: none;
    }

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

    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-item .trust-number {
        font-size: 1.8rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-item {
        justify-content: center;
    }

    .expert-badge {
        border-radius: var(--radius-md);
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        text-align: center;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .footer-v2-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .services-cta p {
        font-size: 1.1rem;
    }

    .about-v2, .services-v2, .mgmt-systems, .story-section {
        padding: 60px 0;
    }
}
