:root {
    --bg: #f4f7fb;
    --bg-soft: #eef3f9;
    --surface: #ffffff;
    --surface-alt: rgba(255, 255, 255, 0.08);
    --text: #0d1b2a;
    --text-soft: #5d6b84;
    --heading: #08142b;
    --primary: #0d7ff2;
    --primary-dark: #0764c1;
    --accent: #14c29a;
    --warm: #f4b74a;
    --border: rgba(12, 28, 53, 0.1);
    --shadow: 0 24px 60px rgba(7, 19, 40, 0.12);
    --shadow-soft: 0 16px 35px rgba(9, 23, 45, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f7faff 0%, #eef4fa 100%);
    color: var(--text);
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
}

::selection {
    background: var(--primary);
    color: #fff;
}

a,
button,
input,
textarea {
    transition: all 0.25s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px;
    color: var(--heading);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.12;
}

p {
    margin: 0 0 16px;
    color: var(--text-soft);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    border: 0;
    cursor: pointer;
}

button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(13, 127, 242, 0.12);
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(12, 28, 53, 0.12);
    border-radius: 16px;
    padding: 16px 18px;
    background: #fff;
    color: var(--text);
    font-size: 15px;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input[type="hidden"] {
    display: none !important;
}

.site-main {
    overflow: hidden;
}

.section-shell,
.section-padding,
.section-padding-2 {
    position: relative;
    padding: 100px 0;
}

.section-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(236, 243, 251, 0.95));
}

.section-dark {
    background: radial-gradient(circle at top left, rgba(20, 194, 154, 0.18), transparent 32%), linear-gradient(135deg, #071225 0%, #0c1f3d 100%);
}

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

.text-right {
    text-align: right;
}

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

.light-text h2,
.light-text h3,
.light-text p,
.light-text span {
    color: #eef4ff;
}

.light-text .section-eyebrow {
    color: #93d7ff;
    background: rgba(147, 215, 255, 0.12);
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-intro.left-align {
    margin-left: 0;
    margin-right: 0;
}

.section-intro h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 127, 242, 0.08);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.button-1,
.button-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.button-1 {
    background: linear-gradient(135deg, var(--primary), #1e5fff);
    color: #fff;
    box-shadow: 0 16px 35px rgba(13, 127, 242, 0.25);
}

.button-1:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(13, 127, 242, 0.32);
}

.button-2 {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.button-2:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
}

.button-nav {
    min-height: 48px;
    padding: 0 24px;
    font-size: 14px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
}

.header-top {
    background: #061120;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.header-top-inner,
.header-bottom-inner,
.footer-bottom-inner,
.footer-cta-inner,
.brand-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-top-inner {
    min-height: 44px;
}

.top-info-left,
.top-info-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.top-info-left span,
.top-info-right span,
.top-info-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-info-right .fa-circle {
    font-size: 8px;
    color: var(--accent);
}

.header-bottom {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(12, 28, 53, 0.07);
    backdrop-filter: blur(16px);
}

.header-bottom.sticky {
    box-shadow: 0 18px 40px rgba(7, 19, 40, 0.08);
}

.header-bottom-inner {
    min-height: 86px;
}

.logo a,
.mobile-logo a,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #1f4fff 70%);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.04em;
    box-shadow: 0 14px 28px rgba(13, 127, 242, 0.22);
}

.logo-image {
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-image-header {
    height: 56px;
}

.logo-image-mobile {
    height: 40px;
}

.logo-image-footer {
    height: 84px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    color: var(--heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.brand-text small {
    color: var(--text-soft);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu ul li a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--heading);
    font-weight: 700;
}

.menu ul li.active a,
.menu ul li a:hover {
    color: var(--primary);
    background: rgba(13, 127, 242, 0.08);
}

.header-cta {
    margin-left: auto;
}

.canvas_open {
    display: none;
}

.canvas_open a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 14px;
    background: rgba(13, 127, 242, 0.08);
}

.canvas_open a span {
    width: 20px;
    height: 2px;
    background: var(--heading);
    display: block;
}

.hero-section,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-section {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 120px 0 90px;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-backdrop::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -120px -120px auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 194, 154, 0.28) 0%, rgba(20, 194, 154, 0) 70%);
}

.hero-section .container,
.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-copy h1,
.page-hero-copy h1 {
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 5rem);
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero-copy p {
    max-width: 650px;
    color: rgba(236, 244, 255, 0.84);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
}

.metric-card,
.stats-card,
.value-card,
.process-step,
.service-card,
.capability-card,
.engagement-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.metric-card {
    min-height: 140px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    border-color: rgba(255, 255, 255, 0.15);
}

.metric-card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
}

.metric-card span {
    color: rgba(236, 244, 255, 0.74);
    font-size: 0.95rem;
}

.hero-panel {
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

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

.hero-panel-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(20, 194, 154, 0.12);
    color: #0e8a6f;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.consultation-form,
.contact-form-modern {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.consultation-form > * {
    margin: 0;
}

.contact-form-modern .row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
    row-gap: 18px;
}

.contact-form-modern .col-md-6,
.contact-form-modern .col-12 {
    display: flex;
}

.contact-form-modern .col-md-6 > input,
.contact-form-modern .col-12 > textarea,
.contact-form-modern .col-12 > button {
    margin: 0;
}

.contact-form-modern .button-1 {
    min-height: 56px;
}

.subscribe-form form {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
    flex: 1 1 260px;
    margin: 0;
}

.consultation-form button,
.subscribe-form button {
    background: linear-gradient(135deg, var(--heading), #173768);
    color: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    font-weight: 800;
}

.hero-panel-note {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.hero-panel-note i {
    color: var(--accent);
}

.brand-strip {
    position: relative;
    z-index: 3;
    margin-top: -34px;
}

.brand-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 22px 28px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.brand-strip-inner span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--heading);
    font-size: 0.9rem;
    font-weight: 700;
}

.service-card,
.detailed-card,
.value-card,
.process-step,
.stats-card,
.capability-card,
.engagement-card {
    height: 100%;
    padding: 28px;
}

.service-card:hover,
.value-card:hover,
.process-step:hover,
.capability-card:hover,
.engagement-card:hover {
    transform: translateY(-6px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 127, 242, 0.12), rgba(20, 194, 154, 0.12));
    color: var(--primary);
    font-size: 26px;
}

.service-card h3,
.process-step h3,
.value-card h3,
.capability-card h3,
.engagement-card h3,
.contact-side-item h3 {
    font-size: 1.32rem;
    margin-bottom: 12px;
}

.section-dark .capability-card,
.section-dark .service-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.section-dark .capability-card h3,
.section-dark .capability-card p,
.section-dark .feature-item h3,
.section-dark .feature-item p {
    color: #eef4ff;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-item i {
    margin-top: 5px;
    color: var(--accent);
    font-size: 20px;
}

.visual-card {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-grid,
.value-grid,
.capability-grid,
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.single-column {
    grid-template-columns: 1fr;
}

.process-step span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.stats-panel {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 28px;
    align-items: stretch;
    padding: 36px;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.stats-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    letter-spacing: -0.05em;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    padding: 0 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    position: relative;
    cursor: pointer;
    padding: 22px 36px 22px 0;
    color: var(--heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 20px;
    right: 0;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding-bottom: 22px;
}

.page-hero {
    padding: 120px 0 84px;
    background-size: cover;
    background-position: center;
}

.page-hero-copy {
    max-width: 760px;
}

.page-hero-copy h1 {
    margin-bottom: 18px;
}

.about-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-pill-list span {
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--heading);
    font-weight: 700;
}

.service-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.service-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-soft);
}

.service-list li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.contact-card,
.contact-side-panel,
.legal-card {
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.contact-side-panel {
    height: 100%;
    background: linear-gradient(180deg, #08142b 0%, #102647 100%);
}

.contact-side-panel h2,
.contact-side-panel h3,
.contact-side-panel p,
.contact-side-panel a {
    color: #eef4ff;
}

.contact-side-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-side-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-side-item i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #93d7ff;
}

.engagement-grid {
    margin-top: 24px;
}

.legal-card h2 {
    font-size: 2rem;
}

.legal-card h3 {
    margin-top: 28px;
    font-size: 1.3rem;
}

.footer-cta {
    padding: 0 0 40px;
}

.footer-cta-inner {
    padding: 32px 36px;
    border-radius: 30px;
    background: linear-gradient(135deg, #09162d, #123464 65%, #0d7ff2 140%);
    box-shadow: var(--shadow);
}

.footer-cta-inner h2,
.footer-cta-inner span {
    color: #fff;
}

.subscribe-area {
    padding-bottom: 40px;
}

.subscribe-panel {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    padding: 32px 36px;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.subscribe-form button {
    flex: 0 0 auto;
    min-width: 140px;
}

.footer {
    padding-top: 36px;
    background: #061120;
}

.footer-top {
    padding: 42px 0 18px;
}

.footer-widgets-single .title,
.footer-brand strong,
.footer p,
.footer a,
.footer span {
    color: rgba(239, 245, 255, 0.86);
}

.footer-widgets-single .title {
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-widgets-single ul {
    display: grid;
    gap: 10px;
}

.footer-widgets-single a:hover {
    color: #fff;
}

.footer-contact-item {
    display: grid;
    gap: 10px;
}

.footer-bottom {
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.share-widget-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.share-widget-label {
    color: rgba(239, 245, 255, 0.86);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.sharethis-inline-share-buttons {
    min-height: 40px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.scroll-area {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    display: none;
}

.scroll-area i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), #1f56ff);
    color: #fff;
    box-shadow: 0 16px 30px rgba(13, 127, 242, 0.28);
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #08142b;
}

.preloader {
    display: flex;
    gap: 10px;
}

.preloader span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 0.9s infinite ease-in-out alternate;
}

.preloader span:nth-child(2) {
    animation-delay: 0.25s;
}

@keyframes pulse {
    from {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    to {
        transform: translateY(-8px) scale(1.15);
        opacity: 1;
    }
}

.mobile-menu-area {
    position: relative;
    z-index: 40;
}

.off_canvars_overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 24, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.off_canvars_overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas_menu_wrapper {
    position: fixed;
    top: 0;
    right: -360px;
    width: 320px;
    max-width: calc(100vw - 24px);
    height: 100vh;
    padding: 28px 22px;
    background: #fff;
    box-shadow: -16px 0 40px rgba(7, 19, 40, 0.14);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.offcanvas_menu_wrapper.active {
    right: 0;
}

.canvas_close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.canvas_close a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
}

.offcanvas_main_menu {
    display: grid;
    gap: 8px;
    margin-top: 30px;
}

.offcanvas_main_menu li a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--bg-soft);
    color: var(--heading);
    font-weight: 700;
}

.offcanvas_main_menu li.active a {
    background: rgba(13, 127, 242, 0.1);
    color: var(--primary);
}

.mobile-nav-cta {
    width: 100%;
    margin-top: 28px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-70 {
    padding-bottom: 70px;
}

.page-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(236, 244, 255, 0.82);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.page-breadcrumbs a:hover {
    color: #fff;
}

.detail-hero {
    padding: 120px 0 88px;
}

.detail-hero-copy {
    max-width: 820px;
}

.seo-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.seo-detail-main {
    display: grid;
    gap: 24px;
}

.seo-detail-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 120px;
}

.detail-card,
.detail-side-card,
.city-card,
.insight-card,
.authority-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
}

.detail-card,
.detail-side-card {
    padding: 30px;
}

.detail-card h2,
.detail-side-card h3,
.authority-card h3 {
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.detail-card-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.detail-list {
    display: grid;
    gap: 14px;
}

.detail-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-soft);
}

.detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 5px rgba(13, 127, 242, 0.1);
}

.detail-list-soft li::before {
    background: linear-gradient(135deg, var(--accent), var(--warm));
}

.highlight-grid,
.service-link-grid,
.city-grid,
.insight-grid,
.authority-strip {
    display: grid;
    gap: 20px;
}

.highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
}

.highlight-card {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(13, 127, 242, 0.06), rgba(20, 194, 154, 0.08));
    border: 1px solid rgba(13, 127, 242, 0.08);
}

.highlight-card h3 {
    font-size: 1.1rem;
}

.service-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-link {
    display: block;
}

.service-card-link:hover {
    color: inherit;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 800;
}

.text-link::after {
    content: "\2192";
}

.city-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.city-card,
.insight-card,
.authority-card {
    padding: 28px;
}

.city-card-tag {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(13, 127, 242, 0.08);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.city-support-note {
    margin-top: 12px;
    max-width: 720px;
    color: rgba(236, 244, 255, 0.95);
}

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

.insight-card {
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.insight-card-content {
    padding: 28px;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.insight-meta-hero {
    margin-top: 22px;
    color: rgba(236, 244, 255, 0.78);
}

.article-content .detail-card h2 {
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.article-lead {
    margin: 0;
    color: var(--heading);
    font-size: 1.15rem;
    font-weight: 600;
}

.mini-link-grid {
    display: grid;
    gap: 12px;
}

.mini-link-grid a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--bg-soft);
    color: var(--heading);
    font-weight: 700;
}

.mini-link-grid a:hover {
    background: rgba(13, 127, 242, 0.1);
    color: var(--primary);
}

.mini-link-grid-dark a {
    background: rgba(255, 255, 255, 0.08);
    color: #eef4ff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-link-grid-dark a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.authority-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.authority-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 250, 0.94));
}
