.menu-check { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .menu-check:checked ~ .menu-toggle span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
  .menu-check:checked ~ .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-check:checked ~ .menu-toggle span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }
  .menu-check:checked ~ .nav-links {
    display: flex !important;
    transform: translateY(0) translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: 0 !important;
    left: 0 !important;
    max-height: 100vh !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 768px) {
  .menu-toggle span { background: var(--gold) !important; }
  
  .nav-dropdown { opacity: 1 !important; visibility: visible !important; }
}

body:has(#menuCheck:checked) { overflow: hidden; }

:root {
            --primary: #0F2B5B;
            --primary-light: #1B3A6B;
            --primary-dark: #091D40;
            --gold: #C8963E;
            --gold-light: #D4A94F;
            --gold-dark: #B8862E;
            --bg-light: #F7F8FC;
            --bg-white: #FFFFFF;
            --text-dark: #1A1A2E;
            --text-muted: #5A6177;
            --text-light: #8892A7;
            --teal: #2A9D8F;
            --border: #E2E6EF;
        }

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

html { scroll-behavior: smooth; }

body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            background: var(--bg-white);
            line-height: 1.7;
            overflow-x: hidden;
        }

h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            line-height: 1.2;
        }

.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

.navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 20px 0;
        }

.navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(15, 43, 91, 0.08);
        }

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

.nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

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

.nav-logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: #fff;
            transition: color 0.4s;
            letter-spacing: 0.5px;
        }

.navbar.scrolled .nav-logo-text {
            color: var(--primary);
        }

.nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

.nav-links > li {
            position: relative;
        }

.nav-links > li > a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.88rem;
            transition: all 0.3s;
            position: relative;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 0;
        }

.navbar.scrolled .nav-links > li > a {
            color: var(--text-dark);
        }

.nav-links > li > a:hover {
            color: var(--gold);
        }

.nav-links > li > a i.fa-chevron-down {
            font-size: 0.7rem;
            transition: transform 0.3s;
        }

.nav-links > li:hover > a i.fa-chevron-down {
            transform: rotate(180deg);
        }

.nav-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-white);
            border-radius: 12px;
            padding: 16px;
            min-width: 220px;
            box-shadow: 0 10px 40px rgba(15, 43, 91, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            margin-top: 12px;
            border: 1px solid var(--border);
        }

.nav-links > li:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            margin-top: 8px;
        }

.nav-dropdown a {
            display: block;
            padding: 10px 16px;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s;
        }

.nav-dropdown a:hover {
            background: var(--bg-light);
            color: var(--gold);
            padding-left: 20px;
        }

.nav-cta {
            background: var(--gold) !important;
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600 !important;
            transition: all 0.3s !important;
            box-shadow: 0 4px 15px rgba(200, 150, 62, 0.3);
            padding: 8px 10px !important;
        }

.nav-cta:hover {
            background: var(--gold-light) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(200, 150, 62, 0.4);
        }

.nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

.nav-hamburger span {
            width: 26px;
            height: 2.5px;
            background: #fff;
            border-radius: 3px;
            transition: all 0.3s;
        }

.navbar.scrolled .nav-hamburger span {
            background: var(--primary);
        }

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

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

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

.hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--primary-dark);
        }

.hero-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

.hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
        }

.hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(9, 29, 64, 0.92) 0%, rgba(15, 43, 91, 0.75) 50%, rgba(27, 58, 107, 0.6) 100%);
            z-index: 2;
        }

.hero-gold-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            z-index: 5;
        }

.hero-content {
            position: relative;
            z-index: 3;
            max-width: 750px;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 150, 62, 0.15);
            border: 1px solid rgba(200, 150, 62, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            color: var(--gold-light);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 28px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            animation: fadeInDown 0.8s ease;
        }

.hero h1 {
            font-size: clamp(2.5rem, 5.5vw, 4.2rem);
            color: #fff;
            font-weight: 800;
            margin-bottom: 10px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

.hero h1 .gold {
            color: var(--gold);
        }

.hero-subtitle {
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.75);
            font-weight: 300;
            margin-bottom: 40px;
            max-width: 650px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

.hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
        }

.btn-gold {
            background: var(--gold);
            color: #fff;
            box-shadow: 0 8px 30px rgba(200, 150, 62, 0.35);
        }

.btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(200, 150, 62, 0.45);
        }

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

.btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-3px);
        }

.btn-gold .pulse-dot {
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

.hero-decor {
            position: absolute;
            z-index: 2;
        }

.hero-decor-1 {
            top: 15%;
            right: 8%;
            width: 120px;
            height: 120px;
            border: 1px solid rgba(200, 150, 62, 0.15);
            transform: rotate(45deg);
        }

.hero-decor-2 {
            bottom: 20%;
            right: 15%;
            width: 80px;
            height: 80px;
            border: 1px solid rgba(200, 150, 62, 0.1);
            transform: rotate(45deg);
        }

.trust-bar {
            background: var(--bg-white);
            padding: 50px 0;
            position: relative;
            z-index: 10;
            border-bottom: 1px solid var(--border);
        }

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

.trust-item {
            text-align: center;
            padding: 20px;
        }

.trust-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 6px;
        }

.trust-number .gold {
            color: var(--gold);
            font-size: 1.5rem;
        }

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

.trust-divider {
            width: 30px;
            height: 2px;
            background: var(--gold);
            margin: 10px auto 0;
            border-radius: 2px;
        }

.section {
            padding: 100px 0;
        }

.section-dark {
            background: var(--primary);
            color: #fff;
        }

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

.section-header {
            text-align: center;
            margin-bottom: 60px;
        }

.section-tag {
            display: inline-block;
            color: var(--gold);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

.section-dark .section-tag {
            color: var(--gold-light);
        }

.section-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            color: var(--text-dark);
            margin-bottom: 16px;
            font-weight: 700;
        }

.section-dark .section-header h2 {
            color: #fff;
        }

.section-line {
            width: 60px;
            height: 3px;
            background: var(--gold);
            margin: 0 auto 20px;
            border-radius: 3px;
        }

.section-desc {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.8;
        }

.section-dark .section-desc {
            color: rgba(255, 255, 255, 0.7);
        }

.products-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 28px;
            margin-top: 40px;
        }

.product-card {
            background: var(--bg-white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(15, 43, 91, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border);
            position: relative;
            flex: 0 0 calc((100% - 56px) / 3);
            max-width: calc((100% - 56px) / 3);
        }

.product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

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

.product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(15, 43, 91, 0.12);
            border-color: rgba(200, 150, 62, 0.3);
        }

.product-card-header {
            padding: 28px 24px 20px;
            border-bottom: 1px solid var(--border);
        }

.product-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.4rem;
            margin-bottom: 16px;
        }

.product-card-header h3 {
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-weight: 700;
        }

.product-card-body {
            padding: 24px;
        }

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

.product-list li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

.product-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--teal);
            font-size: 0.75rem;
        }

.services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
        }

.service-card-simple {
            background: var(--bg-white);
            border-radius: 14px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            flex: 0 0 calc(25% - 19px);
            max-width: calc(25% - 19px);
        }

.service-card-simple::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

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

.service-card-simple:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(15, 43, 91, 0.1);
        }

.service-icon-simple {
            width: 60px;
            height: 60px;
            margin: 0 auto 18px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.4rem;
            transition: all 0.3s;
        }

.service-card-simple:hover .service-icon-simple {
            background: var(--gold);
            color: #fff;
        }

.service-card-simple h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

.service-card-simple p {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.6;
        }

.why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

.why-card {
            display: flex;
            gap: 20px;
            padding: 30px;
            background: rgb(15, 43, 91, 0.8);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s;
        }

.why-card:hover {
            background: rgb(15, 43, 91, 1);
            border-color: rgba(200, 150, 62, 0.3);
            transform: translateY(-4px);
        }

.why-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
        }

.why-card h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

.why-card p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.9rem;
            line-height: 1.6;
        }

.process-track {
            display: flex;
            align-items: flex-start;
            gap: 0;
            position: relative;
            padding: 0 20px;
        }

.process-track::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 80px;
            right: 80px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--primary-light), var(--gold));
        }

.process-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 16px;
        }

.process-num {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: var(--bg-white);
            border: 3px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            position: relative;
            z-index: 2;
            transition: all 0.3s;
        }

.process-step:hover .process-num {
            background: var(--gold);
            color: #fff;
            transform: scale(1.1);
        }

.process-step h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

.process-step p {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.5;
        }

.cta-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

.cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(200, 150, 62, 0.06);
        }

.cta-banner::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(200, 150, 62, 0.04);
        }

.cta-inner {
            text-align: center;
            position: relative;
            z-index: 2;
        }

.cta-inner h2 {
            color: #fff;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            margin-bottom: 12px;
        }

.cta-inner p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
            margin-bottom: 28px;
        }

.cta-inner .btn-gold {
            font-size: 1rem;
            padding: 18px 40px;
        }

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

.about-img {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(15, 43, 91, 0.12);
        }

.about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.about-img-badge {
            position: absolute;
            bottom: 24px;
            right: 24px;
            background: var(--gold);
            color: #fff;
            padding: 14px 24px;
            border-radius: 12px;
            text-align: center;
        }

.about-img-badge .number {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            display: block;
            line-height: 1;
        }

.about-img-badge .label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.about-content .section-tag { text-align: left; }

.about-content h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            margin-bottom: 20px;
        }

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

.about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 28px;
        }

.about-value {
            display: flex;
            align-items: center;
            gap: 10px;
        }

.about-value i {
            color: var(--teal);
            font-size: 0.9rem;
        }

.about-value span {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

.faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

.faq-item {
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }

.faq-item.active {
            border-color: rgba(200, 150, 62, 0.4);
            box-shadow: 0 4px 20px rgba(15, 43, 91, 0.06);
        }

.faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            background: var(--bg-white);
            transition: all 0.3s;
        }

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

.faq-question h3 {
            font-family: 'Inter', sans-serif;
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--text-dark);
            flex: 1;
        }

.faq-toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-left: 16px;
            transition: all 0.3s;
        }

.faq-item.active .faq-toggle {
            background: var(--gold);
            color: #fff;
            transform: rotate(180deg);
        }

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

.faq-answer-inner {
            padding: 0 24px 20px;
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.7;
        }

.contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

.hours-table {
            width: 100%;
            border-collapse: collapse;
        }

.hours-table tr {
            border-bottom: 1px solid var(--border);
        }

.hours-table td {
            padding: 14px 0;
            font-size: 0.95rem;
        }

.hours-table td:first-child {
            font-weight: 600;
            color: var(--text-dark);
        }

.hours-table td:last-child {
            text-align: right;
            color: var(--text-muted);
        }

.hours-table .closed {
            color: #E74C3C;
            font-weight: 500;
        }

.contact-info-list {
            list-style: none;
            margin-top: 32px;
        }

.contact-info-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 0;
        }

.contact-info-list .icon-circle {
            width: 44px;
            height: 44px;
            background: var(--bg-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
        }

.contact-info-list .info-text {
            font-size: 0.95rem;
            color: var(--text-dark);
        }

.contact-info-list .info-text a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

.contact-info-list .info-text a:hover {
            color: var(--gold);
        }

.contact-form-wrap {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(15, 43, 91, 0.08);
            border: 1px solid var(--border);
        }

.contact-form-wrap h3 {
            font-size: 1.3rem;
            margin-bottom: 24px;
            color: var(--text-dark);
        }

.form-group {
            margin-bottom: 20px;
        }

.form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--text-dark);
        }

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.92rem;
            color: var(--text-dark);
            background: var(--bg-light);
            transition: all 0.3s;
            outline: none;
        }

.form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.12);
            background: var(--bg-white);
        }

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

.contact-form-wrap button[type="submit"] {
            width: 100%;
            padding: 16px;
            background: var(--gold);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

.contact-form-wrap button[type="submit"]:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(200, 150, 62, 0.3);
        }

.contact-form-wrap button[type="submit"]:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

.map-wrap {
            border-radius: 16px;
            overflow: hidden;
            margin-top: 40px;
            box-shadow: 0 5px 20px rgba(15, 43, 91, 0.08);
        }

.map-wrap iframe {
            display: block;
        }

.footer {
            background: var(--primary-dark);
            padding: 60px 0 0;
            color: rgba(255, 255, 255, 0.7);
        }

.footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 36px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.footer-brand .nav-logo-text {
            color: #fff;
            font-size: 1.4rem;
            display: block;
            margin-bottom: 14px;
        }

.footer-brand p {
            font-size: 0.88rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 16px;
        }

.footer h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 18px;
        }

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

.footer-links li { margin-bottom: 10px; }

.footer-links a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-size: 0.88rem;
            transition: all 0.3s;
        }

.footer-links a:hover {
            color: var(--gold);
            padding-left: 4px;
        }

.footer-bottom {
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.82rem;
        }

.footer-bottom a {
            color: var(--gold);
            text-decoration: none;
        }

.footer-bottom a:hover {
            text-decoration: underline;
        }

.modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 24px;
            backdrop-filter: blur(4px);
        }

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

.modal-content {
            background: var(--bg-white);
            border-radius: 20px;
            max-width: 600px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
        }

.modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: var(--bg-light);
            color: var(--text-dark);
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

.modal-close:hover {
            background: var(--primary);
            color: #fff;
        }

.modal-content h2 {
            font-size: 1.5rem;
            margin-bottom: 24px;
            color: var(--primary);
        }

.modal-content p {
            margin-bottom: 10px;
            font-size: 0.92rem;
            color: var(--text-muted);
        }

.modal-content strong {
            color: var(--text-dark);
        }

.scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gold);
            color: #fff;
            border: none;
            font-size: 1.1rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(200, 150, 62, 0.3);
        }

.scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

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

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

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

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

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

.reveal {
            opacity: 1;
            transform: translateY(0);
        }

.reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

@media (max-width: 1024px) {
            .product-card {
                flex: 0 0 calc((100% - 28px) / 2);
                max-width: calc((100% - 28px) / 2);
            }

            .service-card-simple {
                flex: 0 0 calc((100% - 48px) / 3);
                max-width: calc((100% - 48px) / 3);
            }
            
            .about-grid { gap: 40px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .process-track::before { display: none; }
        }

@media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 360px;
                height: 100vh;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 100px 32px 32px;
                gap: 0;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
                overflow-y: auto;
                align-items: flex-start;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links > li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }

            .nav-links > li > a {
                color: rgba(255, 255, 255, 0.85) !important;
                padding: 14px 0;
                font-size: 1.05rem;
                width: 100%;
                display: flex;
                justify-content: space-between;
            }

            .nav-dropdown {
                position: static;
                transform: none;
                box-shadow: none;
                border: none;
                background: rgba(255, 255, 255, 0.05);
                margin: 8px 0;
                padding: 8px;
            }

            .nav-dropdown a {
                color: rgba(255, 255, 255, 0.7);
                padding: 8px 12px;
            }

            .nav-dropdown a:hover {
                background: rgba(255, 255, 255, 0.08);
                color: var(--gold);
            }

            .nav-links > li:hover .nav-dropdown {
                margin-top: 8px;
            }

            .nav-cta {
                margin-top: 16px;
                text-align: center;
                display: block !important;
                width: 100%;
            }

            .nav-hamburger { display: flex; }

            .hero { min-height: 90vh; }
            .hero-decor { display: none; }

            .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .trust-number { font-size: 2.2rem; }

            .product-card {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .service-card-simple {
                flex: 0 0 calc((100% - 24px) / 2);
                max-width: calc((100% - 24px) / 2);
            }

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

            .process-track { flex-direction: column; gap: 32px; align-items: center; }
            .process-step { max-width: 300px; }
            .process-num { width: 64px; height: 64px; font-size: 1.4rem; }

            .about-grid { grid-template-columns: 1fr; }
            .about-img { max-height: 350px; }
            .about-values { grid-template-columns: 1fr; }

            .contact-grid { grid-template-columns: 1fr; }
            .contact-form-wrap { padding: 28px; }

            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

            .section { padding: 70px 0; }
            .cta-banner { padding: 48px 0; }
        }

@media (max-width: 640px) {
            .hero-buttons { flex-direction: column; }
            .btn { width: 100%; justify-content: center; }
            .trust-grid { grid-template-columns: 1fr 1fr; }
            .trust-item { padding: 12px; }
            .service-card-simple {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

.zones-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 40px;
        }

.zone-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px 24px;
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 14px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.98rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

.zone-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gold);
            transform: scaleY(0);
            transition: transform 0.3s;
        }

.zone-card:hover::before {
            transform: scaleY(1);
        }

.zone-card:hover {
            border-color: rgba(200, 150, 62, 0.35);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(15, 43, 91, 0.10);
        }

.zone-card i {
            color: var(--gold);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

.product-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            padding: 10px 20px;
            background: var(--bg-light);
            color: var(--primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

.product-cta:hover {
            background: var(--gold);
            color: #fff;
            border-color: var(--gold);
            transform: translateX(3px);
        }

.product-cta i {
            font-size: 0.75rem;
            transition: transform 0.3s;
        }

.product-cta:hover i {
            transform: translateX(2px);
        }

.service-cities {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px dashed var(--border);
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.75;
        }

.service-cities strong {
            display: block;
            color: var(--text-dark);
            margin-bottom: 4px;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 700;
        }

.service-cities a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }

.service-cities a:hover {
            color: var(--gold);
            text-decoration: underline;
        }

@media (max-width: 768px) {
            .zones-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
        }

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

html, body { overflow-x: hidden; max-width: 100%; }

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

.sct-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

@media (max-width: 640px) { .sct-container { padding: 0 18px; } }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, #091D40 0%, #0F2B5B 50%, #1B3A6B 100%);
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1772471700_69a5c594103a5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 1;
}

.sct-tpl-service-city .sct-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent, #C8963E, transparent);
    z-index: 3;
}

.sct-tpl-service-city .sct-hero-container { position: relative; z-index: 2; }

.sct-tpl-service-city .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-service-city .sct-hero-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-hero-text,
.sct-tpl-service-city .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-service-city .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.7);
}

.sct-tpl-service-city .sct-breadcrumb a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.sct-tpl-service-city .sct-breadcrumb a:hover { color: #D4A94F; }

.sct-tpl-service-city .sct-bc-sep { color: rgba(255,255,255,0.4); }

.sct-tpl-service-city .sct-bc-current { color: #D4A94F; font-weight: 500; }

.sct-tpl-service-city .sct-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 62, 0.15);
    border: 1px solid rgba(200, 150, 62, 0.35);
    padding: 7px 16px;
    border-radius: 50px;
    color: #D4A94F;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

.sct-tpl-service-city .sct-hero-text h1 .sct-gold { color: #C8963E; }

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 32px;
    max-width: 620px;
}

.sct-tpl-service-city .sct-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    border: 2px solid transparent;
    cursor: pointer;
}

.sct-tpl-service-city .sct-btn-gold {
    background: #C8963E;
    color: #fff;
    box-shadow: 0 8px 25px rgba(200,150,62,0.35);
}

.sct-tpl-service-city .sct-btn-gold:hover {
    background: #D4A94F;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200,150,62,0.45);
}

.sct-tpl-service-city .sct-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.sct-tpl-service-city .sct-btn-outline:hover {
    border-color: #C8963E;
    color: #C8963E;
    transform: translateY(-3px);
}

.sct-tpl-service-city .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
}

.sct-tpl-service-city .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sct-tpl-service-city .sct-hero-trust i { color: #C8963E; }

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200,150,62,0.25);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-hero-card-line {
    width: 40px;
    height: 3px;
    background: #C8963E;
    border-radius: 3px;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-hero-card-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
}

.sct-tpl-service-city .sct-hero-card-info:last-of-type { border-bottom: none; }

.sct-tpl-service-city .sct-hero-card-info i {
    color: #C8963E;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.sct-tpl-service-city .sct-hero-card-info strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sct-tpl-service-city .sct-hero-card .sct-btn {
    width: 100%;
    justify-content: center;
    margin-top: 22px;
}

.sct-tpl-service-city .sct-stats-band {
    background: #FFFFFF;
    padding: 60px 0;
    border-bottom: 1px solid #E2E6EF;
}

.sct-tpl-service-city .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sct-tpl-service-city .sct-stats-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-stat-item { text-align: center; padding: 12px; }

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #0F2B5B;
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-stat-divider {
    width: 30px;
    height: 2px;
    background: #C8963E;
    margin: 10px auto;
    border-radius: 2px;
}

.sct-tpl-service-city .sct-stat-label {
    color: #5A6177;
    font-size: 0.88rem;
    font-weight: 500;
}

.sct-tpl-service-city .sct-section { padding: 90px 0; }

.sct-tpl-service-city .sct-section-header {
    text-align: center;
    margin-bottom: 55px;
}

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    color: #C8963E;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    color: #1A1A2E;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-section-line {
    width: 60px;
    height: 3px;
    background: #C8963E;
    margin: 0 auto 20px;
    border-radius: 3px;
}

.sct-tpl-service-city .sct-section-desc {
    color: #5A6177;
    font-size: 1.02rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

.sct-tpl-service-city .sct-intro-section { background: #F7F8FC; padding: 80px 0; }

.sct-tpl-service-city .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-intro-content p {
    color: #3A4255;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-intro-content p:last-child { margin-bottom: 0; }

.sct-tpl-service-city .sct-intro-content strong { color: #0F2B5B; font-weight: 600; }

.sct-tpl-service-city .sct-services-section { background: #fff; }

.sct-tpl-service-city .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-city .sct-services-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E6EF;
    box-shadow: 0 4px 20px rgba(15,43,91,0.05);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

.sct-tpl-service-city .sct-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #C8963E;
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 2;
}

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

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15,43,91,0.12);
    border-color: rgba(200,150,62,0.3);
}

.sct-tpl-service-city .sct-service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.sct-tpl-service-city .sct-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.sct-tpl-service-city .sct-service-card:hover .sct-service-img img { transform: scale(1.06); }

.sct-tpl-service-city .sct-service-body { padding: 26px 24px; }

.sct-tpl-service-city .sct-service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1A1A2E;
    margin-bottom: 12px;
    font-weight: 700;
}

.sct-tpl-service-city .sct-service-body p {
    color: #5A6177;
    font-size: 0.92rem;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-processus-section { background: #F7F8FC; }

.sct-tpl-service-city .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
}

.sct-tpl-service-city .sct-processus-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-process-step {
    text-align: center;
    padding: 20px 12px;
    position: relative;
}

.sct-tpl-service-city .sct-process-num {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #fff;
    border: 3px solid #C8963E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F2B5B;
    transition: all 0.3s;
    position: relative;
}

.sct-tpl-service-city .sct-process-step:hover .sct-process-num {
    background: #C8963E;
    color: #fff;
    transform: scale(1.1);
}

.sct-tpl-service-city .sct-process-step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-process-step p {
    color: #5A6177;
    font-size: 0.85rem;
    line-height: 1.5;
}

.sct-tpl-service-city .sct-why-section {
    background: #0F2B5B;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-why-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(200,150,62,0.05);
}

.sct-tpl-service-city .sct-why-section .sct-section-title { color: #fff; }

.sct-tpl-service-city .sct-why-section .sct-section-tag { color: #D4A94F; }

.sct-tpl-service-city .sct-why-section .sct-section-desc { color: rgba(255,255,255,0.7); }

.sct-tpl-service-city .sct-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.sct-tpl-service-city .sct-why-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-why-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(15,43,91,0.6);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover {
    background: rgba(15,43,91,1);
    border-color: rgba(200,150,62,0.3);
    transform: translateY(-4px);
}

.sct-tpl-service-city .sct-why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #C8963E, #B8862E);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-why-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.65;
}

.sct-tpl-service-city .sct-zones-section { background: #F7F8FC; }

.sct-tpl-service-city .sct-zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-zones-list .sct-zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #E2E6EF;
    padding: 10px 22px;
    border-radius: 50px;
    color: #0F2B5B;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-zones-list .sct-zone-chip:hover {
    background: #C8963E;
    color: #fff;
    border-color: #C8963E;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-zones-list .sct-zone-chip i { color: #C8963E; }

.sct-tpl-service-city .sct-zones-list .sct-zone-chip:hover i { color: #fff; }

.sct-tpl-service-city .sct-usecase-section { background: #fff; }

.sct-tpl-service-city .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.sct-tpl-service-city .sct-usecase-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-usecase-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15,43,91,0.12);
    position: relative;
}

.sct-tpl-service-city .sct-usecase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sct-tpl-service-city .sct-usecase-content .sct-section-tag,
.sct-tpl-service-city .sct-usecase-content .sct-section-title { text-align: left; }

.sct-tpl-service-city .sct-usecase-content .sct-section-line { margin-left: 0; }

.sct-tpl-service-city .sct-usecase-content p {
    color: #5A6177;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-usecase-content p:last-child { margin-bottom: 0; }

.sct-tpl-service-city .sct-usecase-content strong { color: #0F2B5B; font-weight: 600; }

.sct-tpl-service-city .sct-engagements-section { background: #F7F8FC; }

.sct-tpl-service-city .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-city .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-engagement-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #E2E6EF;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-engagement-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: #C8963E;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover::after { transform: scaleX(1); }

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15,43,91,0.1);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0F2B5B, #1B3A6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8963E;
    font-size: 1.6rem;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1A1A2E;
    margin-bottom: 12px;
    font-weight: 700;
}

.sct-tpl-service-city .sct-engagement-card p {
    color: #5A6177;
    font-size: 0.92rem;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-local-spec {
    background: #fff;
    padding: 80px 0;
}

.sct-tpl-service-city .sct-local-spec-content {
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F7F8FC 0%, #fff 100%);
    border-left: 4px solid #C8963E;
    padding: 36px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(15,43,91,0.06);
}

.sct-tpl-service-city .sct-local-spec-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #0F2B5B;
    margin-bottom: 14px;
    font-weight: 700;
}

.sct-tpl-service-city .sct-local-spec-content p {
    color: #5A6177;
    font-size: 1rem;
    line-height: 1.8;
}

.sct-tpl-service-city .sct-local-spec-content strong { color: #0F2B5B; font-weight: 600; }

.sct-tpl-service-city .sct-faq-section { background: #F7F8FC; }

.sct-tpl-service-city .sct-faq-list {
    max-width: 880px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid #E2E6EF;
    overflow: hidden;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-faq-item:hover {
    border-color: rgba(200,150,62,0.4);
    box-shadow: 0 8px 25px rgba(15,43,91,0.06);
}

.sct-tpl-service-city .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 600;
    color: #0F2B5B;
    font-size: 1rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sct-tpl-service-city .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-service-city .sct-faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C8963E;
    font-size: 0.9rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-faq-item[open] summary::after {
    content: '\f068';
}

.sct-tpl-service-city .sct-faq-item .sct-faq-answer {
    padding: 0 28px 24px;
    color: #5A6177;
    font-size: 0.95rem;
    line-height: 1.75;
}

.sct-tpl-service-city .sct-maillage-section {
    background: #fff;
    padding: 70px 0;
    border-top: 1px solid #E2E6EF;
}

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section { padding-top: 0; border-top: none; }

.sct-tpl-service-city .sct-maillage-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #0F2B5B;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.sct-tpl-service-city .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F7F8FC;
    border: 1px solid #E2E6EF;
    color: #0F2B5B;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-maillage-list a:hover {
    background: #C8963E;
    color: #fff;
    border-color: #C8963E;
}

.sct-tpl-service-city .sct-maillage-list a i { font-size: 0.78rem; opacity: 0.7; }

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #0F2B5B 0%, #091D40 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    top: 0; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(200,150,62,0.06);
}

.sct-tpl-service-city .sct-cta-final::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(200,150,62,0.04);
}

.sct-tpl-service-city .sct-cta-final-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 14px;
    font-weight: 700;
}

.sct-tpl-service-city .sct-cta-final p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-cta-final-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .sct-tpl-service-city .sct-section { padding: 70px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 0.98rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.78rem; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 2rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; gap: 24px; }
    .sct-tpl-service-city .sct-section { padding: 60px 0; }
    .sct-tpl-service-city .sct-section-header { margin-bottom: 40px; }
    .sct-tpl-service-city .sct-intro-content p { font-size: 0.98rem; }
    .sct-tpl-service-city .sct-faq-item summary { padding: 18px 22px; font-size: 0.95rem; }
    .sct-tpl-service-city .sct-faq-item .sct-faq-answer { padding: 0 22px 20px; font-size: 0.92rem; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; align-items: stretch; }
    .sct-tpl-service-city .sct-cta-final-btns .sct-btn { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-local-spec-content { padding: 26px 22px; }
    .sct-tpl-service-city .sct-usecase-content .sct-section-title { font-size: 1.5rem; }
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1772471721_69a5c5a95b188.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 1;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_3_1772471742_69a5c5be217bd.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 1;
}

.sct-tpl-service-hub { background: var(--bg-white); color: var(--text-dark); font-family: 'Inter', sans-serif; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(9, 29, 64, 0.93) 0%, rgba(15, 43, 91, 0.85) 50%, rgba(27, 58, 107, 0.78) 100%), url('/images/service_1_1772471700_69a5c594103a5.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sct-tpl-service-hub .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-service-hub .sct-hero-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-hero-text, .sct-tpl-service-hub .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.sct-tpl-service-hub .sct-breadcrumb a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s;
}

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: var(--gold); }

.sct-tpl-service-hub .sct-breadcrumb .sct-sep { color: rgba(255,255,255,0.4); }

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 62, 0.15);
    border: 1px solid rgba(200, 150, 62, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero-text h1 .gold { color: var(--gold); }

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    font-weight: 300;
}

.sct-tpl-service-hub .sct-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.sct-tpl-service-hub .sct-btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 8px 30px rgba(200, 150, 62, 0.35);
}

.sct-tpl-service-hub .sct-btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 150, 62, 0.45);
}

.sct-tpl-service-hub .sct-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.sct-tpl-service-hub .sct-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 36px;
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sct-tpl-service-hub .sct-hero-card li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sct-tpl-service-hub .sct-hero-card li:last-child { border-bottom: none; }

.sct-tpl-service-hub .sct-hero-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--gold);
    font-size: 0.85rem;
}

.sct-tpl-service-hub .sct-stats-band {
    background: var(--bg-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.sct-tpl-service-hub .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.sct-tpl-service-hub .sct-stats-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-stat-item { text-align: center; padding: 16px; }

.sct-tpl-service-hub .sct-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-stat-num .gold { color: var(--gold); font-size: 1.4rem; }

.sct-tpl-service-hub .sct-stat-label {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.sct-tpl-service-hub .sct-stat-divider {
    width: 30px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

.sct-tpl-service-hub .sct-section { padding: 100px 0; }

.sct-tpl-service-hub .sct-section-light { background: var(--bg-light); }

.sct-tpl-service-hub .sct-section-dark { background: var(--primary); color: #fff; }

.sct-tpl-service-hub .sct-section-header { text-align: center; margin-bottom: 60px; }

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-dark .sct-section-tag { color: var(--gold-light); }

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-section-dark .sct-section-title { color: #fff; }

.sct-tpl-service-hub .sct-section-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.sct-tpl-service-hub .sct-section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.sct-tpl-service-hub .sct-section-dark .sct-section-desc { color: rgba(255,255,255,0.7); }

.sct-tpl-service-hub .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-intro-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-intro-content p strong { color: var(--primary); font-weight: 600; }

.sct-tpl-service-hub .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-hub .sct-services-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 43, 91, 0.06);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 2;
}

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

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 43, 91, 0.12);
    border-color: rgba(200, 150, 62, 0.3);
}

.sct-tpl-service-hub .sct-service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.sct-tpl-service-hub .sct-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sct-tpl-service-hub .sct-service-card:hover .sct-service-img img { transform: scale(1.07); }

.sct-tpl-service-hub .sct-service-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-hub .sct-service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-service-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    position: relative;
}

.sct-tpl-service-hub .sct-processus-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-process-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.sct-tpl-service-hub .sct-process-num {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    background: var(--bg-white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-process-step:hover .sct-process-num {
    background: var(--gold);
    color: #fff;
    transform: scale(1.08);
}

.sct-tpl-service-hub .sct-process-step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-process-step p {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.sct-tpl-service-hub .sct-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.sct-tpl-service-hub .sct-why-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-why-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(15, 43, 91, 0.85);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-why-card:hover {
    background: var(--primary);
    border-color: rgba(200,150,62,0.3);
    transform: translateY(-4px);
}

.sct-tpl-service-hub .sct-why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-why-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sct-tpl-service-hub .sct-usecase-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-usecase-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 43, 91, 0.15);
    position: relative;
}

.sct-tpl-service-hub .sct-usecase-img img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.sct-tpl-service-hub .sct-usecase-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-dark);
    margin-bottom: 22px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-usecase-content > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-usecase-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.sct-tpl-service-hub .sct-usecase-list li {
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}

.sct-tpl-service-hub .sct-usecase-list li:last-child { border-bottom: none; }

.sct-tpl-service-hub .sct-usecase-list li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 12px;
    top: 12px;
    color: var(--gold);
    font-size: 1rem;
}

.sct-tpl-service-hub .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-hub .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-engagement-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(15, 43, 91, 0.1);
    border-color: rgba(200,150,62,0.3);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.6rem;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-engagement-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-faq-item:hover {
    border-color: rgba(200,150,62,0.4);
    box-shadow: 0 6px 20px rgba(15, 43, 91, 0.06);
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
}

.sct-tpl-service-hub .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 0.85rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-faq-item[open] summary::after {
    content: '\f068';
    transform: rotate(180deg);
}

.sct-tpl-service-hub .sct-faq-answer {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-maillage-section { padding: 90px 0; }

.sct-tpl-service-hub .sct-maillage-cities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-maillage-cities > * { min-width: 0; }

.sct-tpl-service-hub .sct-maillage-cities a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-maillage-cities a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-maillage-cities a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15,43,91,0.18);
}

.sct-tpl-service-hub .sct-maillage-cities a:hover::before { color: var(--gold-light); }

.sct-tpl-service-hub .sct-maillage-other {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-maillage-other > * { min-width: 0; }

.sct-tpl-service-hub .sct-maillage-other a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-maillage-other a i {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-maillage-other a:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200,150,62,0.15);
}

.sct-tpl-service-hub .sct-maillage-other a:hover i {
    background: var(--gold);
    color: #fff;
}

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(200,150,62,0.06);
}

.sct-tpl-service-hub .sct-cta-final::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(200,150,62,0.04);
}

.sct-tpl-service-hub .sct-cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-cta-inner p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.sct-tpl-service-hub .sct-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 130px 0 80px; }
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-section { padding: 80px 0; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-usecase-img img { min-height: 320px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-hub .sct-maillage-other { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 70px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-service-hub .sct-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-section-header { margin-bottom: 40px; }
    .sct-tpl-service-hub .sct-stats-band { padding: 40px 0; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-tpl-service-hub .sct-stat-num { font-size: 2rem; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; gap: 28px; }
    .sct-tpl-service-hub .sct-process-num { width: 64px; height: 64px; font-size: 1.4rem; }
    .sct-tpl-service-hub .sct-usecase-img img { min-height: 240px; }
    .sct-tpl-service-hub .sct-faq-item summary { padding: 18px 22px; font-size: 0.95rem; }
    .sct-tpl-service-hub .sct-faq-answer { padding: 0 22px 20px; font-size: 0.9rem; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-maillage-cities a { padding: 12px 14px; font-size: 0.85rem; }
    .sct-tpl-service-hub .sct-cta-buttons { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-buttons > * { width: 100%; justify-content: center; }
}

.sct-tpl-zone { background: #fff; }

.sct-tpl-zone .sct-breadcrumb-wrap {
    background: var(--bg-light);
    padding: 110px 0 18px;
    border-bottom: 1px solid var(--border);
}

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sct-tpl-zone .sct-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.sct-tpl-zone .sct-breadcrumb a:hover { color: var(--gold); }

.sct-tpl-zone .sct-breadcrumb i { font-size: 0.7rem; color: var(--text-light); }

.sct-tpl-zone .sct-breadcrumb .current { color: var(--text-dark); font-weight: 500; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 70px 0 90px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    overflow: hidden;
    color: #fff;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1772471700_69a5c594103a5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 1;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 3;
}

.sct-tpl-zone .sct-hero .sct-container { position: relative; z-index: 2; }

.sct-tpl-zone .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-zone .sct-hero-grid > * { min-width: 0; }

.sct-tpl-zone .sct-hero-text, .sct-tpl-zone .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 62, 0.15);
    border: 1px solid rgba(200, 150, 62, 0.35);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
}

.sct-tpl-zone .sct-hero-text h1 .gold { color: var(--gold); }

.sct-tpl-zone .sct-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.7;
}

.sct-tpl-zone .sct-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.sct-tpl-zone .sct-btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 8px 25px rgba(200, 150, 62, 0.35);
}

.sct-tpl-zone .sct-btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 150, 62, 0.45);
}

.sct-tpl-zone .sct-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sct-tpl-zone .sct-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.sct-tpl-zone .sct-hero-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 32px 28px;
}

.sct-tpl-zone .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.sct-tpl-zone .sct-hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sct-tpl-zone .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sct-tpl-zone .sct-hero-card-list li:last-child { border-bottom: none; }

.sct-tpl-zone .sct-hero-card-list li i {
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-stats-band {
    background: var(--bg-white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

.sct-tpl-zone .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.sct-tpl-zone .sct-stats-grid > * { min-width: 0; }

.sct-tpl-zone .sct-stat-item {
    text-align: center;
    padding: 16px;
}

.sct-tpl-zone .sct-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-stat-num .gold { color: var(--gold); font-size: 1.4rem; }

.sct-tpl-zone .sct-stat-label {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.sct-tpl-zone .sct-stat-divider {
    width: 30px;
    height: 2px;
    background: var(--gold);
    margin: 10px auto 0;
    border-radius: 2px;
}

.sct-tpl-zone .sct-section { padding: 90px 0; }

.sct-tpl-zone .sct-section-light { background: var(--bg-light); }

.sct-tpl-zone .sct-section-dark { background: var(--primary); color: #fff; }

.sct-tpl-zone .sct-section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-zone .sct-section-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-dark .sct-section-tag { color: var(--gold-light); }

.sct-tpl-zone .sct-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.sct-tpl-zone .sct-section-dark .sct-section-header h2 { color: #fff; }

.sct-tpl-zone .sct-section-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 18px;
    border-radius: 3px;
}

.sct-tpl-zone .sct-section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

.sct-tpl-zone .sct-section-dark .sct-section-desc { color: rgba(255, 255, 255, 0.72); }

.sct-tpl-zone .sct-intro-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.sct-tpl-zone .sct-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sct-tpl-zone .sct-intro-grid > * { min-width: 0; max-width: 100%; }

.sct-tpl-zone .sct-intro-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(15, 43, 91, 0.12);
}

.sct-tpl-zone .sct-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sct-tpl-zone .sct-intro-img-badge {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: var(--gold);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    text-align: center;
}

.sct-tpl-zone .sct-intro-img-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.sct-tpl-zone .sct-intro-img-badge .label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sct-tpl-zone .sct-intro-content .sct-section-tag { text-align: left; }

.sct-tpl-zone .sct-intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-intro-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.sct-tpl-zone .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.sct-tpl-zone .sct-services-grid > * { min-width: 0; }

.sct-tpl-zone .sct-service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 43, 91, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 2;
}

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

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 43, 91, 0.12);
    border-color: rgba(200, 150, 62, 0.3);
}

.sct-tpl-zone .sct-service-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.sct-tpl-zone .sct-service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.sct-tpl-zone .sct-service-card:hover .sct-service-card-img img { transform: scale(1.06); }

.sct-tpl-zone .sct-service-card-body {
    padding: 26px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-service-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.sct-tpl-zone .sct-service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.sct-tpl-zone .sct-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: auto;
    align-self: flex-start;
}

.sct-tpl-zone .sct-service-card-link:hover {
    color: var(--gold);
    gap: 12px;
}

.sct-tpl-zone .sct-service-card-link i { font-size: 0.78rem; }

.sct-tpl-zone .sct-zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sct-tpl-zone .sct-zones-grid > * { min-width: 0; }

.sct-tpl-zone .sct-zone-chip {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.sct-tpl-zone .sct-zone-chip:hover {
    border-color: var(--gold);
    background: rgba(200, 150, 62, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 43, 91, 0.08);
}

.sct-tpl-zone .sct-zone-chip i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-zone-chip span {
    font-weight: 500;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
}

.sct-tpl-zone .sct-usecase-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.sct-tpl-zone .sct-usecase-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 10px 40px rgba(15, 43, 91, 0.08);
    border: 1px solid var(--border);
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-usecase-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 28px;
    right: 32px;
    color: var(--gold);
    font-size: 2.4rem;
    opacity: 0.18;
}

.sct-tpl-zone .sct-usecase-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.sct-tpl-zone .sct-usecase-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.sct-tpl-zone .sct-usecase-card strong { color: var(--text-dark); }

.sct-tpl-zone .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-zone .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-zone .sct-engagement-card {
    background: rgba(15, 43, 91, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-engagement-card:hover {
    background: var(--primary);
    border-color: rgba(200, 150, 62, 0.35);
    transform: translateY(-5px);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-engagement-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.7;
}

.sct-tpl-zone .sct-local-spec {
    padding: 90px 0;
    background: var(--bg-white);
}

.sct-tpl-zone .sct-local-spec-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 14px;
    padding: 40px 38px;
    max-width: 920px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-local-spec-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sct-tpl-zone .sct-local-spec-card h3 i { color: var(--gold); }

.sct-tpl-zone .sct-local-spec-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.sct-tpl-zone .sct-local-spec-card ul {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}

.sct-tpl-zone .sct-local-spec-card ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sct-tpl-zone .sct-local-spec-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--teal);
    font-size: 0.8rem;
}

.sct-tpl-zone .sct-faq-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.sct-tpl-zone .sct-faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-faq-item:hover {
    border-color: rgba(200, 150, 62, 0.4);
    box-shadow: 0 6px 20px rgba(15, 43, 91, 0.06);
}

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    transition: color 0.3s;
}

.sct-tpl-zone .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-zone .sct-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 0.85rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-faq-item[open] summary::after { transform: rotate(180deg); }

.sct-tpl-zone .sct-faq-item[open] summary { color: var(--primary); }

.sct-tpl-zone .sct-faq-answer {
    padding: 0 28px 22px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.sct-tpl-zone .sct-maillage-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.sct-tpl-zone .sct-maillage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.sct-tpl-zone .sct-maillage-grid > * { min-width: 0; }

.sct-tpl-zone .sct-maillage-link {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-maillage-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateX(4px);
}

.sct-tpl-zone .sct-maillage-link i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-maillage-link:hover i { color: var(--gold-light); }

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(200, 150, 62, 0.06);
}

.sct-tpl-zone .sct-cta-final::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(200, 150, 62, 0.05);
}

.sct-tpl-zone .sct-cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-cta-inner p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.sct-tpl-zone .sct-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sct-tpl-zone .sct-hero-card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .sct-tpl-zone .sct-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .sct-tpl-zone .sct-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sct-tpl-zone .sct-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sct-tpl-zone .sct-zones-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sct-tpl-zone .sct-engagements-grid {
        grid-template-columns: 1fr;
    }
    .sct-tpl-zone .sct-maillage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 50px 0 70px; }
    .sct-tpl-zone .sct-section,
    .sct-tpl-zone .sct-intro-section,
    .sct-tpl-zone .sct-usecase-section,
    .sct-tpl-zone .sct-faq-section,
    .sct-tpl-zone .sct-maillage-section,
    .sct-tpl-zone .sct-local-spec { padding: 60px 0; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * {
        width: 100%;
        justify-content: center;
    }
    .sct-tpl-zone .sct-hero-text h1 {
        font-size: 1.9rem;
        line-height: 1.2;
    }
    .sct-tpl-zone .sct-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .sct-tpl-zone .sct-stat-num { font-size: 2rem; }
    .sct-tpl-zone .sct-services-grid {
        grid-template-columns: 1fr;
    }
    .sct-tpl-zone .sct-zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sct-tpl-zone .sct-maillage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sct-tpl-zone .sct-usecase-card { padding: 32px 24px; }
    .sct-tpl-zone .sct-local-spec-card { padding: 30px 24px; }
    .sct-tpl-zone .sct-faq-item summary {
        padding: 18px 22px;
        font-size: 0.95rem;
    }
    .sct-tpl-zone .sct-faq-answer { padding: 0 22px 18px; }
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-btns > * {
        width: 100%;
        justify-content: center;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
    background: rgba(15, 43, 91, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(200, 150, 62, 0.15);
    transform: rotate(45deg);
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 12%;
    left: 7%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(200, 150, 62, 0.12);
    transform: rotate(45deg);
    z-index: 1;
}

.page-hero-glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.page-hero-gold-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 5;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 62, 0.15);
    border: 1px solid rgba(200, 150, 62, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero h1 .gold {
    color: var(--gold);
}

.page-hero p {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

.breadcrumb {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb i { font-size: 0.65rem; color: var(--gold); }

.sitemap-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.sitemap-section.alt {
    background: var(--bg-light);
}

.sitemap-block {
    margin-bottom: 70px;
}

.sitemap-block:last-child { margin-bottom: 0; }

.block-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.block-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.block-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.block-title-wrap { flex: 1; }

.block-tag {
    display: block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.block-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--text-dark);
    font-weight: 700;
}

.chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 43, 91, 0.04);
}

.sitemap-section.alt .chip {
    background: var(--bg-white);
}

.chip i {
    color: var(--gold);
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 43, 91, 0.2);
}

.chip:hover i {
    color: var(--gold-light);
    transform: translateX(3px);
}

.chip-featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: transparent;
    padding: 14px 24px;
    font-weight: 600;
}

.chip-featured i { color: var(--gold-light); }

.chip-featured:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 8px 25px rgba(200, 150, 62, 0.35);
}

.subblock {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.subblock:hover {
    border-color: rgba(200, 150, 62, 0.3);
    box-shadow: 0 10px 30px rgba(15, 43, 91, 0.08);
}

.subblock-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--border);
}

.subblock-title i {
    width: 32px;
    height: 32px;
    background: rgba(200, 150, 62, 0.12);
    color: var(--gold);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.city-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.city-chip i {
    color: var(--gold);
    font-size: 0.75rem;
}

.city-chip:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.city-chip:hover i { color: #fff; }

.footer {
    background: #0A1F47;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 16px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links > li > a { color: var(--text-dark) !important; }
    .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 8px 0 8px 16px;
        min-width: 100%;
        margin-top: 0 !important;
    }

    .page-hero { padding: 140px 0 70px; }

    .sitemap-section { padding: 60px 0; }

    .block-header {
        flex-wrap: wrap;
        gap: 14px;
    }

    .block-icon { width: 48px; height: 48px; font-size: 1.1rem; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

    .subblock { padding: 22px 18px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .chip, .city-chip { font-size: 0.82rem; }
}