﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-new-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #fbfcff 0%, #f6f8ff 100%);
    font-family: 'Inter', sans-serif;
}

.services-new-section .services-header {
    display: grid;
    gap: 18px;
    margin-bottom: 34px;
}

.services-new-section .services-header-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: start;
}

.services-new-section .services-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eef3ff;
    color: #2457ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(36, 87, 255, 0.08);
}

.services-new-section .services-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff89d5, #7a5cff);
}

.services-new-section .services-header h2 {
    margin: 0;
    font-size: 50px;
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 500;
    color: #0f172a;
}

.services-new-section .services-header h2 span {
    display: inline-block;
    background: linear-gradient(90deg, #2a63ff 0%, #8a57ff 55%, #ff4fb6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-new-section .services-header p {
    margin: 0;
    padding-top: 14px;
    font-size: 1.18rem;
    line-height: 1.65;
    color: #64748b;
    max-width: 38ch;
}

.services-new-section .services-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.services-new-section .service-tile {
    position: relative;
    min-height: 300px;
    padding: 26px 26px 24px;
    border: 1px solid #dbe4f5;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-new-section .service-tile[data-glare-hover] {
    --glare-x: 50%;
    --glare-y: 50%;
    --glare-angle: -30deg;
    --glare-opacity: 0;
    --glare-size: 300px;
    --glare-duration: 800ms;
    --glare-color: rgba(255, 255, 255, 0.3);
    --glare-border: rgba(36, 87, 255, 0.18);
}

.services-new-section .service-tile[data-glare-hover]::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: var(--glare-opacity);
    background: radial-gradient(
        circle at var(--glare-x) var(--glare-y),
        var(--glare-color) 0,
        rgba(255, 255, 255, 0.18) 16%,
        rgba(255, 255, 255, 0.08) 28%,
        rgba(255, 255, 255, 0) 58%
    );
    background-repeat: no-repeat;
    transition: opacity var(--glare-duration) ease, transform var(--glare-duration) ease;
    transform: rotate(var(--glare-angle)) scale(1.1);
    mix-blend-mode: screen;
}

.services-new-section .service-tile[data-glare-hover]::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    box-shadow: inset 0 0 0 1px var(--glare-border);
    transition: opacity var(--glare-duration) ease;
}

.services-new-section .service-tile[data-glare-hover].glare-active::before,
.services-new-section .service-tile[data-glare-hover].glare-active::after {
    opacity: 1;
}

.services-new-section .service-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(36, 87, 255, 0.18);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.services-new-section .service-tile-number {
    position: absolute;
    top: 12px;
    right: 18px;
    color: #edf2ff;
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.services-new-section .service-tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: #eef3ff;
    color: #2a63ff;
}

.services-new-section .service-tile-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-new-section .service-tile h3 {
    margin: 0 0 14px;
    font-size: 1.45rem;
    line-height: 1.1;
    font-weight: 500;
    color: #172033;
}

.services-new-section .service-tile p {
    margin: 0 0 22px;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

.services-new-section .service-tile-link {
    position: absolute;
    left: 26px;
    bottom: 24px;
    color: #2457ff;
    font-size: 0.95rem;
    text-decoration: none;
}

.services-new-section .service-tile-link:hover {
    color: #143ec7;
}

@media (max-width: 991px) {
    .services-new-section {
        padding: 76px 0;
    }

    .services-new-section .services-header-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .services-new-section .services-header p {
        max-width: 44ch;
        padding-top: 0;
    }

    .services-new-section .services-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .services-new-section {
        padding: 64px 0;
    }

    .services-new-section .services-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-new-section .service-tile {
        min-height: 260px;
    }

    .services-new-section .service-tile h3 {
        max-width: none;
    }

    .services-new-section .service-tile p {
        max-width: none;
    }
}

@font-face {
    font-family: 'poppins';
    src: url('Poppins/Poppins-Light.ttf');
}

body {
    font-family: 'poppins';
    background-color: #f8f9fc;
    color: #1a1a2e;
    overflow-x: hidden;
}

img{
    width: 100%;
    height: auto;
}

a{
    text-decoration: none !important;
}

p{
    line-height: 1.7rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #f0f7ff;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 2px 20px rgba(0, 80, 160, 0.08);
    background: #ffffff;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 10;
}

.header-logo img {
    height: 70px; 
    width: auto;
    object-fit: contain;
}

.header-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin-bottom: 0px;
}

.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-link {
    text-decoration: none;
    color: #3a3a5c;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}

.nav-item.has-dropdown > .nav-link {
    padding-right: 34px;
}

.nav-item.has-dropdown > .nav-link::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2167a9;
    background: rgba(33, 103, 169, 0.06);
}

.nav-item.has-dropdown:hover > .nav-link::after,
.nav-item.has-dropdown:focus-within > .nav-link::after {
    transform: translateY(-35%) rotate(225deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 230px;
    padding: 10px;
    margin: 0;
    list-style: none;
    border: 1px solid rgba(33, 103, 169, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    z-index: 1002;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown li + li {
    margin-top: 4px;
}

.nav-dropdown-link {
    display: block;
    padding: 11px 14px;
    border-radius: 10px;
    color: #24324a;
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    background: rgba(33, 103, 169, 0.08);
    color: #2167a9;
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, #2167a9, #3a8fd4);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-link.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 103, 169, 0.35);
    background: linear-gradient(135deg, #2167a9, #3a8fd4);
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 4px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.particle-preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #09090f;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    touch-action: none;
    isolation: isolate;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.particle-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.particle-preloader-canvas {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.particle-preloader-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('/assets/image/banner-bg.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(240, 247, 255, 0.75);
    z-index: 0;
    pointer-events: none;
}

.dot-field-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#dot-field-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}



.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    margin-bottom: 60px;
}

.hero-content h2 {
    font-size: 4.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a3a5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: #5a6178;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.looping-slider-container {
    position: absolute;
    bottom: 0%;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(33 103 169 / 81%) 0%, rgb(33 103 169 / 81%) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 0;
    z-index: 2;
    white-space: nowrap;
}

.looping-slider {
    display: inline-flex;
    align-items: center;
    animation: loopScroll 20s linear infinite;
}

.looping-slider-container:hover .looping-slider {
    animation-play-state: paused;
}

.slide-item {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    padding: 0 40px;
    letter-spacing: 2px;
}

#home-about .about-btn{
    background: linear-gradient(135deg, #2167a9, #3a8fd4);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;   
}

.services-section {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.9), transparent 34%),
        radial-gradient(circle at 82% 10%, rgba(207, 220, 255, 0.72), transparent 32%),
        linear-gradient(90deg, #f5f7fc 0%, #f3f6fd 52%, #dbe6ff 100%);
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 65%, rgba(255, 160, 215, 0.18), transparent 18%),
        radial-gradient(circle at 50% 42%, rgba(171, 172, 255, 0.16), transparent 14%);
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-orbit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 40px;
}

.services-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: #2a63ff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(42, 99, 255, 0.08);
}

.services-copy-panel h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 0.95;
    color: #111827;
    margin-bottom: 22px;
}

.services-copy-panel > p {
    font-size: 1.24rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 700px;
    margin-bottom: 34px;
}

.services-orbit-visual {
    position: relative;
    width: min(100%, 620px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    display: block;
}

.services-orbit-visual::before {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0) 70%);
    filter: blur(2px);
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(97, 132, 255, 0.38);
    pointer-events: none;
}

.orbit-ring-1 {
    inset: 11%;
}

.orbit-ring-2 {
    inset: 27%;
    border-style: solid;
    border-color: rgba(255, 152, 203, 0.4);
}

.orbit-ring-3 {
    inset: 35%;
    border-color: rgba(120, 147, 255, 0.18);
}

.orbit-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--orbit-angle, 0deg)) translateX(var(--orbit-radius, 180px));
    display: grid;
    place-items: center;
    width: 148px;
    will-change: transform;
    animation: orbitRotate var(--orbit-speed, 24s) linear infinite;
}

.orbit-node-outer {
    animation-direction: normal;
}

.orbit-node-inner-ring {
    animation-direction: reverse;
}

.orbit-node-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    animation: orbitCounterRotate var(--orbit-speed, 24s) linear infinite;
}

.orbit-node-outer .orbit-node-inner {
    animation-direction: normal;
}

.orbit-node-inner-ring .orbit-node-inner {
    animation-direction: reverse;
}

.orbit-node-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #2e6cff;
    box-shadow: 0 14px 30px rgba(47, 79, 160, 0.12);
    border: 1px solid rgba(74, 100, 180, 0.1);
}

.orbit-node-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.orbit-node-label {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #475569;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(47, 79, 160, 0.08);
}

.orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(82, 108, 190, 0.14), inset 0 0 0 1px rgba(148, 163, 184, 0.16);
}

.orbit-center::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px solid rgba(110, 134, 255, 0.16);
    pointer-events: none;
}

.orbit-center-kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
}

.orbit-center h3 {
    font-size: 1.15rem;
    color: #111827;
    letter-spacing: -0.05em;
    margin-bottom: 0px;
}

.orbit-center p {
    font-size: 0.98rem;
    line-height: 1.55;
    color: #64748b;
    margin-bottom: 0;
}

.orbit-node-seo {
    --orbit-radius: 214px;
    --orbit-speed: 35s;
    --orbit-angle: -94deg;
}

.orbit-node-web {
    --orbit-radius: 128px;
    --orbit-speed: 35s;
    --orbit-angle: -64deg;
}

.orbit-node-ads {
    --orbit-radius: 214px;
    --orbit-speed: 35s;
    --orbit-angle: -18deg;
}

.orbit-node-social {
    --orbit-radius: 214px;
    --orbit-speed: 35s;
    --orbit-angle: 34deg;
}

.orbit-node-content {
    --orbit-radius: 214px;
    --orbit-speed: 35s;
    --orbit-angle: 102deg;
}

.orbit-node-local {
    --orbit-radius: 214px;
    --orbit-speed: 35s;
    --orbit-angle: 160deg;
}

.orbit-node-ecom {
    --orbit-radius: 128px;
    --orbit-speed: 35s;
    --orbit-angle: 132deg;
}

.orbit-node-orm {
    --orbit-radius: 128px;
    --orbit-speed: 35s;
    --orbit-angle: 56deg;
}

.services-copy-panel {
    max-width: 620px;
    justify-self: end;
    padding: 12px 0;
}

.services-points {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
    display: grid;
    gap: 18px;
}

.services-points li {
    position: relative;
    padding-left: 34px;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

.services-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a63ff, #7a5cff);
    box-shadow: 0 0 0 6px rgba(42, 99, 255, 0.08);
}

.services-points strong {
    color: #1e293b;
}

.services-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1f5cff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.services-link:hover {
    color: #1747c9;
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateX(var(--orbit-radius));
    }

    to {
        transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) + 360deg)) translateX(var(--orbit-radius));
    }
}

@keyframes orbitCounterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes loopScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        height: 64px;
    }

    .hamburger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        z-index: 999;
        padding: 90px 30px 40px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    }

    .header-nav.is-open {
        right: 0;
    }

    .header-nav .nav-list {
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .nav-item.has-dropdown > .nav-link {
        padding-right: 16px;
    }

    .nav-item.has-dropdown > .nav-link::after {
        display: none;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        margin: 6px 0 2px;
        padding: 6px 0 0 12px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .nav-dropdown li + li {
        margin-top: 0;
    }

    .nav-dropdown-link {
        padding: 10px 12px;
        font-size: 0.98rem;
        color: #51607a;
    }

    .nav-link.nav-cta {
        text-align: center;
        margin-top: 12px;
        border-radius: 12px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .slide-item {
        font-size: 1.2rem;
        padding: 0 25px;
    }

    .services-section {
        padding: 68px 0;
    }

    .services-orbit-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .services-orbit-visual {
        width: min(100%, 560px);
    }

    .services-copy-panel {
        max-width: none;
        justify-self: stretch;
    }

    .services-copy-panel h2 {
        max-width: none;
        line-height: 1;
    }

    .services-copy-panel > p {
        font-size: 1.08rem;
    }

    .services-points li {
        font-size: 1rem;
    }

    .orbit-node {
        width: 124px;
    }

    .orbit-node-icon {
        width: 60px;
        height: 60px;
    }

    .orbit-node-icon svg {
        width: 28px;
        height: 28px;
    }

    .orbit-node-label {
        font-size: 0.86rem;
        padding: 7px 12px;
    }

    .orbit-center {
        width: 192px;
        height: 192px;
        padding: 22px;
    }

    .orbit-center h3 {
        font-size: 1.75rem;
    }

    .orbit-center p {
        font-size: 0.88rem;
    }

    .orbit-node-seo { --orbit-radius: 156px; --orbit-speed: 24s; }
    .orbit-node-web { --orbit-radius: 92px; --orbit-speed: 18s; }
    .orbit-node-ads { --orbit-radius: 156px; --orbit-speed: 26s; }
    .orbit-node-social { --orbit-radius: 156px; --orbit-speed: 23s; }
    .orbit-node-content { --orbit-radius: 156px; --orbit-speed: 27s; }
    .orbit-node-local { --orbit-radius: 156px; --orbit-speed: 25s; }
    .orbit-node-ecom { --orbit-radius: 92px; --orbit-speed: 19s; }
    .orbit-node-orm { --orbit-radius: 92px; --orbit-speed: 20s; }
}

@media (max-width: 576px) {
    .services-section {
        padding: 56px 0;
    }

    .services-orbit-visual {
        width: min(100%, 390px);
    }

    .orbit-ring-1 {
        inset: 13%;
    }

    .orbit-ring-2 {
        inset: 29%;
    }

    .orbit-ring-3 {
        inset: 39%;
    }

    .orbit-node {
        width: 104px;
    }

    .orbit-center {
        width: 156px;
        height: 156px;
        padding: 18px;
    }

    .orbit-center-kicker {
        font-size: 0.66rem;
    }

    .orbit-center h3 {
        font-size: 1.45rem;
    }

    .orbit-center p {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .services-copy-panel h2 {
        font-size: 2.1rem;
    }

    .services-points {
        gap: 14px;
    }

    .services-points li {
        font-size: 0.96rem;
        padding-left: 30px;
    }

    .orbit-node-seo { --orbit-radius: 126px; }
    .orbit-node-web { --orbit-radius: 74px; }
    .orbit-node-ads { --orbit-radius: 126px; }
    .orbit-node-social { --orbit-radius: 126px; }
    .orbit-node-content { --orbit-radius: 126px; }
    .orbit-node-local { --orbit-radius: 126px; }
    .orbit-node-ecom { --orbit-radius: 74px; }
    .orbit-node-orm { --orbit-radius: 74px; }
}

.industries-section {
    padding: 92px 0 104px;
    background: #ffffff;
}

.industries-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.industries-header h2 {
    margin: 0 0 14px;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 600;
    color: #111827;
}

.industries-header p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #6b7280;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 40px 24px;
    max-width: 1040px;
    margin: 0 auto;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.industry-icon {
    width: 92px;
    height: 92px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #2166e0 0%, #143ec7 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(20, 62, 199, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-item:hover .industry-icon {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(20, 62, 199, 0.32);
}

.industry-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-label {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    max-width: 14ch;
}

@media (max-width: 991px) {
    .industries-section {
        padding: 76px 0 88px;
    }

    .industries-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px 20px;
    }
}

@media (max-width: 576px) {
    .industries-section {
        padding: 64px 0 72px;
    }

    .industries-header {
        margin-bottom: 32px;
    }

    .industries-header h2 {
        font-size: 2rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 18px;
    }

    .industry-icon {
        width: 76px;
        height: 76px;
    }

    .industry-icon svg {
        width: 34px;
        height: 34px;
    }
}

.falling-text-section {
    position: relative;
    padding: 92px 0;
    background:
        radial-gradient(circle at top left, rgba(33, 103, 169, 0.08), transparent 32%),
        linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
    overflow: hidden;
}

.falling-text-shell {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: stretch;
}

.falling-text-copy {
    align-self: center;
    padding: 10px 6px 10px 0;
    max-width: 460px;
}

.falling-text-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(2.1rem, 4vw, 3.75rem);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #101828;
}

.falling-text-copy p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 36ch;
}

.falling-text-container {
    position: relative;
    min-height: 420px;
    padding: 28px;
    cursor: pointer;
    touch-action: none;
    isolation: isolate;
}

.falling-text-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(42, 99, 255, 0.08), transparent 18%),
        radial-gradient(circle at 85% 75%, rgba(255, 79, 182, 0.08), transparent 20%);
    pointer-events: none;
}

.falling-text-target {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    min-height: 330px;
    padding: 18px 8px;
    font-size: 2rem;
    line-height: 1.45;
    color: #0f172a;
    text-align: center;
}

.falling-text-target .word {
    display: inline-block;
    margin: 0 4px 8px;
    user-select: none;
    cursor: grab;
    will-change: transform, left, top;
}

.falling-text-target .word.is-dragging {
    cursor: grabbing;
    z-index: 4;
    pointer-events: none;
}

.falling-text-target .highlighted {
    color: #2a63ff;
    font-weight: 800;
}

.falling-text-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.falling-text-container.is-active .falling-text-target {
    text-align: left;
}

@media (max-width: 991px) {
    .falling-text-section {
        padding: 76px 0;
    }

    .falling-text-shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .falling-text-copy {
        max-width: none;
        padding-right: 0;
    }

    .falling-text-container {
        min-height: 380px;
    }
}

@media (max-width: 576px) {
    .falling-text-section {
        padding: 62px 0;
    }

    .falling-text-copy h2 {
        font-size: 2rem;
    }

    .falling-text-copy p {
        font-size: 1rem;
    }

    .falling-text-container {
        min-height: 330px;
        padding: 18px;
        border-radius: 22px;
    }

    .falling-text-target {
        min-height: 260px;
        font-size: 1.4rem;
        line-height: 1.55;
    }
}

.how-we-work {
    position: relative;
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #164673, #2167a9);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.hww-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.hww-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hww-steps {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.hww-step-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 0 30px;
}

.hww-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: 800;
    color: rgba(14, 45, 75, 0.5);
    z-index: -1;
    line-height: 1;
    user-select: none;
}

.hww-step-text {
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hww-contact-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 2px;
    text-transform: lowercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 40px;
}

.hww-contact-btn:hover {
    background-color: #ffffff;
    color: #2167a9;
}

@media (max-width: 768px) {
    .hww-step-box {
        margin-bottom: 40px;
    }
}

.testimonials-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at top left, rgba(36, 87, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #f8f9fc 0%, #eef4ff 100%);
    font-family: 'Inter', sans-serif;
}

.testimonials-header {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
}

.testimonials-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eef3ff;
    color: #2457ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonials-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff89d5, #7a5cff);
}

.testimonials-header h2 {
    margin: 0;
    font-size: 50px;
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 500;
    color: #0f172a;
    font-family: serif;
}

.testimonial-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 36px;
    min-height: 560px;
}

.testimonial-copy-panel {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 22px;
    max-width: 560px;
    padding: 12px 0 12px 4px;
}

.testimonial-quote-mark {
    width: fit-content;
    font-size: 6rem;
    line-height: 0.75;
    font-weight: 800;
    color: #003a8c;
}

.testimonial-copy {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.9;
    font-style: italic;
    color: #8a8a8a;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.testimonial-author-copy h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #003a8c;
}

.testimonial-author-copy span {
    display: block;
    margin-top: 2px;
    font-size: 0.98rem;
    color: #9ca3af;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    justify-content: end;
}

.testimonial-nav-button {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #003a8c;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.testimonial-nav-button:hover {
    transform: translateY(-2px);
    background: #ff553f;
    color: #ffffff;
}

.testimonial-nav-button:focus-visible {
    outline: 2px solid #ff553f;
    outline-offset: 3px;
}

.testimonial-image-panel {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image-panel::before {
    content: "";
    position: absolute;
    inset: 8% 0 8% 10%;
    border-radius: 40% 18% 30% 55% / 50% 16% 40% 48%;
    background: linear-gradient(135deg, #ffffff 0%, #f3f6ff 100%);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.testimonial-image-mask {
    position: relative;
    width: min(100%, 660px);
    height: min(100%, 520px);
    overflow: hidden;
    border-radius: 40% 18% 30% 55% / 50% 16% 40% 48%;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.testimonial-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-image-mask::before,
.testimonial-image-mask::after {
    content: "";
    position: absolute;
    right: -40px;
    width: 210px;
    height: 86px;
    background: #ffffff;
    border-radius: 999px;
    z-index: 2;
}

.testimonial-image-mask::before {
    top: 58px;
    transform: rotate(-31deg);
}

.testimonial-image-mask::after {
    top: 190px;
    transform: rotate(-31deg);
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-split-layout {
        grid-template-columns: 1fr;
        gap: 26px;
        min-height: auto;
    }

    .testimonial-copy-panel {
        max-width: 100%;
    }

    .testimonial-copy {
        max-width: 42ch;
    }

    .testimonial-image-panel {
        min-height: 440px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 64px 0;
    }

    .testimonials-header h2 {
        font-size: 34px;
    }

    .testimonial-copy {
        font-size: 1rem;
        line-height: 1.75;
    }

    .testimonial-image-panel {
        min-height: 330px;
    }

    .testimonial-image-mask::before,
    .testimonial-image-mask::after {
        width: 150px;
        height: 58px;
        right: -28px;
    }

    .testimonial-image-mask::before {
        top: 34px;
    }

    .testimonial-image-mask::after {
        top: 126px;
    }
}

.faq-section {
    position: relative;
    overflow: hidden;
    background:
        
        url('/assets/image/home/home-faq.png') center center / cover fixed no-repeat;
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 250, 255, 0.72) 0%, rgba(248, 250, 255, 0.2) 45%, rgba(248, 250, 255, 0.06) 100%);
    pointer-events: none;
}

.faq-stage {
    position: relative;
    display: flex;
    justify-content: flex-end;
    min-height: 760px;
    z-index: 1;
}

.faq-panel {
    display: flex;
    align-items: center;
    width: min(100%, 760px);
    margin-left: auto;
}

.faq-panel-inner {
    width: 100%;
    padding: 46px 40px 34px;
    border-radius: 28px;
    background: #003a8c;
    color: #ffffff;
    box-shadow: 0 26px 60px rgba(0, 80, 215, 0.24);
}

.faq-panel-inner h2 {
    margin: 0 0 24px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 600;
    color: #ffffff;
}

.faq-items {
    display: grid;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0 18px;
    border: none;
    background: transparent;
    color: #ffffff;
    text-align: left;
    font-size: 1.22rem;
    line-height: 1.4;
    font-weight: 500;
    cursor: pointer;
}

.faq-icon {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 0 22px;
    max-width: 58ch;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1199px) {
    .faq-stage {
        min-height: auto;
    }

    .faq-panel {
        width: min(100%, 720px);
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 64px 0;
        background-attachment: scroll;
        background-position: center center;
    }

    .faq-panel {
        width: 100%;
    }

    .faq-panel-inner {
        padding: 30px 22px 22px;
        border-radius: 22px;
    }

    .faq-question {
        padding: 18px 0 16px;
        font-size: 1.02rem;
        gap: 14px;
    }

    .faq-answer-inner {
        font-size: 0.96rem;
        padding-bottom: 18px;
    }

    .faq-footer {
        justify-content: flex-start;
        font-size: 0.98rem;
    }

    .faq-cta {
        padding: 14px 22px;
    }
}

.contact-section {
    position: relative;
    padding: 90px 0;
    background: #f8f9fd;
    overflow: hidden;
}

.contact-heading {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.contact-kicker {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3a2f28;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    max-width: 1120px;
    margin: 0 auto;
    min-height: 540px;
    overflow: hidden;
}

.contact-form-panel {
    position: relative;
    padding: 58px 62px 36px;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgb(0 58 140 / 0%) 0%, rgb(0 32 78 / 0%) 18%, rgb(60 43 43 / 0%) 18%, rgba(255, 255, 255, 0) 82%, rgb(255 255 255 / 0%) 82%, rgb(255 255 255 / 0%) 100%);
}

.contact-form-title {
    width: fit-content;
    padding: 14px 18px;
    margin-bottom: 28px;
    background: #003a8c;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
}

.contact-form {
    display: grid;
    gap: 18px;
    max-width: 360px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 14px 0 10px;
    border: none;
    border-bottom: 1px solid #003a8c;
    background: transparent;
    outline: none;
    font-size: 0.98rem;
    color: #333;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a97f7b;
    opacity: 1;
}

.contact-submit {
    width: 200px;
    padding: 12px 24px;
    border: none;
    background: #003a8c;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(207, 127, 127, 0.25);
}

.contact-brand {
    margin-top: auto;
    padding-top: 32px;
    max-width: 120px;
    opacity: 0.7;
}

.contact-info-panel {
    position: relative;
    padding: 55px 36px 55px;
    background: #003a8c;
    color: #f2eee8;
    align-self: center;
}

.contact-info-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #dc9b98;
}

.contact-info-panel h3 {
    margin: 0 0 28px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #f7f1eb;
    font-family: Georgia, 'Times New Roman', serif;
}

.contact-info-list {
    list-style: none;
    display: grid;
    gap: 20px;
    padding: 0;
    margin: 0 0 40px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.98rem;
    color: #f1dfd8;
}

.contact-info-list a {
    color: inherit;
    text-decoration: none;
}

.contact-info-list a:hover {
    color: #ffffff;
}

.contact-info-icon {
    flex: 0 0 22px;
    width: 22px;
    text-align: center;
    color: #dc9b98;
    font-size: 1.1rem;
}

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.contact-socials a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eee9e6;
    color: #151515;
    font-size: 0.85rem;
    font-weight: 700;
}

.contact-socials a:hover {
    background: #ffffff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 991px) {
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 46px 34px 32px;
    }

    .contact-info-panel {
        padding: 36px 34px 32px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 64px 0;
    }

    .contact-card {
        min-height: auto;
    }

    .contact-form-panel {
        padding: 30px 22px 26px;
    }

    .contact-form-title {
        margin-bottom: 22px;
        font-size: 2rem;
    }

    .contact-form {
        max-width: 100%;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-brand {
        max-width: 90px;
    }

    .contact-info-panel {
        padding: 30px 22px 24px;
    }
}


.site-footer {
    padding: 0 0 0;
    background: #04122b;
    color: #d9d9d9;
}

.footer-contact-strip {
    background: #0c1a3a;
}

.footer-contact-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 30px 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.footer-contact-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-item h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.footer-contact-item a,
.footer-contact-item p {
    display: block;
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #7fd4ff;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 56px 0 42px;
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-brand p {
    margin: 0;
    max-width: 32ch;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-align: center;
    align-content: center;
}

.footer-socials a:hover {
    transform: translateY(0px) !important;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.footer-links h3 {
    margin: 0 0 14px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-links-rule {
    display: block;
    width: 40px;
    height: 3px;
    margin-bottom: 22px;
    background: #2a63ff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-links ul {
    padding-left: 22px;
}

.footer-links li {
    position: relative;
    --fx: 0;
}

.footer-links a {
    display: inline-block;
    color: color-mix(in srgb, #7fd4ff calc(var(--fx, 0) * 100%), rgba(255, 255, 255, 0.72));
    transform: translateX(calc(var(--fx, 0) * 8px));
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover{
    transform: translateX(10px);
    transition: 0.3s;
}

.footer-link-marker {
    position: absolute;
    top: 50%;
    left: -22px;
    width: 14px;
    height: 1px;
    background-color: color-mix(in srgb, #7fd4ff calc(var(--fx, 0) * 100%), rgba(255, 255, 255, 0.32));
    transform-origin: left center;
    transform: translateY(-50%) scaleX(calc(0.5 + var(--fx, 0) * 0.7));
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0 22px;
    border-top: 1px solid rgb(255 255 255 / 16%);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 991px) {
    .footer-contact-strip-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        max-width: none;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.about-page {
    background: #f8f9fc;
}

.about-hero {
    position: relative;
    min-height: 560px;
    padding: 96px 0 72px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-media {
    position: absolute;
    inset: 0;
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.34) 42%, rgba(15, 23, 42, 0.15) 100%);
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-card {
    max-width: 600px;
    padding: 42px 44px;
    margin-top: 36px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    background: rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(4px);
    color: #ffffff;
}

.about-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-hero-card h1 {
    margin: 0 0 16px;
    font-size: 45px;
    line-height: 1.03;
    letter-spacing: -0.06em;
    font-weight: 700;
}

.about-hero-card p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 90px 0 84px;
    background: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}

.about-story-media img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.about-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eef3ff;
    color: #2457ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-section-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff89d5, #7a5cff);
}

.about-story-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 600;
    color: #0f172a;
}

.about-story-copy h3 {
    margin: 14px 0 18px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #003a8c;
}

.about-story-copy p {
    margin: 0 0 16px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #64748b;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.about-highlight {
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #f8fafc;
}

.about-highlight strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #0f172a;
}

.about-highlight span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

.about-quote {
    padding: 0 0 100px;
    background: #ffffff;
}

.about-quote-box {
    display: flex;
    gap: 16px;
    padding: 28px 30px;
    border-left: 4px solid #003a8c;
    border-radius: 18px;
    background: #ebf3ff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.about-quote-mark {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    color: #003a8c;
}

.about-quote-box p {
    margin: 0;
    max-width: 72ch;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #334155;
}

@media (max-width: 991px) {
    .about-hero {
        min-height: 500px;
    }

    .about-hero-card {
        max-width: 560px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 440px;
        padding: 84px 0 56px;
    }

    .about-hero-card {
        padding: 28px 24px;
        margin-top: 20px;
    }

    .about-hero-card p {
        max-width: none;
    }

    .about-story {
        padding: 64px 0 56px;
    }

    .about-story-copy h3 {
        font-size: 1rem;
    }

    .about-quote {
        padding-bottom: 72px;
    }

    .about-quote-box {
        padding: 22px 20px;
    }

    .about-quote-box p {
        font-size: 0.98rem;
    }
}

.contact-page-hero {
    position: relative;
    padding: 56px 0 84px;
    overflow: hidden;
}

.contact-page-hero-bg {
    position: absolute;
    inset: 0;
    /* background:
        radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.75), transparent 28%),
        linear-gradient(135deg, #dfe6f2 0%, #eff3f8 50%, #d9e3f3 100%); */
}

.contact-page-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 0;
    margin: 0 auto;
    overflow: hidden;
    transform-origin: center;
}

.contact-page-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.contact-page-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-page-form-card {
    position: relative;
    padding: 42px 40px 38px;
    background: #ffffff;
    transform-origin: center;
}

.contact-page-form-header {
    margin-bottom: 24px;
}

.contact-page-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #efe9ff;
    color: #5e41d8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-page-form-header h1 {
    margin: 0;
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 700;
    color: #111827;
}

.contact-page-form-header p {
    margin: 14px 0 0;
    /* max-width: 38ch; */
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
}

.contact-page-form {
    display: grid;
    gap: 16px;
}

.contact-page-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-page-field input,
.contact-page-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d9dee8;
    border-radius: 14px;
    background: #fbfcfe;
    outline: none;
    font-size: 0.98rem;
    color: #111827;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page-field textarea {
    min-height: 148px;
    resize: vertical;
}

.contact-page-field input::placeholder,
.contact-page-field textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

/* =========================================================
   SEO PAGE — hero banner
   ========================================================= */
.seo-hero-banner {
    position: relative;
    min-height: 620px;
    padding: 150px 0 64px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #04122b;
}

.seo-hero-banner-media {
    position: absolute;
    inset: 0;
}

.seo-hero-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.seo-hero-banner-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 10, 26, 0.92) 0%, rgba(3, 10, 26, 0.72) 34%, rgba(3, 10, 26, 0.28) 62%, rgba(3, 10, 26, 0.05) 85%);
}

.seo-hero-banner .container {
    position: relative;
    z-index: 1;
}

.seo-hero-banner-content {
    max-width: 620px;
}

.seo-hero-banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #eaf0ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.seo-hero-banner-content h1 {
    margin: 20px 0 18px;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #ffffff;
}

.seo-hero-banner-content h1 span {
    display: inline-block;
    background: linear-gradient(90deg, #5b8aff 0%, #7fd4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-hero-banner-content p {
    margin: 0 0 30px;
    max-width: 50ch;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(234, 240, 255, 0.82);
}

.seo-hero-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.seo-hero-banner-btn-primary,
.seo-hero-banner-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.96rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.seo-hero-banner-btn-primary {
    background: linear-gradient(90deg, #2a63ff 0%, #8a57ff 100%);
    color: #fff;
    box-shadow: 0 16px 34px rgba(42, 99, 255, 0.34);
}

.seo-hero-banner-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(42, 99, 255, 0.42);
}

.seo-hero-banner-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.seo-hero-banner-btn-ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 992px) {
    .seo-hero-banner {
        min-height: 560px;
        padding: 128px 0 56px;
    }

    .seo-hero-banner-media::after {
        background: linear-gradient(90deg, rgba(3, 10, 26, 0.94) 0%, rgba(3, 10, 26, 0.8) 46%, rgba(3, 10, 26, 0.4) 78%, rgba(3, 10, 26, 0.15) 100%);
    }

    .seo-hero-banner-content {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .seo-hero-banner {
        min-height: 480px;
        padding: 118px 0 44px;
    }

    .seo-hero-banner-content p {
        font-size: 1rem;
    }

    .seo-hero-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .seo-hero-banner-btn-primary,
    .seo-hero-banner-btn-ghost {
        justify-content: center;
    }
}

/* =========================================================
   SEO PAGE — remaining sections (unique to seo.php)
   ========================================================= */
.seosvc-intro {
    padding: 92px 0;
    background: #fff;
}

.seosvc-intro .container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.seosvc-intro-figure strong {
    display: block;
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #2a63ff 0%, #8a57ff 55%, #ff4fb6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seosvc-intro-figure span {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
}

.seosvc-intro-copy h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 14px;
}

.seosvc-intro-copy p {
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 26px;
}

.seosvc-intro-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.seosvc-intro-highlights div {
    padding: 18px;
    border-top: 3px solid #2a63ff;
    background: #f6f8ff;
}

.seosvc-intro-highlights strong {
    display: block;
    color: #0f172a;
    font-size: 0.96rem;
    margin-bottom: 6px;
}

.seosvc-intro-highlights span {
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.55;
}

.seosvc-capabilities {
    padding: 92px 0;
    background: #f6f8ff;
}

.seosvc-head {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.seosvc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eef3ff;
    color: #2457ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seosvc-head h2 {
    margin: 16px 0 10px;
    font-size: 2.1rem;
    font-weight: 700;
    color: #0f172a;
}

.seosvc-head p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.seosvc-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.seosvc-cap-card {
    padding: 30px 26px;
    background: #fff;
    border-radius: 4px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #2a63ff, #8a57ff, #ff4fb6) 1;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.seosvc-cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}

.seosvc-cap-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a63ff, #8a57ff);
    margin-bottom: 18px;
}

.seosvc-cap-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.seosvc-cap-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.seosvc-cap-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.65;
}

.seosvc-deepdive {
    padding: 92px 0;
    background: #f6f8ff;
}

.seosvc-deepdive .scroll-nav {
    margin-top: 48px;
}

.seosvc-marquee {
    padding: 72px 0;
    background: #fff;
}

.seosvc-marquee .seosvc-head {
    margin-bottom: 40px;
    max-width: 640px;
    padding: 0 40px;
}

.seosvc-marquee .container {
    max-width: 100%;
    padding: 0;
}

.seosvc-why {
    padding: 92px 0 40px;
    background: #fff;
}

.seosvc-why .stack-cards {
    margin-top: 48px;
}

.seosvc-gallery {
    padding: 92px 0;
    background: #fff;
}

.seosvc-gallery .accordion-gallery {
    margin-top: 48px;
}

@media (max-width: 520px) {
    .seosvc-gallery .accordion-gallery {
        margin-top: 32px;
    }
}

.seosvc-process {
    padding: 92px 0;
    background: #fff;
}

.seosvc-process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.seosvc-process-track::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, #2a63ff, #8a57ff, #ff4fb6);
    opacity: 0.25;
}

.seosvc-process-step {
    text-align: center;
    position: relative;
}

.seosvc-process-step span.seosvc-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a63ff, #8a57ff);
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.seosvc-process-step h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.seosvc-process-step p {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.seosvc-results {
    padding: 68px 0;
    background: linear-gradient(90deg, #2a63ff 0%, #8a57ff 55%, #ff4fb6 100%);
    color: #fff;
}

.seosvc-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}

.seosvc-results-grid strong {
    display: block;
    font-size: 2.3rem;
    font-weight: 800;
}

.seosvc-results-grid span {
    font-size: 0.88rem;
    opacity: 0.9;
}

.seosvc-quote {
    padding: 96px 0;
    background: #0f172a;
}

.seosvc-quote-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.seosvc-quote-mark {
    font-size: 3.2rem;
    line-height: 1;
    background: linear-gradient(90deg, #5b8aff, #a780ff, #ff8ad4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.seosvc-quote-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

.seosvc-quote-author {
    margin-top: 24px;
    font-size: 0.9rem;
    color: #97a1c2;
}

.seosvc-quote-author strong { color: #fff; }

.seosvc-faq {
    padding: 92px 0;
    background: #fff;
}

.seosvc-faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.seosvc-faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.seosvc-faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.seosvc-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.02rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
}

.seosvc-faq-icon {
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #cddaff;
    color: #2a63ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease;
}

.seosvc-faq-item.is-open .seosvc-faq-icon {
    background: linear-gradient(135deg, #2a63ff, #8a57ff);
    border-color: transparent;
    color: #fff;
    transform: rotate(45deg);
}

.seosvc-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.seosvc-faq-item.is-open .seosvc-faq-answer {
    max-height: 240px;
}

.seosvc-faq-answer-inner {
    padding: 0 4px 22px;
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.7;
}

.seosvc-cta {
    padding: 100px 0;
    text-align: center;
    background: #f6f8ff;
}

.seosvc-cta h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.seosvc-cta p {
    color: #64748b;
    max-width: 52ch;
    margin: 0 auto 30px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .seosvc-intro .container { grid-template-columns: 1fr; gap: 30px; }
    .seosvc-intro-highlights,
    .seosvc-cap-grid { grid-template-columns: repeat(2, 1fr); }
    .seosvc-process-track { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
    .seosvc-process-track::before { display: none; }
    .seosvc-results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .seosvc-intro-figure strong { font-size: 3.2rem; }
    .seosvc-intro-highlights,
    .seosvc-cap-grid,
    .seosvc-process-track,
    .seosvc-results-grid { grid-template-columns: 1fr; }
    .seosvc-quote-text { font-size: 1.15rem; }
}

/* =========================================================
   AI SEO PAGE — dark technical / editorial theme
   ========================================================= */
.aiseo-hero {
    position: relative;
    padding: 168px 0 84px;
    background: #0b0f1c;
    color: #eef1fb;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
}

.aiseo-hero .container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: end;
}

.aiseo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8791c2;
}

.aiseo-eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, #2a63ff, #8a57ff, #ff4fb6);
}

.aiseo-hero h1 {
    margin: 20px 0 20px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.02em;
}

.aiseo-hero h1 em {
    font-style: normal;
    display: inline-block;
    background: linear-gradient(90deg, #2a63ff 0%, #8a57ff 55%, #ff4fb6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aiseo-hero p {
    max-width: 52ch;
    font-size: 1.06rem;
    line-height: 1.75;
    color: #a2a8c9;
    margin-bottom: 30px;
}

.aiseo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border: 1px solid rgba(138, 87, 255, 0.5);
    color: #eef1fb;
    font-weight: 600;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.aiseo-btn:hover {
    border-color: #8a57ff;
    background: rgba(138, 87, 255, 0.1);
}

.aiseo-hero-stats {
    display: grid;
    gap: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 32px;
}

.aiseo-hero-stats div strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    background: linear-gradient(90deg, #5b8aff 0%, #a780ff 55%, #ff8ad4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aiseo-hero-stats div span {
    font-size: 0.85rem;
    color: #7f89b3;
}

.aiseo-intro {
    padding: 90px 0;
    background: #ffffff;
    color: #0f172a;
}

.aiseo-intro .container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
}

.aiseo-intro-statement {
    font-size: 1.7rem;
    line-height: 1.42;
    font-weight: 500;
    color: #1a2340;
    letter-spacing: -0.01em;
}

.aiseo-intro-statement span {
    color: #64748b;
}

.aiseo-intro-list {
    display: grid;
    gap: 0;
}

.aiseo-intro-list li {
    list-style: none;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid #e5e7eb;
}

.aiseo-intro-list li:last-child { border-bottom: 1px solid #e5e7eb; }

.aiseo-intro-list span.aiseo-num {
    font-size: 0.85rem;
    color: #2a63ff;
    font-weight: 700;
    padding-top: 3px;
}

.aiseo-intro-list strong {
    display: block;
    color: #0f172a;
    margin-bottom: 6px;
    font-size: 1.02rem;
}

.aiseo-intro-list p {
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.65;
}

.aiseo-capabilities {
    padding: 90px 0;
    background: #ffffff;
    color: #0f172a;
}

.aiseo-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 46px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 26px;
}

.aiseo-section-head h2 {
    font-size: 2rem;
    font-weight: 700;
    /* max-width: 14ch; */
    line-height: 1.2;
    color: #0f172a;
}

.aiseo-section-head p {
    max-width: 38ch;
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

.aiseo-cap-row {
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease;
}

.aiseo-cap-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.aiseo-cap-row:hover { background: rgba(255, 255, 255, 0.02); }

.aiseo-cap-row span.aiseo-cap-index {
    font-size: 0.85rem;
    font-weight: 700;
    color: #5b8aff;
}

.aiseo-cap-row h3 {
    font-size: 1.08rem;
    font-weight: 600;
    color: #eef1fb;
}

.aiseo-cap-row p {
    margin: 0;
    color: #8c93b8;
    font-size: 0.92rem;
    line-height: 1.65;
}

.aiseo-compare {
    padding: 90px 0;
    background: linear-gradient(180deg, #fbfcff 0%, #f6f8ff 100%);
    color: #0f172a;
}

.aiseo-compare-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.aiseo-compare-col { padding: 44px 48px; text-align: center; }
.aiseo-compare-col + .aiseo-compare-col { border-left: 1px solid #e5e7eb; }

.aiseo-compare-col h3 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.aiseo-compare-col.is-old h3 { color: #94a3b8; }
.aiseo-compare-col.is-new h3 { color: #2a63ff; }

.aiseo-compare-col ul { display: grid; gap: 22px; text-align: left; }
.aiseo-compare-col li {
    list-style: none;
    display: flex;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.55;
    color: #334155;
}

.aiseo-compare-col.is-old li::before { content: "\2013"; color: #94a3b8; flex: none; }
.aiseo-compare-col.is-new li::before { content: "\2013"; color: #2a63ff; flex: none; }

.aiseo-process {
    padding: 90px 0;
    background: #ffffff;
    color: #0f172a;
}

.aiseo-process-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
}

.aiseo-process-track::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: #e5e7eb;
}

.aiseo-process-step {
    padding-right: 20px;
}

.aiseo-process-step span.aiseo-dot {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #2a63ff;
    background: #ffffff;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.aiseo-process-step h3 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}

.aiseo-process-step p {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.aiseo-cta {
    padding: 100px 0;
    background: #0e1324;
    color: #eef1fb;
    text-align: center;
}

.aiseo-cta h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.aiseo-cta p {
    color: #8c93b8;
    max-width: 52ch;
    margin: 0 auto 30px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .aiseo-hero .container,
    .aiseo-intro .container { grid-template-columns: 1fr; }
    .aiseo-hero-stats { border-left: none; padding-left: 0; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
    .aiseo-cap-row { grid-template-columns: 50px 1fr; }
    .aiseo-cap-row p { grid-column: 2; }
    .aiseo-compare-table { grid-template-columns: 1fr; }
    .aiseo-compare-col + .aiseo-compare-col { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); }
    .aiseo-process-track { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
    .aiseo-process-track::before { display: none; }
}

@media (max-width: 640px) {
    .aiseo-hero h1 { font-size: 2.1rem; }
    .aiseo-hero-stats { grid-template-columns: 1fr; }
    .aiseo-section-head { flex-direction: column; align-items: flex-start; }
    .aiseo-process-track { grid-template-columns: 1fr; }
}

/* =========================================================
   LOCAL SEO PAGE — light directory / zig-zag editorial theme
   ========================================================= */
.localseo-hero {
    padding: 168px 0 70px;
    background: #f7f8fb;
}

.localseo-hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.localseo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2457ff;
}

.localseo-eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, #2a63ff, #8a57ff, #ff4fb6);
}

.localseo-hero h1 {
    font-size: 2.7rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 20px 0 18px;
}

.localseo-hero p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 48ch;
    margin-bottom: 28px;
}

.localseo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(90deg, #2a63ff 0%, #8a57ff 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 14px 30px rgba(42, 99, 255, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.localseo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(42, 99, 255, 0.36);
}

.localseo-map-card {
    position: relative;
    background: #0f172a;
    aspect-ratio: 4 / 3.4;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.localseo-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(255,255,255,0.14), 0 0 0 14px rgba(255,255,255,0.07);
}

.localseo-map-node {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
}

.localseo-map-card .n1 { top: 22%; left: 30%; }
.localseo-map-card .n2 { top: 34%; left: 68%; }
.localseo-map-card .n3 { top: 64%; left: 26%; }
.localseo-map-card .n4 { top: 70%; left: 60%; }
.localseo-map-card .n5 { top: 28%; left: 82%; }

.localseo-map-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.7;
}

.localseo-intro {
    padding: 64px 0;
    background: #0f172a;
    color: #fff;
}

.localseo-intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.localseo-intro-grid strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #5b8aff 0%, #a780ff 55%, #ff8ad4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.localseo-intro-grid span {
    font-size: 0.85rem;
    color: #97a1c2;
}

.localseo-trust {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.localseo-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.localseo-trust-stage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.localseo-trust-blob {
    position: absolute;
    top: 18%;
    left: -6%;
    width: 78%;
    height: 64%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 138, 255, 0.28), rgba(91, 138, 255, 0.05) 70%);
    z-index: 0;
}

.localseo-trust-col {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
}

.localseo-trust-col:last-child {
    margin-top: 64px;
}

.localseo-trust-card {
    padding: 26px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.28);
    text-align: center;
}

.localseo-trust-card strong {
    display: block;
    font-size: 2.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.localseo-trust-card span.localseo-trust-label {
    display: block;
    margin-top: 4px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1a2340;
}

.localseo-trust-card p {
    margin: 10px 0 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #64748b;
}

.localseo-trust-copy h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.28;
    color: #0f172a;
}

.localseo-trust-copy h2 span {
    color: #2a63ff;
}

.localseo-trust-rule {
    display: block;
    width: 60px;
    height: 3px;
    margin: 22px 0;
    background: #2a63ff;
}

.localseo-trust-copy p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #4a5478;
    max-width: 52ch;
}

@media (max-width: 900px) {
    .localseo-trust-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .localseo-trust-col:last-child {
        margin-top: 32px;
    }
}

@media (max-width: 560px) {
    .localseo-trust-stage {
        grid-template-columns: 1fr;
    }

    .localseo-trust-col:last-child {
        margin-top: 0;
    }
}

.localseo-howwhy {
    padding: 96px 0;
    background: #e1e7fd;
}

.localseo-howwhy-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: start;
}

.localseo-howwhy-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.localseo-howwhy-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 96px;
    padding: 0 36px 0 64px;
    border: none;
    background: #f5f6fa;
    color: #1a2340;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 14% 50%);
    transition: background 0.3s ease, color 0.3s ease;
}

.localseo-howwhy-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: none;
    color: currentColor;
}

.localseo-howwhy-tab-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.localseo-howwhy-tab-label {
    font-size: 1.15rem;
    font-weight: 700;
}

.localseo-howwhy-tab:hover {
    background: #eef1fb;
}

.localseo-howwhy-tab.is-active {
    background: linear-gradient(135deg, #2a63ff, #5b8aff);
    color: #fff;
}

.localseo-howwhy-panels {
    position: relative;
    align-self: center;
}

.localseo-howwhy-panel {
    display: none;
}

.localseo-howwhy-panel.is-active {
    display: block;
    animation: localseo-howwhy-fade 0.4s ease;
}

@keyframes localseo-howwhy-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.localseo-howwhy-panel h3 {
    margin: 0 0 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.localseo-howwhy-panel p {
    margin: 0 0 20px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #334155;
}

.localseo-howwhy-panel p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .localseo-howwhy-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .localseo-howwhy-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .localseo-howwhy-tab {
        flex: 1 1 auto;
        height: 72px;
        padding: 0 28px 0 24px;
        clip-path: none;
        border-radius: 12px;
    }
}

.localseo-services {
    padding: 96px 0;
    background: radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.9), transparent 34%),
        radial-gradient(circle at 82% 10%, rgba(207, 220, 255, 0.72), transparent 32%),
        linear-gradient(90deg, #f5f7fc 0%, #f3f6fd 52%, #dbe6ff 100%);
}

.localseo-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.localseo-services-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.localseo-services-copy > p {
    margin: 0 0 30px;
    font-size: 1rem;
    line-height: 1.75;
    color: #4a5478;
}

.localseo-services-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.localseo-services-list li {
    list-style: none;
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
    font-size: 1.02rem;
    font-weight: 600;
    color: #1a2340;
}

.localseo-services-list li strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2a63ff;
    flex: none;
}

@media (max-width: 900px) {
    .localseo-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.localseo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 56px 0;
    border-top: 1px solid #e5e7eb;
}

.localseo-row:last-child { border-bottom: 1px solid #e5e7eb; }

.localseo-row.is-reverse .localseo-row-media { order: 2; }

.localseo-row-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    display: block;
}

.localseo-row-copy h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.localseo-row-copy p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.75;
}

.localseo-row-media {
    height: 220px;
    background: #eef3ff;
    border: 1px solid #dbe4f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.localseo-row-media svg {
    width: 64px;
    height: 64px;
    stroke: #2a63ff;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.localseo-why {
    padding: 100px 0;
    background: linear-gradient(180deg, #fbfcff 0%, #f6f8ff 100%);
    text-align: center;
}

.localseo-why-head {
    max-width: 760px;
    margin: 0 auto 24px;
}

.localseo-why-head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    line-height: 1.32;
    color: #0f172a;
}

.localseo-why-head h2 span {
    color: #2a63ff;
}

.localseo-why-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0 28px;
}

.localseo-why-divider span {
    width: 40px;
    height: 1px;
    background: #cbd5e1;
}

.localseo-why-divider svg {
    width: 18px;
    height: 18px;
    stroke: #2a63ff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.localseo-why-copy {
    max-width: 780px;
    margin: 0 auto 64px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #334155;
}

.localseo-why-copy a {
    color: #2a63ff;
    font-weight: 600;
    text-decoration: none;
}

.localseo-why-copy a:hover {
    text-decoration: underline;
}

.localseo-why-features {
    position: relative;
    display: flex;
    justify-content: space-around;
    gap: 64px;
}

.localseo-why-features::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: #dbe4f5;
    z-index: 0;
}

.localseo-why-feature {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.localseo-why-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 32px -22px rgba(15, 23, 42, 0.3);
    color: #334155;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.localseo-why-feature-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.localseo-why-feature span.localseo-why-feature-label {
    font-size: 0.98rem;
    font-weight: 600;
    color: #64748b;
    transition: color 0.3s ease;
}

.localseo-why-feature:hover .localseo-why-feature-icon {
    transform: translateY(-3px);
    border-color: rgba(42, 99, 255, 0.4);
}

.localseo-why-feature.is-active .localseo-why-feature-icon {
    background: linear-gradient(135deg, #2a63ff, #5b8aff);
    border-color: transparent;
    color: #fff;
}

.localseo-why-feature.is-active span.localseo-why-feature-label {
    color: #2a63ff;
}

@media (max-width: 900px) {
    .localseo-why-features {
        flex-wrap: wrap;
        gap: 36px;
        row-gap: 40px;
    }

    .localseo-why-features::before {
        display: none;
    }
}

.localseo-areas {
    padding: 96px 0;
    background: #f7f8fb;
}

.localseo-areas-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
}

.localseo-areas-head h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0f172a;
    max-width: 16ch;
}

.localseo-areas-head p {
    max-width: 40ch;
    color: #64748b;
    margin: 0;
}

.localseo-areas-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
}

.localseo-areas-list span {
    padding: 18px 20px;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 500;
}

.localseo-quote {
    padding: 96px 0;
    background: #0f172a;
    color: #fff;
}

.localseo-quote .container {
    max-width: 820px;
    text-align: center;
}

.localseo-quote-mark {
    font-size: 3.4rem;
    line-height: 1;
    color: #4c5a86;
    margin-bottom: 10px;
}

.localseo-quote p.localseo-quote-text {
    font-size: 1.5rem;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.localseo-quote-author {
    margin-top: 26px;
    font-size: 0.92rem;
    color: #97a1c2;
}

.localseo-quote-author strong { color: #fff; }

.localseo-choose {
    padding: 100px 0;
    background: #f4f5f7;
    text-align: center;
}

.localseo-choose-kicker {
    display: block;
    margin-bottom: 14px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2a63ff;
}

.localseo-choose-head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #0f172a;
}

.localseo-choose-head h2 span {
    color: #2a63ff;
}

.localseo-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.localseo-choose-grid > .localseo-choose-card:nth-child(even) {
    margin-top: 64px;
}

.localseo-choose-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 20px 44px -28px rgba(15, 23, 42, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.localseo-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px -26px rgba(15, 23, 42, 0.36);
    background: radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.9), transparent 34%),
        radial-gradient(circle at 82% 10%, rgba(207, 220, 255, 0.72), transparent 32%),
        linear-gradient(90deg, #f5f7fc 0%, #f3f6fd 52%, #dbe6ff 100%);
}

.localseo-choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #0f172a;
}

.localseo-choose-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.localseo-choose-card span.localseo-choose-label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

@media (max-width: 992px) {
    .localseo-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .localseo-choose-grid > .localseo-choose-card:nth-child(even) {
        margin-top: 0;
    }

    .localseo-choose-grid > .localseo-choose-card:nth-child(3n+2) {
        margin-top: 32px;
    }
}

@media (max-width: 640px) {
    .localseo-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .localseo-choose-grid > .localseo-choose-card:nth-child(3n+2) {
        margin-top: 0;
    }

    .localseo-choose-grid > .localseo-choose-card:nth-child(even) {
        margin-top: 32px;
    }
}

.localseo-cta {
    padding: 100px 0;
    text-align: center;
}

.localseo-cta h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.localseo-cta p {
    color: #64748b;
    max-width: 52ch;
    margin: 0 auto 30px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .localseo-hero .container { grid-template-columns: 1fr; }
    .localseo-map-card { order: -1; aspect-ratio: 16 / 9; }
    .localseo-intro-grid { grid-template-columns: repeat(2, 1fr); }
    .localseo-row,
    .localseo-row.is-reverse .localseo-row-media { grid-template-columns: 1fr; order: 0; }
    .localseo-row { gap: 24px; }
    .localseo-areas-list { grid-template-columns: repeat(2, 1fr); }
    .localseo-areas-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .localseo-hero h1 { font-size: 2.1rem; }
    .localseo-intro-grid { grid-template-columns: repeat(2, 1fr); }
    .localseo-areas-list { grid-template-columns: 1fr; }
}

/* =========================================================
   SOCIAL MEDIA PAGE — light editorial spec-sheet theme
   ========================================================= */
.smm-hero {
    padding: 168px 0 60px;
    background: #ffffff;
}

.smm-hero .container {
    max-width: 900px;
}

.smm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2457ff;
}

.smm-eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, #2a63ff, #8a57ff, #ff4fb6);
}

.smm-hero h1 {
    font-size: 2.9rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.16;
    letter-spacing: -0.02em;
    margin: 20px 0 18px;
    max-width: 20ch;
}

.smm-hero p {
    color: #64748b;
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 56ch;
    margin-bottom: 30px;
}

.smm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(90deg, #2a63ff 0%, #8a57ff 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 14px 30px rgba(42, 99, 255, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.smm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(42, 99, 255, 0.36);
}

.smm-about {
    padding: 96px 0 44px;
}

.smm-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 48px;
    align-items: center;
}

.smm-about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #edf4ff;
    color: #2457ff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.smm-about-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a63ff;
}

.smm-about-copy h2 {
    margin: 22px 0 18px;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.smm-about-copy p {
    margin: 0 0 16px;
    color: #5b6475;
    line-height: 1.8;
    font-size: 1rem;
}

.smm-about-points {
    display: grid;
    gap: 12px;
    margin: 28px 0 32px;
}

.smm-about-points span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1f2937;
    font-weight: 600;
}

.smm-about-points span::before {
    content: "";
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a63ff, #7fa8ff);
    box-shadow: 0 0 0 5px rgba(42, 99, 255, 0.12);
}

.smm-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.smm-about-btn:hover {
    transform: translateY(-2px);
    background: #1e293b;
    color: #fff;
}

.smm-about-card {
    position: relative;
    padding: 18px;
    border-radius: 28px;
}

.smm-about-card img {
    display: block;
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.smm-about-stat {
    max-width: 260px;
    margin-top: -38px;
    margin-left: auto;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    position: relative;
}

.smm-about-stat strong {
    display: block;
    color: #2457ff;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
}

.smm-about-stat span {
    display: block;
    color: #475569;
    line-height: 1.6;
    font-size: 0.92rem;
}

.smm-formula {
    padding: 100px 0;
    background: radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.9), transparent 34%),
        radial-gradient(circle at 82% 10%, rgba(207, 220, 255, 0.72), transparent 32%),
        linear-gradient(90deg, #f5f7fc 0%, #f3f6fd 52%, #dbe6ff 100%);
}

.smm-formula-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.smm-formula-kicker {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2a63ff;
}

.smm-formula-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #14251c;
}

.smm-formula-copy p {
    margin: 0 0 26px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #3a4a3f;
}

.smm-formula-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(42, 99, 255, 0.12);
    color: #14315e;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.smm-formula-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #2a63ff;
    color: #fff;
    text-decoration: none;
}

.smm-formula-btn span svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.smm-formula-stage {
    position: relative;
    width: 560px;
    max-width: 100%;
    height: 370px;
    margin-left: auto;
}

.smm-formula-connector {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.smm-formula-connector path {
    fill: none;
    stroke: #2a63ff;
    stroke-width: 2;
    stroke-dasharray: 3 10;
    stroke-linecap: round;
    opacity: 0.6;
}

.smm-formula-connector circle {
    fill: #2a63ff;
}

.smm-formula-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 30px 60px -26px rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.smm-formula-center span {
    font-size: 1.3rem;
    font-weight: 800;
    color: #14315e;
}

.smm-formula-petal {
    position: absolute;
    top: var(--py);
    left: var(--px);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--pc);
    transform: rotate(var(--pr)) scale(0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0.72;
    cursor: pointer;
    box-shadow: 0 20px 34px -18px rgba(15, 23, 42, 0.35);
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
}

.smm-formula-petal.is-active {
    transform: rotate(var(--pr)) scale(1.1);
    opacity: 1;
    box-shadow: 0 26px 44px -16px rgba(15, 23, 42, 0.5);
    z-index: 3;
}

.smm-formula-petal-label {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.92rem;
    font-weight: 700;
    color: #10241c;
    transition: color 0.4s ease, transform 0.4s ease;
    display: none;
}

.smm-formula-petal.is-active .smm-formula-petal-label {
    color: #2a63ff;
    transform: translateX(-50%) scale(1.08);
}

.smm-formula-center span {
    transition: opacity 0.25s ease;
}

.smm-formula-center span.is-fading {
    opacity: 0;
}

.smm-formula-petal-icon {
    transform: rotate(calc(-1 * var(--pr)));
    display: flex;
    align-items: center;
    justify-content: center;
}

.smm-formula-petal-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------------------------------------------------------
   Social media platform showcase â€” left promo card + right list
   --------------------------------------------------------- */
.smm-platform-showcase {
    padding: 96px 0;
    background: #ffffff;
}

.smm-platform-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: start;
}

.smm-platform-showcase-card {
    position: sticky;
    top: 110px;
    align-self: start;
    min-height: 468px;
    padding: 74px 48px 48px;
    background: linear-gradient(180deg, #1f5fca 0%, #2063d6 100%);
    color: #ffffff;
    overflow: hidden;
}

.smm-platform-showcase-card::before,
.smm-platform-showcase-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 3px;
    border: 1px solid #24e0c8;
    transform: rotate(40deg);
    opacity: 0.95;
}

.smm-platform-showcase-card::before {
    top: 86px;
    right: -24px;
}

.smm-platform-showcase-card::after {
    left: 40%;
    bottom: 30px;
    transform: rotate(38deg);
}

.smm-platform-showcase-line {
    position: absolute;
    width: 120px;
    height: 0;
    border-top: 1px solid #24e0c8;
    opacity: 0.95;
}

.smm-platform-showcase-line-top {
    top: 76px;
    right: 20px;
    transform: rotate(135deg);
}

.smm-platform-showcase-line-bottom {
    left: 42%;
    bottom: 78px;
    transform: rotate(38deg);
}

.smm-platform-showcase-content {
    position: relative;
    z-index: 1;
    max-width: 430px;
}

.smm-platform-showcase-content h2 {
    margin: 0 0 16px;
    font-size: clamp(2.05rem, 3.6vw, 2.9rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.smm-platform-showcase-content p {
    margin: 0;
    /* max-width: 26ch; */
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.94);
}

.smm-platform-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 54px;
    padding: 16px 28px;
    min-width: 170px;
    border-radius: 999px;
    background: #ffffff;
    color: #1f5fca;
    font-size: 0.96rem;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.smm-platform-showcase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(15, 23, 42, 0.16);
    color: #1f5fca;
}

.smm-platform-showcase-list {
    display: grid;
    gap: 44px;
}

.smm-platform-showcase-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 18px;
    align-items: start;
}

.smm-platform-showcase-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #18d6c2;
}

.smm-platform-showcase-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.smm-platform-showcase-copy h3 {
    margin: 0 0 10px;
    font-size: 1.48rem;
    line-height: 1.18;
    font-weight: 700;
    color: #2f4363;
}

.smm-platform-showcase-copy p {
    margin: 0;
    /* max-width: 34ch; */
    font-size: 1.12rem;
    line-height: 1.9;
    color: #172033;
}

@media (max-width: 900px) {
    .smm-formula-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .smm-formula-stage {
        height: 400px;
        transform: scale(0.82);
        transform-origin: top center;
    }

    .smm-platform-showcase-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .smm-platform-showcase-card {
        position: relative;
        top: auto;
        min-height: 420px;
        padding: 56px 34px 38px;
    }

    .smm-platform-showcase-content p {
        max-width: 30ch;
    }

    .smm-platform-showcase-copy p {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .smm-formula-stage {
        transform: scale(0.62);
        height: 340px;
    }

    .smm-platform-showcase {
        padding: 72px 0;
    }

    .smm-platform-showcase-card {
        position: relative;
        top: auto;
        min-height: 380px;
        padding: 44px 24px 30px;
    }

    .smm-platform-showcase-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .smm-platform-showcase-btn {
        margin-top: 36px;
        padding: 14px 22px;
        min-width: 158px;
    }

    .smm-platform-showcase-item {
        grid-template-columns: 28px 1fr;
        gap: 14px;
    }

    .smm-platform-showcase-copy h3 {
        font-size: 1.2rem;
    }

    .smm-platform-showcase-copy p {
        font-size: 1rem;
        line-height: 1.75;
    }
}

.smm-intro {
    padding: 0 0 90px;
}

.smm-intro .container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    border-top: 1px solid #e5e7eb;
    padding-top: 56px;
}

.smm-intro-copy h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.smm-intro-copy p {
    color: #64748b;
    line-height: 1.75;
    margin-top: 16px;
}

.smm-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.smm-intro-stats div strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: #0f172a;
}

.smm-intro-stats div span {
    font-size: 0.85rem;
    color: #7c8496;
}

.smm-team {
    padding: 90px 0 90px;
    background: radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.9), transparent 34%),
        radial-gradient(circle at 82% 10%, rgba(207, 220, 255, 0.72), transparent 32%),
        linear-gradient(90deg, #f5f7fc 0%, #f3f6fd 52%, #dbe6ff 100%);
}

.smm-team-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: start;
}

.smm-team-copy h2 {
    font-size: clamp(2rem, 3.7vw, 3.25rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #1f2937;
    margin: 0 0 30px;
}

.smm-team-copy p {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.85;
    color: #475569;
}

.smm-team-accordion {
    display: grid;
    gap: 18px;
}

.smm-team-item {
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(233, 241, 255, 0.98) 0%, rgba(244, 248, 255, 0.98) 100%);
    border: 1px solid rgba(42, 99, 255, 0.14);
    box-shadow: 0 20px 40px rgba(25, 64, 150, 0.08);
    overflow: hidden;
}

.smm-team-item:nth-child(2) {
    background: linear-gradient(90deg, rgba(225, 237, 255, 0.98) 0%, rgba(239, 246, 255, 0.98) 100%);
}

.smm-team-item:nth-child(3) {
    background: linear-gradient(90deg, rgba(218, 232, 255, 0.98) 0%, rgba(236, 244, 255, 0.98) 100%);
}

.smm-team-item:nth-child(4) {
    background: linear-gradient(90deg, rgba(212, 228, 255, 0.98) 0%, rgba(232, 241, 255, 0.98) 100%);
}

.smm-team-question {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    text-align: left;
    color: #143d8f;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.smm-team-item:nth-child(2) .smm-team-question {
    color: #1a4ea8;
}

.smm-team-item:nth-child(3) .smm-team-question {
    color: #2457b8;
}

.smm-team-item:nth-child(4) .smm-team-question {
    color: #2a63ff;
}

.smm-team-icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.smm-team-icon::before,
.smm-team-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.smm-team-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.smm-team-item.is-open .smm-team-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.smm-team-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.smm-team-answer-inner {
    padding: 0 26px 24px;
    max-width: 52ch;
    color: #334a6b;
    line-height: 1.75;
    font-size: 0.96rem;
}

.smm-platforms {
    padding: 0 0 96px;
}

.smm-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 8px;
}

.smm-section-head h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0f172a;
}

.smm-section-head p {
    max-width: 40ch;
    color: #64748b;
    margin: 0;
}

.smm-platform-table {
    margin-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.smm-platform-row {
    display: grid;
    grid-template-columns: 64px 1fr 1.4fr;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
}

.smm-platform-row span.smm-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smm-platform-row span.smm-icon svg {
    width: 22px;
    height: 22px;
    stroke: #2a63ff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.smm-platform-row h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
}

.smm-platform-row p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.smm-pillars {
    padding: 96px 0;
    background: #f7f8fb;
}

.smm-pillars-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    margin-top: 32px;
}

.smm-pillar-item {
    padding: 28px 30px;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.smm-pillar-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2457ff;
    letter-spacing: 0.06em;
}

.smm-pillar-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    margin: 10px 0 8px;
}

.smm-pillar-item p {
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
}

.smm-process {
    padding: 132px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.smm-process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    margin-top: 56px;
}

.smm-process-track::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 2%;
    right: 2%;
    height: 1px;
    background: #e5e7eb;
}

.smm-process-step { padding-right: 28px; }

.smm-process-step span.smm-dot {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #2a63ff;
    background: #fff;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px rgba(42, 99, 255, 0.08);
}

.smm-process-step h3 {
    font-size: 1.18rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.smm-process-step p {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 24ch;
}

.smm-process .smm-section-head h2 {
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    /* max-width: 14ch; */
}

.smm-process .smm-section-head p {
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 34ch;
}

/* ---------------------------------------------------------
   Social media process showcase â€” 2x2 numbered cards
   --------------------------------------------------------- */
.smm-kerala-process {
    padding: 96px 0 104px;
    background:
        radial-gradient(circle at 15% 15%, rgba(42, 99, 255, 0.06), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(33, 103, 169, 0.05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.smm-kerala-process-head {
    max-width: 1040px;
    margin: 0 auto 72px;
    text-align: center;
}

.smm-kerala-process-head h2 {
    margin: 0;
    font-size: 2.25rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 700;
    text-transform: none;
    color: #1f2f4a;
}

.smm-kerala-process-head h2 span {
    color: #2a63ff;
}

.smm-kerala-process-head p {
    margin: 18px auto 0;
    /* max-width: 64ch; */
    font-size: 1rem;
    line-height: 1.8;
    color: #51607a;
}

.smm-kerala-process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 56px;
    align-items: start;
}

.smm-kerala-process-card {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 18px;
    align-items: start;
}

.smm-kerala-process-num {
    width: 68px;
    height: 76px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #2167a9 0%, #2a63ff 100%);
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
}

.smm-kerala-process-num.is-mint {
    background: linear-gradient(180deg, #18b6ff 0%, #10d7b7 100%);
}

.smm-kerala-process-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1f2f4a;
}

.smm-kerala-process-card p {
    margin: 0;
    max-width: 40ch;
    font-size: 0.98rem;
    line-height: 1.75;
    color: #51607a;
}

@media (max-width: 991px) {
    .smm-kerala-process {
        padding: 78px 0 84px;
    }

    .smm-kerala-process-head {
        margin-bottom: 52px;
    }

    .smm-kerala-process-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .smm-kerala-process-card {
        grid-template-columns: 64px 1fr;
    }
}

@media (max-width: 640px) {
    .smm-kerala-process {
        padding: 68px 0 72px;
    }

    .smm-kerala-process-head h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .smm-kerala-process-head p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .smm-kerala-process-card {
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }

    .smm-kerala-process-num {
        width: 56px;
        height: 64px;
        font-size: 1.7rem;
    }

    .smm-kerala-process-card h3 {
        font-size: 1.08rem;
    }

    .smm-kerala-process-card p {
        font-size: 0.93rem;
        line-height: 1.75;
        max-width: none;
    }
}

.smm-cta {
    padding: 100px 0;
    text-align: center;
    background: #0f172a;
    color: #fff;
}

.smm-cta h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.smm-cta p {
    color: #97a1c2;
    max-width: 52ch;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.smm-cta .smm-btn:hover { background: #fff; color: #0f172a; }

@media (max-width: 992px) {
    .smm-about {
        padding-top: 76px;
    }
    .smm-about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .smm-about-copy h2,
    .smm-about-copy p {
        max-width: none;
    }
    .smm-intro .container { grid-template-columns: 1fr; gap: 30px; }
    .smm-intro-stats { grid-template-columns: repeat(3, 1fr); }
    .smm-team-grid { grid-template-columns: 1fr; gap: 34px; }
    .smm-team-copy h2,
    .smm-team-copy p { max-width: none; }
    .smm-platform-row { grid-template-columns: 50px 1fr; }
    .smm-platform-row p { grid-column: 2; }
    .smm-pillars-list { grid-template-columns: 1fr; }
    .smm-process-track { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
    .smm-process-track::before { display: none; }
}

@media (max-width: 640px) {
    .smm-hero h1 { font-size: 2.1rem; }
    .smm-about {
        padding: 64px 0 28px;
    }
    .smm-about-card {
        padding: 12px;
        border-radius: 22px;
    }
    .smm-about-stat {
        max-width: none;
        margin-top: 16px;
    }
    .smm-intro-stats { grid-template-columns: 1fr; }
    .smm-team { padding-bottom: 72px; }
    .smm-team-question { padding: 20px 18px; font-size: 1rem; }
    .smm-team-answer-inner { padding: 0 18px 20px; }
    .smm-section-head { flex-direction: column; align-items: flex-start; }
    .smm-process-track { grid-template-columns: 1fr; }
    .smm-process {
        padding: 88px 0;
    }
    .smm-process .smm-section-head h2 {
        font-size: 2rem;
        max-width: none;
    }
    .smm-process .smm-section-head p {
        font-size: 0.98rem;
        max-width: none;
    }
    .smm-process-step p {
        max-width: none;
    }
}

.contact-page-field input:focus,
.contact-page-field textarea:focus {
    border-color: #5e41d8;
    box-shadow: 0 0 0 3px rgba(94, 65, 216, 0.12);
}

.contact-page-submit {
    width: 100%;
    padding: 15px 22px;
    border: none;
    border-radius: 999px;
    background: #003a8c;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 16px 28px rgba(86, 66, 213, 0.24);
}

.contact-page-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(86, 66, 213, 0.3);
}

.contact-page-info-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1120px;
    margin: 24px auto 0;
}

.contact-page-info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 156px;
    padding: 22px 22px 24px;
    /* border-radius: 22px; */
    background: rgba(255, 255, 255, 0.98);
    color: #111827;
    border: 1px solid rgba(17, 24, 39, 0.06);
    /* box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08); */
}

.contact-page-info-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #cfd8ff;
    color: #5642d5;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.contact-page-info-card h2 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.contact-page-info-card p,
.contact-page-info-card a {
    display: inline-block;
    margin: 0;
    color: #6b7280;
    font-size: 0.98rem;
    line-height: 1.6;
}

.contact-page-info-card a:hover {
    color: #5642d5;
}

@media (max-width: 991px) {
    .contact-page-shell {
        grid-template-columns: 1fr;
        transform: none;
    }

    .contact-page-form-card {
        margin: -24px 18px 18px;
        transform: none;
    }

    .contact-page-visual {
        min-height: 460px;
    }

    .contact-page-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page-hero {
        padding: 40px 0 64px;
    }

    .contact-page-visual {
        min-height: 320px;
    }

    .contact-page-form-card {
        padding: 28px 20px 22px;
        margin: -18px 12px 12px;
        border-radius: 18px;
    }

    .contact-page-field-row {
        grid-template-columns: 1fr;
    }

    .contact-page-form-header h1 {
        font-size: 2rem;
    }
}

.blog-page {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 72px;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(34, 113, 255, 0.18), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(0, 58, 140, 0.16), transparent 26%),
        linear-gradient(135deg, #eef4ff 0%, #f8fbff 48%, #eef2f8 100%);
}

.blog-hero-copy {
    position: relative;
    z-index: 1;
}

.blog-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 58, 140, 0.1);
    color: #003a8c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-hero-copy h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.blog-hero-copy p {
    margin: 18px 0 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5b6474;
}

.blog-listing {
    padding: 0 0 88px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.04);
}

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 24px 26px;
}

.blog-card-tag {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #edf4ff;
    color: #1451a6;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card h2 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.28;
}

.blog-card h2 a {
    color: #0f172a;
}

.blog-card p {
    margin: 14px 0 0;
    color: #5b6474;
    font-size: 0.98rem;
    line-height: 1.75;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    color: #6b7280;
    font-size: 0.86rem;
    font-weight: 600;
}

.blog-card-link {
    margin-top: auto;
    padding-top: 22px;
    color: #003a8c;
    font-weight: 700;
}

.blog-card-link:hover,
.blog-card h2 a:hover {
    color: #1451a6;
}

.blog-article-page {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.blog-article-hero {
    padding: 118px 0 48px;
}

.blog-article-hero-copy h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4.5vw, 4.1rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.blog-article-hero-copy p {
    margin: 18px 0 0;
    max-width: 68ch;
    color: #5b6474;
    font-size: 1.02rem;
    line-height: 1.8;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    color: #5f6b7c;
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-article-hero-media {
    margin-top: 28px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.blog-article-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-article-content-wrap {
    padding: 0 0 88px;
}

.blog-article-content {
    /* max-width: 860px; */
    margin: 0 auto;
    padding: 38px 34px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    /* border-radius: 30px; */
    background: #ffffff;
    /* box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07); */
}

.blog-article-content h2 {
    margin: 32px 0 12px;
    font-size: 1.55rem;
    line-height: 1.25;
    color: #0f172a;
}

.blog-article-content p {
    margin: 0 0 16px;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.85;
}

.blog-faq-section {
    max-width: 860px;
    margin: 28px auto 0;
}

.blog-faq-card {
    padding: 34px 34px 16px;
    border-radius: 30px;
    background: linear-gradient(135deg, #003a8c 0%, #0f4aa6 52%, #0c2f67 100%);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.14);
}

.blog-faq-header {
    margin-bottom: 8px;
}

.blog-faq-header .blog-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.blog-faq-header h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.1;
    color: #ffffff;
}

.blog-faq-items .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    /* background: rgb(238, 238, 238); */
}

.blog-faq-items .faq-question {
    padding: 24px 0 18px;
    color: #000000;
    font-size: 1.06rem;
    font-weight: 600;
}

.blog-faq-items .faq-answer-inner {
    max-width: none;
    padding: 0 0 22px;
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.98rem;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding: 104px 0 56px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-body {
        padding: 22px 20px 24px;
    }

    .blog-article-hero {
        padding: 104px 0 38px;
    }

    .blog-article-hero-media {
        margin-top: 22px;
        border-radius: 22px;
    }

    .blog-article-content {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .blog-faq-card {
        padding: 28px 20px 12px;
        border-radius: 22px;
    }
}

/* =========================================================
   FAQ + CONTACT FORM (two-column, e.g. ecommerce-seo.php)
   ========================================================= */
.ecommerce-faq-contact {
    padding: 92px 0;
    background: #f6f8ff;
}

.ecommerce-faq-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.ecommerce-faq-contact-grid .faq-panel-inner {
    height: 100%;
}

.ecommerce-faq-contact-form-card {
    height: 100%;
    border-radius: 28px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.1);
}

@media (max-width: 992px) {
    .ecommerce-faq-contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-faq-header h2 {
        font-size: 1.65rem;
    }

    .blog-faq-items .faq-question {
        font-size: 0.98rem;
    }
}

/* =========================================================
   EXPERTISE / TRUST (e.g. ecommerce-seo.php)
   ========================================================= */
.ecommerce-expertise {
    padding: 96px 0;
    background: #ffffff;
}

.ecommerce-expertise-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 56px;
    align-items: center;
}

.ecommerce-expertise-copy h2 {
    margin: 18px 0 16px;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #0f172a;
}

.ecommerce-expertise-copy > p {
    margin: 0 0 26px;
    max-width: 54ch;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #4b5872;
}

.ecommerce-expertise-list {
    display: grid;
    gap: 14px;
    margin: 0 0 32px;
    list-style: none;
}

.ecommerce-expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #1f2a44;
}

.ecommerce-expertise-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e8edff;
    color: #2a63ff;
    font-size: 0.8rem;
    font-weight: 700;
}

.ecommerce-expertise-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.ecommerce-expertise-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.ecommerce-expertise-rating {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 18px 22px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

.ecommerce-expertise-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
}

.ecommerce-expertise-rating strong {
    display: block;
    margin-top: 4px;
    font-size: 1.15rem;
    color: #0f172a;
}

.ecommerce-expertise-rating span {
    display: block;
    font-size: 0.82rem;
    color: #64748b;
}

@media (max-width: 991px) {
    .ecommerce-expertise-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.services-new-section.ecommerce-services-dark {
    background: radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.9), transparent 34%),
        radial-gradient(circle at 82% 10%, rgba(207, 220, 255, 0.72), transparent 32%),
        linear-gradient(90deg, #f5f7fc 0%, #f3f6fd 52%, #dbe6ff 100%);
}

.services-new-section.ecommerce-services-dark .services-kicker {
    color: #7fd4ff;
}

.services-new-section.ecommerce-services-dark .services-header-grid h2 {
    color: #000000;
}

.services-new-section.ecommerce-services-dark .services-header-grid h2 span {
    background: linear-gradient(90deg, #5b8aff 0%, #7fd4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-new-section.ecommerce-services-dark .services-header-grid p {
    color: rgba(0, 0, 0);
}

.services-new-section.ecommerce-services-dark .service-tile {
    border-color: rgb(255 255 255);
    background: rgb(203 214 255);
    box-shadow: none;
}

.services-new-section.ecommerce-services-dark .service-tile:hover {
    border-color: rgba(127, 212, 255, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.services-new-section.ecommerce-services-dark .service-tile-number {
    color: rgba(255, 255, 255, 0.08);
}

.services-new-section.ecommerce-services-dark .service-tile-icon {
    background: #eef3ff;
    color: #2a63ff;
}

.services-new-section.ecommerce-services-dark .service-tile h3 {
    color: #000000;
}

.services-new-section.ecommerce-services-dark .service-tile p {
    color: rgb(108 138 216);
}

.services-new-section.ecommerce-services-dark .service-tile-link {
    color: #003a8c;
}

.services-new-section.ecommerce-services-dark .service-tile-link:hover {
    color: #ffffff;
}

/* =========================================================
   CASE STUDY — dark (e.g. ecommerce-seo.php)
   ========================================================= */
.ecommerce-case-study {
    padding: 96px 0;
    background: #071a3a;
}

.ecommerce-case-study .seosvc-head h2 {
    color: #ffffff;
}

.ecommerce-case-study .seosvc-head p {
    color: rgba(234, 240, 255, 0.72);
}

.ecommerce-case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ecommerce-case-study-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ecommerce-case-study-media {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ecommerce-case-study-media img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ecommerce-case-study-tag {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(127, 212, 255, 0.14);
    color: #7fd4ff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ecommerce-case-study-card h3 {
    margin: 16px 0 10px;
    font-size: 1.35rem;
    line-height: 1.3;
    color: #ffffff;
}

.ecommerce-case-study-card p {
    margin: 0 0 18px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(234, 240, 255, 0.72);
}

.ecommerce-case-study-link {
    color: #7fd4ff;
    font-size: 0.95rem;
    font-weight: 600;
}

.ecommerce-case-study-link:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .ecommerce-case-study-grid {
        grid-template-columns: 1fr;
    }
}
