:root {
    --blue: #0b5ed7;
    --blue-dark: #061d46;
    --blue-mid: #0a3d91;
    --cyan: #0fb4c8;
    --orange: #f7a521;
    --orange-deep: #ef7f1a;
    --ink: #152238;
    --muted: #667085;
    --soft: #f4f8ff;
    --line: #dfe7f2;
    --shadow: 0 18px 42px rgba(6, 29, 70, .11);
}

body {
    color: var(--ink);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    background: #fff;
}

*, *::before, *::after { box-sizing: border-box; }
img, svg, video, canvas, iframe { max-width: 100%; }
a { text-decoration: none; }
.container { max-width: min(1320px, calc(100% - 24px)); }
.form-control, .form-select { min-height: 48px; }
textarea.form-control { min-height: 120px; }

.top-strip {
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid));
    color: #fff;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.top-strip a, .top-strip span { color: #fff; }
.top-strip .small {
    min-width: 0;
}
.top-strip .small > span,
.top-strip .small > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    overflow-wrap: anywhere;
}
.top-strip .icon-badge { margin-right: 7px; }
.icon-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-size: .95rem;
    box-shadow: 0 10px 22px rgba(0,0,0,.16);
    vertical-align: middle;
}
.icon-location { background: linear-gradient(135deg, #ef4444, #f97316); }
.icon-email { background: linear-gradient(135deg, #0ea5e9, #2563eb); }
.icon-phone { background: linear-gradient(135deg, #22c55e, #16a34a); }
.socials { display: inline-flex; gap: 10px; align-items: center; }
.socials span { font-weight: 700; opacity: .9; }
.socials a {
    color: #fff;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    transition: transform .2s ease, background .2s ease;
}
.socials a:nth-of-type(1) { background: linear-gradient(135deg, #1877f2, #0b5ed7); }
.socials a:nth-of-type(2) { background: linear-gradient(135deg, #f97316, #db2777); }
.socials a:nth-of-type(3) { background: linear-gradient(135deg, #0a66c2, #0ea5e9); }
.socials a:nth-of-type(4) { background: linear-gradient(135deg, #ff0000, #dc2626); }
.socials a:hover { transform: translateY(-2px); color: #fff; filter: brightness(1.08); }

.brand-mark {
    color: var(--blue-dark);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    padding: 0;
    flex: 0 0 auto;
    margin-right: 14px;
}

.brand-mark img {
    display: block;
    width: min(220px, 36vw);
    height: auto;
    max-height: 58px;
}
.navbar-collapse { min-width: 0; }
.navbar { padding: 12px 0; z-index: 1040; }
.navbar .nav-link {
    color: var(--ink);
    font-weight: 700;
    padding: 1rem .62rem !important;
    position: relative;
    font-size: .95rem;
}
.navbar .nav-link::after {
    border: 0;
    vertical-align: 0;
}
.navbar .nav-link:hover,
.navbar .nav-item.show > .nav-link,
.navbar .nav-link:focus {
    color: var(--blue);
}
.navbar .nav-link::before {
    content: "";
    position: absolute;
    left: .72rem;
    right: .72rem;
    bottom: .55rem;
    height: 3px;
    border-radius: 99px;
    background: var(--orange);
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .2s ease, transform .2s ease;
}
.navbar .nav-link:hover::before,
.navbar .nav-item.show > .nav-link::before,
.navbar .nav-link:focus::before {
    opacity: 1;
    transform: scaleX(1);
}
.navbar .dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: .72rem;
    margin-left: 7px;
    border: 0;
    transition: transform .2s ease;
}
.navbar .nav-item.show > .dropdown-toggle::after,
.navbar .nav-hover:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
}
.btn { border-radius: 6px; font-weight: 700; }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-mid)); border-color: var(--blue); box-shadow: 0 10px 22px rgba(11, 94, 215, .18); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-warning { background: linear-gradient(135deg, var(--orange), var(--orange-deep)); border-color: var(--orange); color: #172033; box-shadow: 0 10px 22px rgba(247, 165, 33, .24); }
.btn-outline-light { border-width: 2px; }

.hover-menu {
    min-width: 520px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 28px 68px rgba(6, 29, 70, .2);
    overflow: hidden;
    margin-top: 0;
}
.hover-menu.wide { min-width: 720px; }
.hover-menu.compact { min-width: 300px; }
.menu-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    background: #fff;
}
.menu-links {
    padding: 22px;
}
.menu-links.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
}
.menu-links.two-col h6 {
    grid-column: 1 / -1;
}
.menu-links h6 {
    color: var(--blue-dark);
    font-weight: 900;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.menu-links .dropdown-item {
    white-space: normal;
    line-height: 1.25;
    padding: 9px 10px;
    border-radius: 6px;
    color: var(--ink);
    font-weight: 650;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.menu-links .dropdown-item i {
    color: var(--orange);
    font-size: .78rem;
    margin-top: 3px;
}
.menu-links .dropdown-item:hover,
.menu-links .dropdown-item:focus {
    background: rgba(11, 94, 215, .08);
    color: var(--blue);
}
.menu-feature {
    background:
        radial-gradient(circle at 80% 20%, rgba(247, 165, 33, .36), transparent 32%),
        linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: #fff;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-height: 100%;
}
.menu-feature i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.14);
    color: var(--orange);
    font-size: 1.55rem;
}
.menu-feature strong {
    font-size: 1.18rem;
    line-height: 1.2;
}
.menu-feature span {
    color: rgba(255,255,255,.82);
    font-size: .94rem;
}

.hero-slide {
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 20%, rgba(247, 165, 33, .34), transparent 26%),
        linear-gradient(90deg, rgba(6, 29, 70, .96), rgba(9, 48, 113, .74), rgba(9, 43, 98, .24));
}

.hero-slide-one { background-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=2000&q=88"); }
.hero-slide-two { background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=2000&q=88"); }
.hero-slide-three { background-image: url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=2000&q=88"); }

.hero-content {
    position: relative;
    color: #fff;
    max-width: 760px;
    padding: 90px 0 120px;
}
.carousel-item.active .hero-content {
    animation: heroTextIn .75s ease both;
}
.carousel-item.active .hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 8% 12% auto;
    width: min(340px, 40vw);
    aspect-ratio: 1;
    border: 28px solid rgba(255,255,255,.09);
    border-radius: 50%;
    animation: heroRing 5.2s ease-in-out both;
}
.hero-indicators {
    margin-bottom: 42px;
    gap: 8px;
    justify-content: flex-start;
    left: max(12px, calc((100vw - 1140px) / 2));
    right: auto;
    width: auto;
}
.hero-indicators [data-bs-target] {
    width: 36px;
    height: 6px;
    border: 0;
    border-radius: 99px;
    background: rgba(255,255,255,.65);
    opacity: 1;
    transition: width .2s ease, background .2s ease;
}
.hero-indicators .active {
    width: 58px;
    background: var(--orange);
}
.carousel-control-prev,
.carousel-control-next {
    width: 54px;
    height: 54px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    opacity: 1;
}
.carousel-control-prev { left: 24px; }
.carousel-control-next { right: 24px; }
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--orange);
}

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

@keyframes heroRing {
    from { opacity: 0; transform: scale(.86); }
    30% { opacity: 1; }
    to { opacity: .72; transform: scale(1); }
}

.hero-content span, .eyebrow {
    color: var(--orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    display: inline-block;
    margin-bottom: 10px;
}

.eyebrow.light { color: var(--orange); }
.hero-content h1 { font-size: clamp(2.35rem, 5vw, 4.8rem); font-weight: 900; line-height: 1.05; margin-bottom: 22px; overflow-wrap: anywhere; }
.hero-content p { font-size: 1.2rem; max-width: 620px; overflow-wrap: anywhere; }
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 30px;
}
.hero-badges strong {
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 8px;
    padding: 9px 13px;
    backdrop-filter: blur(12px);
    font-size: .95rem;
    flex: 0 1 auto;
}

.section-pad { padding: 88px 0; }
.bg-soft { background: var(--soft); }
.section-title { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.section-title h2, h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 850; color: var(--blue-dark); line-height: 1.15; overflow-wrap: anywhere; }
h3 { color: var(--blue-dark); font-weight: 800; }
.lead, p { color: var(--muted); }

.service-strip {
    margin-top: -48px;
    position: relative;
    z-index: 3;
}

.service-slider {
    position: relative;
    overflow: hidden;
    padding: 6px 0 10px;
}

.service-slider::before,
.service-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.service-slider::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}

.service-slider::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

.service-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: serviceSlide 38s linear infinite;
}

.service-slider:hover .service-track {
    animation-play-state: paused;
}

.mini-service {
    --mini-a: var(--blue);
    --mini-b: var(--cyan);
    --mini-glow: rgba(11, 94, 215, .18);
    color: #fff;
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.22), transparent 34%),
        linear-gradient(135deg, var(--mini-a), var(--mini-b));
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 8px;
    padding: 18px 16px;
    display: flex;
    flex: 0 0 230px;
    min-width: 230px;
    min-height: 88px;
    align-items: center;
    gap: 13px;
    box-shadow: 0 18px 38px var(--mini-glow);
    font-weight: 900;
    line-height: 1.18;
    overflow: hidden;
    position: relative;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.mini-service::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -34px;
    width: 84px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 14px solid rgba(255,255,255,.15);
}

.mini-service:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.72); box-shadow: 0 24px 52px var(--mini-glow); }
.mini-service i {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
    font-size: 1.35rem;
    position: relative;
    z-index: 1;
}
.mini-service span { position: relative; z-index: 1; }
.mini-service-1 { --mini-a: #2563eb; --mini-b: #06b6d4; --mini-glow: rgba(37, 99, 235, .2); }
.mini-service-2 { --mini-a: #f97316; --mini-b: #f59e0b; --mini-glow: rgba(249, 115, 22, .2); }
.mini-service-3 { --mini-a: #db2777; --mini-b: #7c3aed; --mini-glow: rgba(219, 39, 119, .18); }
.mini-service-4 { --mini-a: #16a34a; --mini-b: #14b8a6; --mini-glow: rgba(22, 163, 74, .18); }
.mini-service-5 { --mini-a: #0f766e; --mini-b: #0ea5e9; --mini-glow: rgba(15, 118, 110, .18); }
.mini-service-6 { --mini-a: #ca8a04; --mini-b: #ea580c; --mini-glow: rgba(202, 138, 4, .2); }
.mini-service-blink {
    animation: miniServiceBlink 1.4s ease-in-out infinite, servicePulse 2.8s ease-in-out infinite;
    border-color: rgba(255,255,255,.82);
}

@keyframes serviceSlide {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
}

@keyframes miniServiceBlink {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.32); }
}

@keyframes servicePulse {
    0%, 100% { box-shadow: 0 18px 38px var(--mini-glow); }
    50% { box-shadow: 0 20px 48px rgba(247, 165, 33, .34); }
}

@keyframes serviceCategoryBlink {
    0%, 100% { opacity: 1; text-shadow: none; }
    50% { opacity: .58; text-shadow: 0 0 14px rgba(247, 165, 33, .55); }
}

.about-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(15, 180, 200, .09), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(247, 165, 33, .12), transparent 24%),
        linear-gradient(180deg, #fff, #f7fbff);
}

.image-panel {
    width: 100%;
    min-height: 520px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 82% 18%, rgba(247, 165, 33, .42), transparent 26%),
        linear-gradient(135deg, rgba(6, 29, 70, .94), rgba(11, 94, 215, .82), rgba(15, 180, 200, .72)),
        url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1500&q=88") center/cover;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(6, 29, 70, .18);
}

.image-panel::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
}

.image-panel::after {
    content: "";
    position: absolute;
    right: -74px;
    bottom: -92px;
    width: 230px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 34px solid rgba(255,255,255,.12);
}

.image-panel > i {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    font-size: 5.4rem;
    color: rgba(255,255,255,.96);
    filter: drop-shadow(0 18px 30px rgba(0,0,0,.22));
    position: relative;
    z-index: 1;
}
.image-panel-card {
    position: absolute;
    right: 22px;
    background: rgba(255,255,255,.95);
    border-radius: 8px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 2px 10px;
    font-weight: 800;
    color: var(--blue-dark);
    box-shadow: 0 18px 34px rgba(0,0,0,.14);
    min-width: 218px;
    z-index: 2;
}
.image-panel-card i {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-size: 1.2rem;
}
.image-panel-card small {
    color: var(--muted);
    font-weight: 750;
    line-height: 1.25;
    max-width: 150px;
}
.image-panel-card.card-one { top: 26px; }
.image-panel-card.card-two { bottom: 36px; right: 42px; }
.image-panel-card.card-two i { background: linear-gradient(135deg, #f97316, #f59e0b); }
.image-panel-card.card-three {
    left: 24px;
    top: 118px;
    right: auto;
}
.image-panel-card.card-three i { background: linear-gradient(135deg, #db2777, #7c3aed); }
.experience {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--orange), var(--cyan)) border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 18px;
    display: grid;
    max-width: 170px;
    box-shadow: 0 20px 40px rgba(0,0,0,.16);
    z-index: 2;
}

.experience strong { font-size: 3rem; color: var(--blue); line-height: 1; }
.experience span { font-weight: 800; }

.check-card, .service-card, .case-card, .price-card, .review-card, .blog-card, .form-panel, .sidebar-card, .thank-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.about-content {
    width: 100%;
    min-height: 520px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(223, 231, 242, .9);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 18px 42px rgba(6, 29, 70, .07);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.about-content h3 {
    font-size: 1.32rem;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 1rem;
}

.check-card {
    --check-a: var(--blue);
    --check-b: var(--cyan);
    display: grid;
    gap: 7px;
    height: 100%;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--check-a), var(--check-b)) border-box;
    border: 1px solid transparent;
}
.check-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 10%, rgba(11, 94, 215, .1), transparent 34%);
    pointer-events: none;
}
.check-card > * {
    position: relative;
}
.check-card i {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--check-a), var(--check-b));
    font-size: 1.45rem;
}
.check-card span { color: var(--muted); }
.check-card-blue { --check-a: #2563eb; --check-b: #06b6d4; }
.check-card-orange { --check-a: #f97316; --check-b: #db2777; }

.about-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 20px;
}

.about-mini-stats div {
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 14px 28px rgba(11, 94, 215, .14);
}

.about-mini-stats div:nth-child(2) {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.about-mini-stats div:nth-child(3) {
    background: linear-gradient(135deg, #16a34a, #14b8a6);
}

.about-mini-stats strong,
.about-mini-stats span {
    display: block;
}

.about-mini-stats strong {
    font-size: 1.45rem;
    line-height: 1;
}

.about-mini-stats span {
    font-weight: 800;
    font-size: .88rem;
    opacity: .94;
}

.stats-band {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff;
    padding: 48px 0;
}

.stats-band strong { display: block; font-size: 3rem; font-weight: 900; }
.stats-band span { font-weight: 700; }

.service-card {
    --service-a: var(--blue);
    --service-b: var(--cyan);
    --service-soft: rgba(11, 94, 215, .09);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 12%, var(--service-soft), transparent 34%);
    pointer-events: none;
}

.service-card > * {
    position: relative;
}

.service-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--service-a), var(--service-b)) border-box;
    border: 1px solid transparent;
    color: var(--service-a);
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 16px 30px var(--service-soft);
}

.service-icon i {
    line-height: 1;
}

.service-card h3 { font-size: 1.35rem; }
.service-card a { font-weight: 800; color: var(--service-a); }
.service-card:hover .service-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--service-a), var(--service-b));
}
.service-card-blue { --service-a: #2563eb; --service-b: #06b6d4; --service-soft: rgba(37, 99, 235, .12); }
.service-card-orange { --service-a: #f97316; --service-b: #f59e0b; --service-soft: rgba(249, 115, 22, .13); }
.service-card-green { --service-a: #16a34a; --service-b: #14b8a6; --service-soft: rgba(22, 163, 74, .12); }
.service-card-pink { --service-a: #db2777; --service-b: #7c3aed; --service-soft: rgba(219, 39, 119, .12); }
.service-card-cyan { --service-a: #0891b2; --service-b: #2563eb; --service-soft: rgba(8, 145, 178, .12); }
.service-card-gold { --service-a: #ca8a04; --service-b: #ea580c; --service-soft: rgba(202, 138, 4, .14); }
.service-card, .price-card, .case-card, .review-card, .blog-card {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover, .price-card:hover, .case-card:hover, .review-card:hover, .blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 94, 215, .24);
    box-shadow: 0 24px 54px rgba(6, 29, 70, .13);
}
.video-box {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #061d46;
    overflow: hidden;
    box-shadow: 0 24px 54px rgba(6, 29, 70, .18);
}

.video-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.bg-dark { background: var(--blue-dark) !important; }
.bg-dark h2, .bg-dark p { color: #fff; }
.reason-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: 24px; min-height: 142px; }
.reason-card i { color: var(--orange); font-size: 2rem; }
.reason-card h3 { color: #fff; font-size: 1.15rem; margin-top: 14px; }

.case-card h4 { font-size: 1.05rem; color: var(--blue); margin-top: 18px; }
.case-card ul, .price-card ul, .content-list { padding-left: 20px; color: var(--muted); }
.price-card { display: flex; flex-direction: column; }
.price-card h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.price-card h3::before {
    content: "\f058";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--orange);
}
.price-card .price { font-size: 2rem; color: var(--blue); font-weight: 900; margin-bottom: 18px; }
.price-card ul { flex: 1; }
.price-card li { margin-bottom: 8px; }
.pill-card, .feature-tile {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    overflow-wrap: anywhere;
}

.pill-card i, .feature-tile i { color: var(--orange); font-size: 1.4rem; }
.cta-card, .contact-band {
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 12%, rgba(247, 165, 33, .34), transparent 24%),
        linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: #fff;
    padding: 42px;
}

.cta-card h2, .cta-card p, .contact-band h2, .contact-band p { color: #fff; }
.industry-grid, .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

.industry-grid div, .partner-logo {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    min-height: 90px;
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 800;
    transition: transform .2s ease, border-color .2s ease;
}

.industry-grid div {
    --industry-a: var(--blue);
    --industry-b: var(--cyan);
    --industry-glow: rgba(11, 94, 215, .14);
    position: relative;
    min-height: 132px;
    gap: 12px;
    overflow: hidden;
    align-content: center;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--industry-a), var(--industry-b)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 14px 30px rgba(6, 29, 70, .07);
}

.industry-grid div::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 86% 14%, var(--industry-glow), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.26), rgba(255,255,255,0));
    pointer-events: none;
}

.industry-grid div:nth-child(1) { --industry-a: #2563eb; --industry-b: #06b6d4; --industry-glow: rgba(37, 99, 235, .14); }
.industry-grid div:nth-child(2) { --industry-a: #f97316; --industry-b: #f59e0b; --industry-glow: rgba(249, 115, 22, .15); }
.industry-grid div:nth-child(3) { --industry-a: #db2777; --industry-b: #f43f5e; --industry-glow: rgba(219, 39, 119, .14); }
.industry-grid div:nth-child(4) { --industry-a: #16a34a; --industry-b: #14b8a6; --industry-glow: rgba(22, 163, 74, .14); }
.industry-grid div:nth-child(5) { --industry-a: #7c3aed; --industry-b: #2563eb; --industry-glow: rgba(124, 58, 237, .14); }
.industry-grid div:nth-child(6) { --industry-a: #ea580c; --industry-b: #ca8a04; --industry-glow: rgba(234, 88, 12, .14); }
.industry-grid div:nth-child(7) { --industry-a: #0f766e; --industry-b: #22c55e; --industry-glow: rgba(15, 118, 110, .14); }
.industry-grid div:nth-child(8) { --industry-a: #1d4ed8; --industry-b: #64748b; --industry-glow: rgba(29, 78, 216, .14); }
.industry-grid div:nth-child(9) { --industry-a: #ef4444; --industry-b: #f97316; --industry-glow: rgba(239, 68, 68, .14); }
.industry-grid div:nth-child(10) { --industry-a: #0891b2; --industry-b: #4f46e5; --industry-glow: rgba(8, 145, 178, .14); }
.industry-grid div:nth-child(11) { --industry-a: #0284c7; --industry-b: #0d9488; --industry-glow: rgba(2, 132, 199, .14); }
.industry-grid div:nth-child(12) { --industry-a: #9333ea; --industry-b: #e11d48; --industry-glow: rgba(147, 51, 234, .14); }

.tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tech-card {
    --tech-a: var(--blue);
    --tech-b: var(--cyan);
    --tech-glow: rgba(11, 94, 215, .16);
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--tech-a), var(--tech-b)) border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    min-height: 188px;
    padding: 24px 18px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0 18px 42px rgba(6, 29, 70, .09);
    transition: transform .22s ease, box-shadow .22s ease;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 86% 12%, var(--tech-glow), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,0));
    pointer-events: none;
}

.tech-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 112px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 18px solid var(--tech-glow);
    opacity: .65;
}

.tech-card i {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--tech-a), var(--tech-b));
    font-size: 2.08rem;
    box-shadow: 0 16px 30px var(--tech-glow);
    position: relative;
    z-index: 1;
}

.tech-card strong {
    color: var(--blue-dark);
    font-size: 1.12rem;
    position: relative;
    z-index: 1;
}

.tech-card span {
    color: var(--muted);
    font-weight: 700;
    font-size: .92rem;
    position: relative;
    z-index: 1;
}

.tech-card:nth-child(1) { --tech-a: #f97316; --tech-b: #ef4444; --tech-glow: rgba(249, 115, 22, .17); }
.tech-card:nth-child(2) { --tech-a: #2563eb; --tech-b: #06b6d4; --tech-glow: rgba(37, 99, 235, .17); }
.tech-card:nth-child(3) { --tech-a: #7c3aed; --tech-b: #db2777; --tech-glow: rgba(124, 58, 237, .16); }
.tech-card:nth-child(4) { --tech-a: #0f766e; --tech-b: #16a34a; --tech-glow: rgba(15, 118, 110, .16); }
.tech-card:nth-child(5) { --tech-a: #ea580c; --tech-b: #ca8a04; --tech-glow: rgba(234, 88, 12, .17); }
.tech-card:nth-child(6) { --tech-a: #1d4ed8; --tech-b: #0ea5e9; --tech-glow: rgba(29, 78, 216, .16); }
.tech-card:nth-child(7) { --tech-a: #db2777; --tech-b: #f43f5e; --tech-glow: rgba(219, 39, 119, .16); }
.tech-card:nth-child(8) { --tech-a: #16a34a; --tech-b: #22c55e; --tech-glow: rgba(22, 163, 74, .16); }

.partner-slider {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
}

.partner-slider::before,
.partner-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 92px;
    z-index: 2;
    pointer-events: none;
}

.partner-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--soft), rgba(244, 248, 255, 0));
}

.partner-slider::after {
    right: 0;
    background: linear-gradient(270deg, var(--soft), rgba(244, 248, 255, 0));
}

.partner-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: partnerSlide 34s linear infinite;
}

.partner-slider:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo {
    gap: 10px;
    flex: 0 0 180px;
    min-width: 180px;
    min-height: 112px;
    box-shadow: 0 16px 34px rgba(6, 29, 70, .08);
}

.partner-logo img {
    max-width: 112px;
    height: 48px;
    object-fit: contain;
}

.partner-logo span {
    color: var(--blue-dark);
    font-size: .92rem;
}

.industry-grid div:hover, .partner-logo:hover { transform: translateY(-4px); border-color: rgba(247, 165, 33, .55); }
.industry-grid div:hover {
    box-shadow: 0 22px 46px var(--industry-glow);
}
.tech-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px var(--tech-glow); }
.tech-card:hover i {
    transform: scale(1.05);
}
.industry-grid i {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--industry-a), var(--industry-b));
    font-size: 1.6rem;
    box-shadow: 0 14px 26px var(--industry-glow);
}

.industry-grid span {
    position: relative;
    color: var(--blue-dark);
    line-height: 1.25;
}

@keyframes partnerSlide {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 9px)); }
}
.enquiry-form {
    background: #fff;
    border-radius: 8px;
    padding: 28px;
}

.skill { margin-bottom: 20px; }
.skill > div:first-child { display: flex; justify-content: space-between; font-weight: 800; margin-bottom: 8px; }
.progress { height: 12px; background: var(--line); border-radius: 99px; }
.progress-bar { background: var(--orange); }
.accordion-button { font-weight: 800; color: var(--blue-dark); }
.review-card {
    --review-a: var(--blue);
    --review-b: var(--cyan);
    --review-glow: rgba(11, 94, 215, .16);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 250px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--review-a), var(--review-b)) border-box;
    border: 1px solid transparent;
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 8%, var(--review-glow), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,0));
    pointer-events: none;
}

.review-card p,
.review-card .review-top,
.review-card .review-author {
    position: relative;
}

.review-card p {
    flex: 1;
    margin: 0;
    color: #3f4d63;
    font-weight: 650;
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.review-mark {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--review-a), var(--review-b));
    box-shadow: 0 14px 28px var(--review-glow);
}

.review-stars {
    color: #f6b51e;
    display: inline-flex;
    gap: 3px;
    font-size: .92rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(102, 112, 133, .16);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--review-a), var(--review-b));
}

.review-author strong,
.review-author small {
    display: block;
}

.review-author strong {
    color: var(--blue-dark);
    line-height: 1.2;
}

.review-author small {
    color: var(--muted);
    font-weight: 700;
}

.review-card-1 { --review-a: #2563eb; --review-b: #06b6d4; --review-glow: rgba(37, 99, 235, .16); }
.review-card-2 { --review-a: #f97316; --review-b: #e11d48; --review-glow: rgba(249, 115, 22, .16); }
.review-card-3 { --review-a: #16a34a; --review-b: #14b8a6; --review-glow: rgba(22, 163, 74, .16); }
.review-card-4 { --review-a: #7c3aed; --review-b: #db2777; --review-glow: rgba(124, 58, 237, .16); }
.review-card-5 { --review-a: #0f766e; --review-b: #0ea5e9; --review-glow: rgba(15, 118, 110, .16); }
.review-card-6 { --review-a: #ca8a04; --review-b: #ea580c; --review-glow: rgba(202, 138, 4, .18); }

.project-testimonials {
    background:
        linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.84)),
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, .18), transparent 28%),
        radial-gradient(circle at 90% 86%, rgba(249, 115, 22, .2), transparent 30%),
        #f5f8ff;
    position: relative;
    overflow: hidden;
}

.project-collection-summary {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.project-collection-summary span {
    padding: 9px 14px;
    border: 1px solid rgba(11, 94, 215, .14);
    border-radius: 99px;
    color: #475467;
    background: rgba(255,255,255,.84);
    box-shadow: 0 8px 20px rgba(6, 29, 70, .06);
    font-size: .84rem;
    font-weight: 700;
}

.project-collection-summary span:first-child i { color: #16a34a; }
.project-collection-summary span:last-child i { color: #7c3aed; }
.project-collection-summary i { margin-right: 6px; }
.project-collection-summary strong { color: var(--blue-dark); }

.project-testimonial-card {
    --project-a: #2563eb;
    --project-b: #06b6d4;
    --project-glow: rgba(37, 99, 235, .15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    border-radius: 22px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--project-a), var(--project-b)) border-box;
    box-shadow: 0 22px 55px rgba(6, 29, 70, .12);
    transition: transform .22s ease, box-shadow .22s ease;
}

.project-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px var(--project-glow);
}

.project-card-brand,
.project-card-title,
.project-delivered,
.project-link {
    display: flex;
    align-items: center;
}

.project-card-brand {
    min-height: 170px;
    padding: 30px;
    position: relative;
    justify-content: space-between;
    gap: 20px;
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.26), transparent 28%),
        linear-gradient(135deg, var(--project-a), var(--project-b));
}

.project-card-brand::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -72px;
    width: 190px;
    height: 190px;
    border: 28px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.project-number {
    position: absolute;
    top: 14px;
    right: 22px;
    color: rgba(255,255,255,.16);
    font-size: 5.4rem;
    font-weight: 900;
    line-height: 1;
}

.project-logo-wrap {
    width: min(285px, 67%);
    min-height: 92px;
    padding: 17px 22px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: #fff;
    box-shadow: 0 18px 42px rgba(6, 29, 70, .2);
    position: relative;
    z-index: 1;
}

.project-logo-wrap img {
    display: block;
    width: 100%;
    height: 65px;
    object-fit: contain;
}

.project-delivered {
    gap: 7px;
    padding: 9px 13px;
    border-radius: 99px;
    color: #fff;
    background: rgba(6, 29, 70, .28);
    border: 1px solid rgba(255,255,255,.28);
    backdrop-filter: blur(7px);
    font-size: .82rem;
    font-weight: 850;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.project-card-body {
    padding: 30px;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 18px;
}

.project-card-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
}

.project-card-title span {
    color: var(--project-a);
    font-size: .82rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-card-title h3 {
    margin: 0;
    color: var(--blue-dark);
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 850;
}

.project-summary {
    margin: 0;
    padding: 16px 18px;
    border-left: 4px solid var(--project-a);
    border-radius: 0 10px 10px 0;
    background: linear-gradient(135deg, var(--project-glow), rgba(255,255,255,.7));
    color: #344054;
    font-weight: 650;
}

.project-details {
    flex: 1;
}

.project-details > strong {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--blue-dark);
}

.project-details > strong i {
    color: var(--project-a);
}

.project-details ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-details li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--muted);
}

.project-details li i {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--project-a);
    background: var(--project-glow);
    font-size: .78rem;
    font-weight: 900;
}

.project-card-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.project-card-footer > span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.project-card-footer > span i {
    color: var(--project-a);
    margin-right: 5px;
}

.project-link {
    gap: 8px;
    padding: 10px 14px;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--project-a), var(--project-b));
    font-weight: 850;
    white-space: nowrap;
    box-shadow: 0 10px 22px var(--project-glow);
}

.project-link:hover {
    color: #fff;
    filter: brightness(.92);
}

.project-card-blue { --project-a: #2563eb; --project-b: #06b6d4; --project-glow: rgba(37, 99, 235, .14); }
.project-card-orange { --project-a: #ea580c; --project-b: #f59e0b; --project-glow: rgba(234, 88, 12, .14); }
.project-card-green { --project-a: #15803d; --project-b: #14b8a6; --project-glow: rgba(21, 128, 61, .14); }

.concept-projects {
    margin-top: 46px;
    padding: 38px;
    border: 1px solid rgba(11, 94, 215, .12);
    border-radius: 24px;
    background:
        linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.78)),
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, .13), transparent 28%),
        radial-gradient(circle at 92% 90%, rgba(249, 115, 22, .14), transparent 30%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 20px 48px rgba(6, 29, 70, .06);
}

.concept-projects-heading {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
    align-items: end;
    gap: 32px;
}

.concept-projects-heading h3 {
    margin: 6px 0 0;
    color: var(--blue-dark);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 850;
}

.concept-projects-heading p {
    margin: 0;
    color: var(--muted);
}

.concept-project-card {
    --concept-a: #2563eb;
    --concept-b: #06b6d4;
    --concept-soft: rgba(37, 99, 235, .1);
    position: relative;
    overflow: hidden;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    border-radius: 18px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--concept-a), var(--concept-b)) border-box;
    box-shadow: 0 18px 42px rgba(6, 29, 70, .09);
    transition: transform .22s ease, box-shadow .22s ease;
}

.concept-project-card::after {
    content: "";
    position: absolute;
    top: -48px;
    right: -48px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--concept-soft);
    pointer-events: none;
}

.concept-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px var(--concept-soft);
}

.concept-card-top {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.concept-logo {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.55rem;
    background: linear-gradient(135deg, var(--concept-a), var(--concept-b));
    box-shadow: 0 14px 28px var(--concept-soft);
}

.concept-status {
    padding: 7px 10px;
    border-radius: 99px;
    color: var(--concept-a);
    background: var(--concept-soft);
    font-size: .75rem;
    font-weight: 850;
}

.concept-type {
    color: var(--concept-a);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.concept-project-card h3 {
    margin: 5px 0 8px;
    color: var(--blue-dark);
    font-size: 1.55rem;
    font-weight: 850;
}

.concept-project-card > p {
    flex: 1;
    margin-top: 10px;
    margin-bottom: 20px;
    color: var(--muted);
}

.concept-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.concept-features span {
    padding: 7px 9px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: #475467;
    background: #f8fafc;
    font-size: .78rem;
    font-weight: 700;
}

.concept-features i {
    margin-right: 4px;
    color: var(--concept-a);
}

.concept-delivery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .78rem;
    font-weight: 750;
}

.concept-delivery-footer strong {
    color: var(--concept-a);
    white-space: nowrap;
}

.concept-delivery-footer i {
    margin-right: 5px;
}

.concept-blue { --concept-a: #2563eb; --concept-b: #06b6d4; --concept-soft: rgba(37, 99, 235, .11); }
.concept-rose { --concept-a: #e11d48; --concept-b: #f97316; --concept-soft: rgba(225, 29, 72, .1); }
.concept-purple { --concept-a: #7c3aed; --concept-b: #2563eb; --concept-soft: rgba(124, 58, 237, .1); }
.concept-green { --concept-a: #15803d; --concept-b: #14b8a6; --concept-soft: rgba(21, 128, 61, .1); }
.concept-amber { --concept-a: #d97706; --concept-b: #ef4444; --concept-soft: rgba(217, 119, 6, .11); }

.blog-card {
    --blog-a: var(--blue);
    --blog-b: var(--cyan);
    --blog-glow: rgba(11, 94, 215, .16);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.blog-visual {
    min-height: 150px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    background:
        radial-gradient(circle at 84% 18%, rgba(255,255,255,.28), transparent 30%),
        linear-gradient(135deg, var(--blog-a), var(--blog-b));
    position: relative;
    overflow: hidden;
}

.blog-visual::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -58px;
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 24px solid rgba(255,255,255,.14);
}

.blog-icon {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
    font-size: 2rem;
    box-shadow: 0 18px 34px rgba(0,0,0,.12);
    position: relative;
    z-index: 1;
}

.blog-category {
    position: relative;
    z-index: 1;
    color: #172033;
    background: #fff;
    border-radius: 6px;
    padding: 7px 12px;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.blog-body {
    padding: 26px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.blog-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blog-a);
    font-weight: 800;
    margin-bottom: 12px;
}

.blog-meta small {
    color: var(--muted);
    font-weight: 800;
}

.blog-card h3 {
    font-size: 1.35rem;
    line-height: 1.25;
}

.blog-card p {
    flex: 1;
}

.blog-card a {
    color: var(--blog-a);
    font-weight: 900;
}

.blog-card:hover {
    box-shadow: 0 26px 58px var(--blog-glow);
}

.blog-card-blue { --blog-a: #2563eb; --blog-b: #06b6d4; --blog-glow: rgba(37, 99, 235, .18); }
.blog-card-orange { --blog-a: #f97316; --blog-b: #db2777; --blog-glow: rgba(249, 115, 22, .18); }
.blog-card-green { --blog-a: #16a34a; --blog-b: #0f766e; --blog-glow: rgba(22, 163, 74, .18); }
.blog-card-purple { --blog-a: #7c3aed; --blog-b: #2563eb; --blog-glow: rgba(124, 58, 237, .18); }
.blog-card-teal { --blog-a: #0f766e; --blog-b: #0891b2; --blog-glow: rgba(15, 118, 110, .18); }
.blog-card-red { --blog-a: #dc2626; --blog-b: #f97316; --blog-glow: rgba(220, 38, 38, .16); }

.blog-card {
    border: 0;
    box-shadow: 0 18px 42px rgba(6, 29, 70, .1);
}

.blog-visual {
    min-height: 230px;
    align-items: center;
    justify-content: center;
}

.blog-icon {
    width: 92px;
    height: 92px;
    font-size: 2.6rem;
}

.blog-visual .blog-category {
    position: absolute;
    left: 22px;
    bottom: 22px;
    color: #fff;
    background: rgba(6, 29, 70, .9);
}
.blog-visual.has-blog-image {
    padding: 0;
    overflow: hidden;
    background: #061d46;
}
.blog-visual.has-blog-image::after {
    display: none;
}
.blog-visual.has-blog-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-visual.has-blog-image .blog-category {
    z-index: 1;
    background: rgba(6, 29, 70, .9);
}

.blog-body {
    padding: 28px;
}

.blog-type {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    font-size: .82rem;
    margin-bottom: 8px;
}

.blog-card h3 a {
    color: var(--blue-dark);
}

.blog-card h3 a:hover {
    color: var(--blog-a);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 14px;
    border-top: 1px solid rgba(102, 112, 133, .16);
    font-weight: 850;
    color: var(--blue-dark);
}

.blog-share a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blog-a), var(--blog-b));
    font-size: .86rem;
}

.blog-share a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.blog-detail {
    --blog-a: var(--blue);
    --blog-b: var(--cyan);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-detail-blue { --blog-a: #2563eb; --blog-b: #06b6d4; }
.blog-detail-orange { --blog-a: #f97316; --blog-b: #db2777; }
.blog-detail-green { --blog-a: #16a34a; --blog-b: #0f766e; }
.blog-detail-purple { --blog-a: #7c3aed; --blog-b: #2563eb; }
.blog-detail-teal { --blog-a: #0f766e; --blog-b: #0891b2; }
.blog-detail-red { --blog-a: #dc2626; --blog-b: #f97316; }

.blog-detail-media {
    min-height: 310px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        radial-gradient(circle at 82% 20%, rgba(255,255,255,.24), transparent 28%),
        linear-gradient(135deg, var(--blog-a), var(--blog-b));
    overflow: hidden;
}

.blog-detail-media::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -88px;
    width: 240px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 34px solid rgba(255,255,255,.14);
}

.blog-detail-icon {
    width: 118px;
    height: 118px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.26);
    font-size: 3.2rem;
    position: relative;
    z-index: 1;
}

.blog-detail-media .blog-category {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 1;
}
.blog-detail-media.has-blog-image {
    padding: 0;
    overflow: hidden;
    background: #061d46;
}
.blog-detail-media.has-blog-image::after {
    display: none;
}
.blog-detail-media.has-blog-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-detail-media.has-blog-image .blog-category {
    color: #fff;
    background: rgba(6, 29, 70, .9);
}

.blog-detail-content {
    padding: 34px;
}

.blog-detail-content h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    margin-top: 28px;
}

.inner-hero {
    background: linear-gradient(135deg, rgba(8, 20, 55, .96), rgba(37, 99, 235, .78)), url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2000&q=88") center/cover;
    padding: 96px 0;
    color: #fff;
}

.inner-hero span { color: var(--orange); font-weight: 800; text-transform: uppercase; }
.inner-hero h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 900; }
.breadcrumb a, .breadcrumb .active { color: #fff; }
.sidebar-card { margin-bottom: 24px; }
.sidebar-card a { display: block; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.sidebar-card a:hover { color: var(--blue); }
.sidebar-card.accent { background: var(--blue); color: #fff; }
.sidebar-card.accent h3, .sidebar-card.accent p { color: #fff; }

.export-workshop {
    border: 1px solid rgba(11, 94, 215, .14);
    border-radius: 8px;
    padding: 24px;
    max-width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 8%, rgba(247, 165, 33, .16), transparent 28%),
        linear-gradient(180deg, #fff, #f7fbff);
    box-shadow: 0 22px 54px rgba(6, 29, 70, .08);
}
.export-service-detail {
    padding-bottom: 150px;
}
.export-service-detail .container,
.export-service-detail .row,
.export-service-detail [class*="col-"] {
    min-width: 0;
}
.export-service-detail .service-footer-content {
    display: none;
}
.workshop-eyebrow { color: var(--blue); }
.workshop-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, .9fr);
    gap: 18px;
    align-items: start;
    margin: 14px 0 18px;
    max-width: 100%;
}
.workshop-hero > *,
.workshop-register,
.workshop-meta,
.workshop-offer-footer,
.export-sticky-offer > * {
    min-width: 0;
}
.workshop-hero-copy p:last-child { margin-bottom: 0; }
.workshop-hero-media {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 46px rgba(6, 29, 70, .16);
}
.workshop-hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    max-height: 360px;
    object-fit: cover;
}
.workshop-alert-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin-bottom: 18px;
}
.workshop-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(11, 94, 215, .12);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin: 0;
}
.workshop-meta div {
    display: grid;
    place-items: center;
    gap: 6px;
    text-align: center;
    border-right: 1px solid rgba(11, 94, 215, .12);
    border-radius: 0;
    padding: 14px 10px;
    background: #fff;
}
.workshop-meta div:last-child { border-right: 0; }
.workshop-meta i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--orange-deep);
    background: #f8fafc;
    border: 1px solid rgba(11, 94, 215, .1);
    box-shadow: inset 0 0 0 4px rgba(247, 165, 33, .08);
}
.workshop-meta span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.workshop-meta strong { color: var(--ink); font-size: .88rem; line-height: 1.2; }
.workshop-register {
    display: grid;
    gap: 14px;
    border-radius: 8px;
    padding: 18px;
    scroll-margin-top: 96px;
    background:
        linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.78)),
        linear-gradient(90deg, rgba(11, 94, 215, .09) 1px, transparent 1px),
        linear-gradient(180deg, rgba(11, 94, 215, .09) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
    border: 1px solid rgba(247, 165, 33, .28);
    color: var(--ink);
    box-shadow: 0 24px 60px rgba(6, 29, 70, .1);
}
.workshop-offer-header {
    text-align: center;
}
.workshop-offer-header span {
    display: inline-block;
    color: #b91c1c;
    background: #fff2f2;
    border: 1px solid rgba(185, 28, 28, .16);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.workshop-offer-header h3 {
    max-width: 560px;
    margin: 0 auto;
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    color: var(--ink);
}
.workshop-offer-footer {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(150px, .65fr) minmax(170px, auto);
    gap: 12px;
    align-items: center;
    margin: 0 -18px -18px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    border-radius: 0 0 8px 8px;
}
.workshop-register strong,
.workshop-register span { display: block; }
.workshop-price span,
.workshop-urgency span { color: rgba(255,255,255,.9); font-weight: 800; }
.workshop-price strong {
    color: #fff;
    font-size: clamp(1.6rem, 3.8vw, 2.35rem);
    line-height: 1;
    font-weight: 950;
}
.workshop-urgency strong {
    color: #fff;
    font-size: .95rem;
    margin-top: 2px;
}
.workshop-progress {
    height: 7px;
    margin-top: 6px;
    background: rgba(255,255,255,.28);
    border-radius: 999px;
    overflow: hidden;
}
.workshop-progress span {
    display: block;
    width: 72%;
    height: 100%;
    background: #fff;
    border-radius: inherit;
}
.workshop-register .btn {
    min-width: 170px;
    min-height: 44px;
    white-space: nowrap;
    border-radius: 999px;
    color: #ea580c;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 16px 34px rgba(6, 29, 70, .18);
}
.workshop-register .btn:hover {
    color: var(--blue-dark);
    background: #fff7ed;
    border-color: #fff7ed;
}
.workshop-payment-message {
    min-height: 24px;
    margin-top: 14px;
    font-weight: 800;
    color: var(--blue);
}
.workshop-payment-message.is-error { color: #dc2626; }
.workshop-payment-modal .modal-title { font-size: 1.35rem; margin: 0; }
.export-sticky-offer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1035;
    display: grid;
    grid-template-columns: minmax(140px, .8fr) minmax(170px, 1fr) minmax(180px, auto);
    gap: 14px;
    align-items: center;
    padding: 10px max(18px, calc((100vw - 1140px) / 2));
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    box-shadow: 0 -18px 44px rgba(6, 29, 70, .2);
    max-width: 100vw;
    box-sizing: border-box;
}
.export-sticky-offer span,
.export-sticky-offer strong {
    display: block;
    color: #fff;
}
.export-sticky-copy span,
.export-sticky-price span {
    color: rgba(255,255,255,.86);
    font-weight: 800;
    line-height: 1.2;
}
.export-sticky-copy strong {
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    line-height: 1;
    font-weight: 950;
}
.export-sticky-price {
    text-align: center;
}
.export-sticky-price strong {
    font-size: clamp(1.05rem, 2.1vw, 1.4rem);
    line-height: 1.05;
    font-weight: 950;
}
.export-sticky-offer .btn {
    min-height: 44px;
    border-radius: 999px;
    color: #ea580c;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 14px 28px rgba(6, 29, 70, .18);
}
.export-sticky-offer .btn:hover {
    color: var(--blue-dark);
    background: #fff7ed;
    border-color: #fff7ed;
}

.contact-info { display: grid; gap: 16px; margin-top: 28px; }
.contact-info div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 4px 14px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
}

.contact-info i { grid-row: span 2; color: var(--orange); font-size: 1.8rem; }
.contact-info .icon-badge {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
    color: #fff;
}
.contact-info span { color: var(--muted); }
.contact-info strong { word-break: break-word; }
.payment-note { border: 1px solid var(--line); border-radius: 8px; padding: 20px; display: flex; gap: 12px; align-items: center; font-weight: 800; }
.payment-note i { color: var(--blue); font-size: 2rem; }
.thank-you { min-height: 65vh; display: grid; place-items: center; }
.thank-card { max-width: 680px; margin: auto; text-align: center; }
.thank-card > i { color: #1fbf75; font-size: 5rem; }

.site-footer {
    background:
        radial-gradient(circle at 8% 16%, rgba(15, 180, 200, .2), transparent 24%),
        linear-gradient(135deg, #061936, #071f49 55%, #0a2f66);
    color: #dce8ff;
    padding: 70px 0 28px;
}

.site-footer h4, .site-footer h5 { color: #fff; font-weight: 850; }
.site-footer p, .site-footer li { color: #dce8ff; }
.site-footer a { display: block; color: #dce8ff; margin-bottom: 9px; }
.site-footer a:hover { color: var(--orange); }
.contact-list { list-style: none; padding: 0; display: grid; gap: 12px; }
.contact-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
}
.contact-list .icon-badge {
    width: 34px;
    height: 34px;
    font-size: 1rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.16);
    margin-top: 42px;
    padding-top: 22px;
    color: #b9c9e8;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 14px 22px;
}
.footer-copy { min-width: 0; }
.footer-credit {
    min-width: 0;
    text-align: center;
}
.site-footer .footer-credit a {
    display: inline;
    margin-bottom: 0;
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}
.site-footer .footer-bottom .socials { gap: 12px; }
.site-footer .footer-bottom .socials a {
    display: inline-grid;
    width: 30px;
    height: 30px;
    margin: 0;
    border-radius: 50%;
    color: #dce8ff;
    background: transparent;
    border: 1px solid rgba(220, 232, 255, .32);
    box-shadow: none;
}
.site-footer .footer-bottom .socials a:nth-of-type(1),
.site-footer .footer-bottom .socials a:nth-of-type(2) {
    background: transparent;
}
.site-footer .footer-bottom .socials a:hover {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.55);
    filter: none;
}
.floating-call, .floating-whatsapp {
    position: fixed;
    right: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 20;
    box-shadow: 0 14px 30px rgba(0,0,0,.25);
    transition: transform .2s ease;
}

.floating-call { bottom: 84px; background: var(--blue); }
.floating-whatsapp { bottom: 24px; background: #25d366; }
.floating-call:hover, .floating-whatsapp:hover { transform: translateY(-3px); color: #fff; }

@media (max-width: 991px) {
    .navbar { position: sticky; top: 0; }
    .navbar-collapse {
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        padding: 12px 0 18px;
    }
    .navbar-nav { align-items: stretch !important; }
    .navbar .nav-link { padding: 12px 0 !important; font-size: 1rem; }
    .navbar .nav-link::before { left: 0; right: auto; width: 44px; bottom: 4px; }
    .navbar .btn { width: 100%; justify-content: center; display: inline-flex; }
    .hero-slide { min-height: 590px; }
    .section-pad { padding: 72px 0; }
    .service-strip { margin-top: 0; padding-top: 22px; }
    .hover-menu {
        min-width: auto;
        max-height: none;
        overflow: visible;
        box-shadow: none;
        border: 1px solid var(--line);
        padding: 0 !important;
        border-radius: 8px;
    }
    .hover-menu.wide, .hover-menu.compact {
        min-width: auto;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-feature {
        display: none;
    }
    .menu-links,
    .menu-links.two-col {
        display: block;
        padding: 14px;
    }
    .menu-links h6 {
        margin-top: 8px;
    }
    .menu-links .dropdown-item {
        padding: 10px;
    }
    .mega-menu {
        min-width: auto;
        max-height: none;
        overflow: visible;
        box-shadow: none;
        border: 1px solid var(--line);
        padding: 14px !important;
    }
    .mega-menu .row { --bs-gutter-y: .25rem; }
    .mega-menu h6 { margin-top: 12px; margin-bottom: 4px; }
    .mega-menu .dropdown-item { padding: 9px 0; }
    .image-panel { min-height: 420px; }
    .about-content { min-height: auto; }
    .experience { max-width: 210px; }
    .image-panel-card { min-width: 156px; padding: 12px; }
    .image-panel-card.card-three { top: 96px; }
    .site-footer { padding-top: 54px; }
    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .floating-call, .floating-whatsapp { right: 14px; width: 46px; height: 46px; }
    .blog-visual { min-height: 200px; }
    .blog-detail-media { min-height: 260px; }
    .export-workshop { padding: 28px; }
    .workshop-hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    .workshop-hero-media { order: -1; }
    .workshop-hero-media img { max-height: 300px; }
    .workshop-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .workshop-meta div:nth-child(2) { border-right: 0; }
    .workshop-meta div:nth-child(-n+2) { border-bottom: 1px solid rgba(11, 94, 215, .12); }
    .workshop-offer-footer {
        grid-template-columns: minmax(0, .9fr) minmax(130px, .65fr) minmax(160px, auto);
        gap: 10px;
    }
    .workshop-register .btn { width: auto; }
    .export-sticky-offer {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 12px 16px;
    }
    .export-sticky-price { display: none; }
    .export-sticky-offer .btn { min-width: 0; width: min(260px, 100%); }
    .service-category-blink {
        animation: serviceCategoryBlink 1.15s ease-in-out infinite;
    }
    .concept-projects-heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .top-strip { font-size: .86rem; }
    .top-strip .d-flex { justify-content: center; gap: 8px !important; }
    .top-strip .small {
        display: grid !important;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        width: 100%;
    }
    .top-strip .small > span,
    .top-strip .small > a {
        display: grid;
        grid-template-columns: 32px minmax(0, 1fr);
        align-items: center;
        justify-content: center;
        width: min(100%, 350px);
        max-width: 100%;
        text-align: left;
        line-height: 1.35;
        white-space: normal;
    }
    .top-strip .icon-badge {
        margin-right: 0;
        justify-self: center;
    }
    .brand-mark { margin-right: 0; }
    .brand-mark img { width: min(210px, 58vw); max-height: 54px; }
    .section-pad { padding: 54px 0; }
    .hero-content { padding: 56px 0 72px; }
    .hero-content h1 { font-size: clamp(2rem, 11vw, 2.85rem); }
    .hero-content p { font-size: 1rem; max-width: min(100%, 330px); word-break: break-word; }
    .hero-content .btn { width: 100%; }
    .hero-badges strong { flex: 1 1 100%; text-align: center; }
    .hero-slide { min-height: 520px; }
    .carousel-control-prev, .carousel-control-next { display: none; }
    .hero-indicators { left: 12px; margin-bottom: 22px; }
    .cta-card, .contact-band, .enquiry-form, .form-panel, .sidebar-card, .thank-card { padding: 22px; }
    .about-content { padding: 22px; }
    .about-mini-stats { grid-template-columns: 1fr; }
    .image-panel > i { width: 116px; height: 116px; font-size: 3.55rem; }
    .image-panel-card {
        position: relative;
        inset: auto !important;
        justify-self: stretch;
        margin: 6px 18px;
    }
    .image-panel {
        align-content: center;
        gap: 4px;
        padding: 22px 0;
        min-height: auto;
    }
    .experience {
        position: relative;
        left: auto;
        bottom: auto;
        justify-self: center;
        text-align: center;
    }
    .check-card, .service-card, .case-card, .price-card, .review-card, .blog-card { padding: 22px; }
    .project-card-brand {
        min-height: 190px;
        padding: 22px 22px 68px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .project-logo-wrap { width: min(255px, 100%); min-height: 78px; padding: 13px 16px; }
    .project-logo-wrap img { height: 55px; }
    .project-delivered { position: absolute; left: 22px; bottom: 20px; }
    .project-card-body { padding: 24px; }
    .project-card-footer { align-items: stretch; flex-direction: column; }
    .project-link { align-self: flex-start; }
    .concept-projects { margin-top: 36px; padding: 22px; border-radius: 18px; }
    .concept-project-card { padding: 22px; }
    .concept-logo { width: 54px; height: 54px; border-radius: 14px; }
    .mini-service { min-height: 76px; padding: 14px 12px; font-size: .9rem; flex-basis: 190px; min-width: 190px; }
    .mini-service i { width: 42px; height: 42px; flex-basis: 42px; font-size: 1.12rem; }
    .service-slider::before,
    .service-slider::after { width: 36px; }
    .stats-band strong { font-size: 2.25rem; }
    .price-card .price { font-size: 1.55rem; }
    .industry-grid, .tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .industry-grid div, .partner-logo { min-height: 78px; padding: 14px 10px; font-size: .92rem; }
    .partner-slider::before,
    .partner-slider::after { width: 42px; }
    .partner-logo { flex-basis: 152px; min-width: 152px; }
    .tech-card { min-height: 148px; padding: 18px 12px; }
    .tech-card i { width: 54px; height: 54px; font-size: 1.65rem; }
    .blog-card { padding: 0; }
    .blog-body, .blog-detail-content { padding: 22px; }
    .blog-visual { min-height: 178px; }
    .blog-icon { width: 76px; height: 76px; font-size: 2.1rem; }
    .blog-detail-media { min-height: 210px; }
    .blog-detail-icon { width: 86px; height: 86px; font-size: 2.35rem; }
    .partner-logo img { max-width: 96px; height: 40px; }
    .inner-hero { padding: 68px 0; }
    .inner-hero h1 { font-size: clamp(2rem, 11vw, 2.8rem); }
    .export-service-detail {
        padding-bottom: 165px;
    }
    .export-service-detail .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .export-workshop {
        padding: 16px;
        margin-left: 0;
        margin-right: 0;
        border-left: 0;
        border-right: 0;
    }
    .export-workshop h2 { font-size: 1.55rem; }
    .export-workshop h3 { font-size: 1.2rem; }
    .workshop-hero,
    .workshop-alert-list,
    .workshop-meta {
        grid-template-columns: 1fr;
    }
    .workshop-hero { gap: 16px; margin-top: 12px; }
    .workshop-hero-media { order: -1; }
    .workshop-hero-media img { aspect-ratio: 16 / 10; max-height: 220px; }
    .workshop-register { padding: 16px; gap: 14px; }
    .workshop-meta { grid-template-columns: 1fr; }
    .workshop-meta div {
        border-right: 0;
        border-bottom: 1px solid rgba(11, 94, 215, .12);
        padding: 18px 12px;
    }
    .workshop-meta div:last-child { border-bottom: 0; }
    .workshop-offer-footer {
        margin: 0 -16px -16px;
        padding: 12px 16px;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .workshop-register .btn { width: 100%; }
    .export-sticky-offer {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
        padding: 10px 14px;
    }
    .export-sticky-copy strong { font-size: 1.32rem; }
    .export-sticky-offer .btn {
        width: 100%;
        min-height: 48px;
    }
    .contact-info div { grid-template-columns: 38px 1fr; padding: 15px; }
    .floating-call { bottom: 76px; }
    .floating-call, .floating-whatsapp { right: 12px; width: 44px; height: 44px; }
    .top-strip .container { justify-content: center !important; text-align: center; }
}

@media (max-width: 380px) {
    .industry-grid, .tech-grid { grid-template-columns: 1fr; }
    .service-track { gap: 12px; }
    .mini-service { flex-basis: 172px; min-width: 172px; font-size: .82rem; }
    .mini-service i { width: 38px; height: 38px; flex-basis: 38px; }
    .hero-badges { gap: 8px; }
    .hero-badges strong { flex-basis: 100%; }
    .hero-slide { min-height: 540px; }
    .btn-lg { --bs-btn-padding-y: .65rem; --bs-btn-padding-x: .95rem; --bs-btn-font-size: 1rem; }
}

.export-workshop.mt-5 {
    margin-top: 24px !important;
}
.export-workshop {
    padding: 22px;
    scroll-margin-top: 98px;
}
.export-workshop h2 {
    margin: 6px 0 12px;
    font-size: clamp(1.6rem, 3.1vw, 2.25rem);
    line-height: 1.12;
}
.export-workshop h3,
.export-workshop .mt-5 {
    margin-top: 22px !important;
}
.export-workshop h3 {
    margin-bottom: 10px;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.25;
}
.export-workshop p {
    margin-bottom: 10px;
    line-height: 1.52;
}
.export-workshop .lead {
    font-size: clamp(1rem, 1.45vw, 1.12rem);
    line-height: 1.52;
}
.workshop-hero {
    gap: 16px;
    margin: 10px 0 14px;
    align-items: center;
}
.workshop-alert-list {
    gap: 6px 14px;
    margin-bottom: 14px;
}
.export-workshop .content-list li {
    margin-bottom: 7px;
    line-height: 1.42;
}
.export-workshop .row.g-3 {
    --bs-gutter-x: .75rem;
    --bs-gutter-y: .75rem;
}
.export-workshop .feature-tile {
    min-height: 58px;
    padding: 10px 12px;
}
.workshop-meta div {
    gap: 5px;
    padding: 12px 8px;
}
.workshop-meta i {
    width: 34px;
    height: 34px;
}
.workshop-meta span {
    font-size: .68rem;
    letter-spacing: .05em;
}
.workshop-meta strong {
    font-size: .84rem;
}
.workshop-register {
    gap: 12px;
    padding: 16px;
}
.workshop-offer-header span {
    padding: 5px 12px;
    font-size: .68rem;
    margin-bottom: 6px;
}
.workshop-offer-header h3 {
    font-size: clamp(1.08rem, 2.1vw, 1.45rem);
}
.workshop-offer-footer {
    grid-template-columns: minmax(0, .9fr) minmax(130px, .62fr) minmax(155px, auto);
    gap: 10px;
    margin: 0 -16px -16px;
    padding: 12px 16px;
}
.workshop-price strong {
    font-size: clamp(1.42rem, 3.2vw, 2rem);
}
.workshop-urgency span,
.workshop-price span {
    font-size: .82rem;
    line-height: 1.25;
}
.workshop-urgency strong {
    font-size: .9rem;
}
.workshop-register .btn {
    min-width: 150px;
    min-height: 40px;
    padding: .48rem .9rem;
    font-size: .9rem;
}

@media (max-width: 991px) {
    .export-workshop {
        padding: 14px;
    }
    .export-workshop.mt-5 {
        margin-top: 18px !important;
    }
    .export-workshop h2 {
        font-size: clamp(1.42rem, 4.6vw, 1.9rem);
    }
    .export-workshop h3,
    .export-workshop .mt-5 {
        margin-top: 18px !important;
    }
    .export-workshop p {
        margin-bottom: 8px;
    }
    .workshop-hero {
        gap: 10px;
        margin: 8px 0 12px;
    }
    .workshop-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .workshop-meta div {
        border-right: 1px solid rgba(11, 94, 215, .12);
        border-bottom: 1px solid rgba(11, 94, 215, .12);
    }
    .workshop-meta div:nth-child(2n) {
        border-right: 0;
    }
    .workshop-meta div:nth-last-child(-n+2) {
        border-bottom: 0;
    }
    .workshop-offer-footer {
        grid-template-columns: minmax(0, .9fr) minmax(122px, .62fr) minmax(148px, auto);
    }
}

@media (max-width: 575px) {
    .export-workshop {
        padding: 10px;
    }
    .export-workshop.mt-5 {
        margin-top: 10px !important;
    }
    .export-workshop h2 {
        font-size: clamp(1.28rem, 6.5vw, 1.62rem);
    }
    .export-workshop h3 {
        font-size: 1.06rem;
    }
    .export-workshop h3,
    .export-workshop .mt-5 {
        margin-top: 16px !important;
    }
    .export-workshop .lead,
    .export-workshop p {
        font-size: .95rem;
        line-height: 1.45;
    }
    .export-workshop .feature-tile {
        min-height: 52px;
        padding: 9px 10px;
        font-size: .92rem;
    }
    .workshop-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .workshop-meta div {
        border-right: 1px solid rgba(11, 94, 215, .12);
        border-bottom: 1px solid rgba(11, 94, 215, .12);
        padding: 10px 8px;
    }
    .workshop-meta div:nth-child(2n) {
        border-right: 0;
    }
    .workshop-meta div:nth-last-child(-n+2) {
        border-bottom: 0;
    }
    .workshop-register {
        padding: 10px;
        gap: 10px;
    }
    .workshop-offer-footer {
        margin: 0 -10px -10px;
        padding: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .workshop-offer-footer form {
        grid-column: 1 / -1;
    }
    .workshop-progress {
        height: 5px;
    }
    .export-sticky-offer {
        grid-template-columns: minmax(0, 1fr) minmax(145px, auto);
        gap: 8px;
        text-align: left;
        padding: 8px 10px;
    }
    .export-sticky-copy strong {
        font-size: 1rem;
    }
    .export-sticky-offer .btn {
        width: auto;
        min-width: 145px;
        min-height: 40px;
        padding-inline: .75rem;
        font-size: .86rem;
    }
}

@media (max-width: 360px) {
    .workshop-meta,
    .workshop-offer-footer,
    .export-sticky-offer {
        grid-template-columns: 1fr !important;
    }
    .workshop-meta div {
        border-right: 0 !important;
    }
    .workshop-meta div:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(11, 94, 215, .12);
    }
    .workshop-meta div:last-child {
        border-bottom: 0;
    }
    .export-sticky-offer {
        text-align: center;
    }
    .export-sticky-offer .btn {
        width: 100%;
    }
}

.admin-body {
    min-width: 0;
    overflow-x: hidden;
    background: #f8fbff;
}
.admin-auth {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: clamp(24px, 7vw, 72px) 16px;
    background:
        linear-gradient(rgba(255,255,255,.86), rgba(255,255,255,.86)),
        linear-gradient(135deg, rgba(11, 94, 215, .12), rgba(247, 165, 33, .16));
}
.admin-auth-card {
    width: min(100%, 430px);
    padding: clamp(20px, 5vw, 30px);
    border: 1px solid rgba(11, 94, 215, .14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(6, 29, 70, .12);
}
.admin-auth-card .eyebrow {
    word-break: break-word;
}
.admin-auth-card h1,
.admin-page h1 {
    margin: 4px 0 8px;
    color: var(--blue-dark);
}
.admin-auth-card h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.12;
}
.admin-auth-card p {
    margin-bottom: 18px;
}
.admin-form,
.admin-editor {
    display: grid;
    gap: 16px;
}
.admin-form .form-control {
    min-height: 46px;
}
.admin-page {
    min-height: 100vh;
    min-height: 100svh;
    background: #f8fbff;
}
.admin-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
}
.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
.admin-table-wrap,
.admin-editor {
    padding: 22px;
    border: 1px solid rgba(11, 94, 215, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(6, 29, 70, .08);
}
.admin-table-wrap {
    overflow-x: auto;
}
.admin-table {
    margin: 0;
    vertical-align: middle;
}
.admin-table code {
    color: var(--blue-dark);
}
.admin-blog-thumb {
    width: 64px;
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    object-fit: cover;
    border: 1px solid rgba(11, 94, 215, .14);
    border-radius: 6px;
    background: #f8fafc;
    color: var(--blue);
}
.admin-editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.admin-editor .form-group,
.admin-form .form-group {
    display: grid;
    gap: 6px;
    margin: 0;
}
.admin-editor label,
.admin-form label {
    color: var(--ink);
    font-weight: 800;
}
.admin-editor textarea {
    resize: vertical;
}
.admin-editor-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.admin-image-preview {
    display: grid;
    gap: 8px;
    max-width: 360px;
}
.admin-image-preview span {
    color: var(--ink);
    font-weight: 800;
}
.admin-image-preview img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(11, 94, 215, .14);
    border-radius: 8px;
}
.form-text {
    color: var(--muted);
    font-size: .86rem;
}

@media (max-width: 767px) {
    .admin-auth {
        align-items: start;
        padding-top: 28px;
    }
    .admin-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .admin-actions {
        justify-content: flex-start;
        width: 100%;
    }
    .admin-actions .btn {
        flex: 1 1 auto;
    }
    .admin-editor-grid {
        grid-template-columns: 1fr;
    }
    .admin-table-wrap,
    .admin-editor,
    .admin-auth-card {
        padding: 18px;
    }
}

@media (max-width: 420px) {
    .admin-auth {
        padding: 16px 10px;
    }
    .admin-auth-card {
        box-shadow: 0 16px 36px rgba(6, 29, 70, .12);
    }
    .admin-auth-card h1 {
        font-size: 1.72rem;
    }
    .admin-form {
        gap: 14px;
    }
    .admin-form .btn {
        min-height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-track {
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
        animation: none;
    }

    .partner-track {
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
        animation: none;
    }

    .mini-service-blink {
        animation: none;
        filter: brightness(1.16);
    }

    .service-category-blink {
        animation: none;
    }
}

@media (min-width: 992px) {
    .brand-mark img {
        width: min(190px, 24vw);
    }

    .navbar .dropdown-menu.mega-menu {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .navbar .nav-link {
        padding-left: .42rem !important;
        padding-right: .42rem !important;
        font-size: .84rem;
    }

    .navbar .btn {
        --bs-btn-padding-x: .62rem;
        --bs-btn-font-size: .84rem;
    }

    .brand-mark {
        margin-right: 8px;
    }
}

/* 2026 visual refresh */
:root {
    --blue: #2563eb;
    --blue-dark: #081437;
    --blue-mid: #183b8f;
    --cyan: #14b8a6;
    --orange: #ff7a3d;
    --orange-deep: #f4511e;
    --ink: #101828;
    --muted: #667085;
    --soft: #f4f7fc;
    --line: #dce4f0;
    --shadow: 0 22px 55px rgba(8, 20, 55, .12);
}

body {
    background: #f8faff;
    color: var(--ink);
}

.top-strip {
    background: linear-gradient(100deg, #081437 0%, #132d69 58%, #0f766e 140%);
}

.navbar {
    background: rgba(255,255,255,.94) !important;
    border-bottom: 1px solid rgba(220,228,240,.85);
    backdrop-filter: blur(18px);
}

.btn {
    border-radius: 12px;
    font-weight: 750;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1649b8);
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(37,99,235,.24);
}

.btn-warning {
    color: #fff;
    background: linear-gradient(135deg, #ff8a4c, #f4511e);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(244,81,30,.24);
}

.hero-slide {
    min-height: 720px;
    isolation: isolate;
    background-position: center;
}

.hero-slide::before {
    z-index: -1;
    background:
        radial-gradient(circle at 78% 18%, rgba(20,184,166,.34), transparent 27%),
        linear-gradient(90deg, rgba(8,20,55,.98) 0%, rgba(13,34,79,.92) 42%, rgba(8,20,55,.46) 72%, rgba(8,20,55,.28) 100%);
}

.carousel-item.active .hero-slide::after {
    width: 420px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(4px);
}

.hero-slide-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
    align-items: center;
    gap: clamp(34px, 7vw, 100px);
    min-height: 720px;
    padding: 72px 0 108px;
}

.hero-content {
    max-width: 760px;
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(8,20,55,.84), rgba(19,45,105,.62));
    box-shadow: 0 30px 90px rgba(0,0,0,.32);
    backdrop-filter: blur(16px);
}

.hero-content > span {
    padding: 8px 12px;
    border: 1px solid rgba(255,122,61,.42);
    border-radius: 999px;
    background: rgba(255,122,61,.12);
    color: #ffad83;
    font-size: .78rem;
    letter-spacing: .12em;
}

.hero-content h1 {
    max-width: 720px;
    margin-top: 8px;
    font-size: clamp(2.55rem, 5vw, 4.65rem);
    letter-spacing: -.045em;
}

.hero-content p {
    color: rgba(255,255,255,.84);
    font-size: 1.12rem;
}

.hero-badges strong {
    border-radius: 999px;
    background: rgba(255,255,255,.09);
}

.hero-sidecard {
    align-self: end;
    margin-bottom: 118px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.08));
    box-shadow: 0 24px 64px rgba(0,0,0,.24);
    backdrop-filter: blur(18px);
}

.hero-sidecard i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #14b8a6, #2563eb);
    font-size: 1.45rem;
    box-shadow: 0 14px 34px rgba(20,184,166,.28);
}

.hero-sidecard span,
.hero-sidecard strong,
.hero-sidecard p {
    display: block;
}

.hero-sidecard span {
    margin-bottom: 8px;
    color: #ffad83;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-sidecard strong {
    margin-bottom: 10px;
    font-size: 1.35rem;
    line-height: 1.25;
}

.hero-sidecard p {
    margin: 0;
    color: rgba(255,255,255,.76);
}

.carousel-item.active .hero-sidecard {
    animation: heroCardIn .9s .18s ease both;
}

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

.hero-indicators {
    bottom: 38px;
}

.hero-indicators [data-bs-target] {
    height: 5px;
    border-radius: 99px;
}

.carousel-control-prev,
.carousel-control-next {
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 16px;
}

.section-pad {
    padding-top: 92px;
    padding-bottom: 92px;
}

.service-card,
.feature-tile,
.sidebar-card,
.form-panel,
.blog-card,
.contact-info > div {
    border-radius: 18px;
    border-color: rgba(220,228,240,.92);
    box-shadow: 0 14px 36px rgba(8,20,55,.07);
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 38px 0 34px;
}

.inner-hero::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -76px;
    width: 190px;
    height: 190px;
    border: 30px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.inner-hero h1 {
    margin: 7px 0 6px;
    font-size: clamp(2.05rem, 3.6vw, 3.15rem);
    line-height: 1.05;
}

.inner-hero .breadcrumb {
    margin: 0;
}

@media (max-width: 767.98px) {
    .inner-hero {
        padding: 24px 0 22px;
    }

    .inner-hero h1 {
        margin: 5px 0;
        font-size: clamp(1.65rem, 8.2vw, 2.25rem);
    }

    .inner-hero::after {
        right: -35px;
        bottom: -62px;
        width: 140px;
        height: 140px;
        border-width: 22px;
    }
}

.service-detail-image {
    position: relative;
    min-height: 390px;
    margin-bottom: 38px;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(8,20,55,.16);
}

.service-detail-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(8,20,55,.68));
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.service-detail-image:hover img {
    transform: scale(1.035);
}

.service-image-label {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    color: #fff;
    background: rgba(8,20,55,.66);
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 38px 0;
}

.service-info-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(8,20,55,.07);
}

.service-info-card h3 {
    margin: 14px 0 10px;
    font-size: 1.25rem;
}

.service-info-card p,
.service-info-card ul {
    margin-bottom: 0;
    color: var(--muted);
}

.service-info-card ul {
    padding-left: 20px;
}

.service-info-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    font-size: 1.25rem;
}

.service-process {
    margin: 44px 0;
    padding: clamp(26px, 4vw, 40px);
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 12%, rgba(20,184,166,.28), transparent 28%),
        linear-gradient(135deg, #081437, #183b8f);
}

.service-process h3 {
    color: #fff;
}

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

.service-process-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    background: rgba(255,255,255,.07);
}

.service-process-step strong {
    color: #ffad83;
    font-size: 1.15rem;
}

.service-process-step span {
    font-weight: 700;
}

.service-commitment {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid rgba(20,184,166,.22);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(20,184,166,.09), rgba(37,99,235,.06));
}

.service-commitment > i {
    color: #0f9f90;
    font-size: 2rem;
}

.service-commitment h3 {
    margin-bottom: 6px;
    font-size: 1.28rem;
}

.service-commitment p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 991.98px) {
    .hero-slide,
    .hero-slide-grid {
        min-height: 650px;
    }

    .hero-slide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 64px 0 96px;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-sidecard {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-slide,
    .hero-slide-grid {
        min-height: 620px;
    }

    .hero-slide-grid {
        padding: 38px 0 82px;
    }

    .hero-content {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .hero-content h1 {
        font-size: clamp(2.15rem, 10vw, 3.05rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-badges {
        margin: 18px 0 22px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .section-pad {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .service-detail-image,
    .service-detail-image img {
        min-height: 270px;
    }

    .service-detail-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-commitment {
        padding: 22px;
    }
}

/* Contemporary header and homepage layout */
.main-navbar {
    padding: 12px 0;
    background: rgba(248, 250, 255, .88) !important;
    border: 0;
    box-shadow: none !important;
    backdrop-filter: blur(20px);
}

.nav-shell {
    min-height: 76px;
    padding: 8px 10px 8px 18px;
    border: 1px solid rgba(208, 218, 234, .8);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 42px rgba(8, 20, 55, .09);
}

.main-navbar .brand-mark img {
    width: 178px;
    max-height: 52px;
}

.mobile-menu-head,
.mobile-menu-backdrop {
    display: none;
}

.nav-menu {
    gap: 3px;
    padding: 5px;
    border: 1px solid rgba(220, 228, 240, .9);
    border-radius: 15px;
    background: #f7f9fc;
}

.main-navbar .nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: .72rem .82rem !important;
    border-radius: 10px;
    color: #344054;
    font-size: .88rem;
    font-weight: 750;
}

.nav-label-icon {
    color: #6b7a99;
    font-size: .9rem;
    transition: color .2s ease, transform .2s ease;
}

.main-navbar .nav-link::before {
    display: none;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus,
.main-navbar .nav-item.show > .nav-link {
    color: #174db7;
    background: #fff;
    box-shadow: 0 6px 18px rgba(8, 20, 55, .07);
}

.main-navbar .nav-link:hover .nav-label-icon,
.main-navbar .nav-link:focus .nav-label-icon,
.main-navbar .nav-item.show > .nav-link .nav-label-icon {
    color: #f4511e;
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 14px;
}

.nav-pay,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border-radius: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.nav-pay {
    min-width: 68px;
    padding: 0 13px;
    border: 1px solid #dce4f0;
    color: #344054;
    background: #fff;
}

.nav-cta {
    min-width: 124px;
    padding: 0 17px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #123d9b);
    box-shadow: 0 12px 26px rgba(37, 99, 235, .24);
}

.nav-pay:hover,
.nav-cta:hover {
    transform: translateY(-2px);
}

.nav-pay:hover {
    color: #174db7;
    border-color: #a9bce3;
}

.nav-cta:hover {
    color: #fff;
    box-shadow: 0 16px 34px rgba(37, 99, 235, .3);
}

.main-navbar .hover-menu {
    margin-top: 10px;
    border: 1px solid rgba(220, 228, 240, .9);
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(8, 20, 55, .18);
}

.main-navbar .hover-menu.nav-mega {
    left: 50%;
    min-width: min(900px, 88vw);
    transform: translateX(-50%);
}

.nav-mega-grid {
    grid-template-columns: minmax(250px, 1fr) minmax(300px, 1.2fr) 250px;
}

.main-navbar .menu-links {
    padding: 24px;
}

.main-navbar .menu-links h6 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    border: 0;
    color: #174db7;
}

.main-navbar .menu-links h6 i {
    font-size: 1rem;
}

.main-navbar .menu-links .dropdown-item {
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 9px;
    color: #344054;
    font-size: .82rem;
}

.main-navbar .menu-links .dropdown-item i {
    margin: 1px 0 0 auto;
    color: #98a2b3;
}

.main-navbar .menu-feature {
    padding: 28px;
    background:
        radial-gradient(circle at 82% 12%, rgba(20, 184, 166, .32), transparent 34%),
        linear-gradient(145deg, #081437, #183b8f);
}

.main-navbar .menu-feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #14b8a6, #2563eb);
}

.main-navbar .menu-feature-icon i {
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
    color: inherit;
    font-size: 1.35rem;
}

.main-navbar .menu-feature > a {
    color: #fff;
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
}

.value-ribbon {
    position: relative;
    z-index: 5;
    margin-top: -42px;
}

.value-ribbon-grid {
    display: grid;
    grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(220, 228, 240, .86);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 64px rgba(8, 20, 55, .13);
    backdrop-filter: blur(18px);
}

.value-ribbon-intro,
.value-ribbon-item {
    min-height: 132px;
    padding: 24px 22px;
}

.value-ribbon-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background:
        radial-gradient(circle at 95% 10%, rgba(20, 184, 166, .35), transparent 36%),
        #081437;
}

.value-ribbon-intro span {
    margin-bottom: 7px;
    color: #ffad83;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.value-ribbon-intro strong {
    font-size: 1.18rem;
    line-height: 1.25;
}

.value-ribbon-item {
    display: flex;
    align-items: center;
    gap: 13px;
    border-right: 1px solid #e8edf5;
}

.value-ribbon-item:last-child {
    border-right: 0;
}

.value-ribbon-item > i {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #174db7;
    background: linear-gradient(135deg, #edf4ff, #e8fbf8);
    font-size: 1.18rem;
}

.value-ribbon-item strong,
.value-ribbon-item span {
    display: block;
}

.value-ribbon-item strong {
    margin-bottom: 5px;
    color: #101828;
    font-size: .9rem;
}

.value-ribbon-item span {
    color: #667085;
    font-size: .75rem;
    line-height: 1.45;
}

.home-intro {
    padding: 110px 0 12px;
}

.home-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: end;
}

.home-intro h2 {
    max-width: 780px;
    margin-bottom: 0;
    font-size: clamp(2.2rem, 4.4vw, 4.15rem);
    letter-spacing: -.045em;
}

.home-intro-copy {
    padding-left: 26px;
    border-left: 2px solid #dce4f0;
}

.home-intro-copy p {
    color: #667085;
    font-size: 1.05rem;
    line-height: 1.8;
}

.home-intro-copy a {
    color: #174db7;
    font-weight: 850;
    text-decoration: none;
}

.about-reimagined {
    position: relative;
    padding-top: 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 2% 8%, rgba(37, 99, 235, .08), transparent 22%),
        radial-gradient(circle at 98% 82%, rgba(255, 122, 61, .08), transparent 24%),
        #f8faff;
}

.about-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 36px;
    color: #fff;
    background:
        radial-gradient(circle at 4% 7%, rgba(37,99,235,.34), transparent 28%),
        radial-gradient(circle at 54% 112%, rgba(20,184,166,.18), transparent 30%),
        linear-gradient(135deg, #081437 0%, #0d1f4c 58%, #07112c 100%);
    box-shadow: 0 34px 90px rgba(8,20,55,.22);
    isolation: isolate;
}

.about-stage::before {
    content: "R";
    position: absolute;
    z-index: -1;
    top: -105px;
    left: -18px;
    color: rgba(255,255,255,.026);
    font-size: 33rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.12em;
    pointer-events: none;
}

.about-stage::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 56px;
    right: -80px;
    width: 240px;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    box-shadow: 0 0 0 46px rgba(255,255,255,.025), 0 0 0 92px rgba(255,255,255,.018);
}

.about-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
    gap: clamp(42px, 6vw, 88px);
    align-items: center;
    padding: clamp(38px, 6vw, 82px);
}

.about-story {
    position: relative;
    z-index: 1;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #b9c8ed;
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.about-kicker i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7a3d;
    box-shadow: 0 0 0 6px rgba(255,122,61,.13);
}

.about-story h2 {
    max-width: 620px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(2.65rem, 5vw, 5.35rem);
    line-height: .97;
    letter-spacing: -.055em;
}

.about-story h2 em {
    color: #ff9a69;
    font-style: normal;
}

.about-story p {
    max-width: 580px;
    color: rgba(226,234,255,.7);
    font-size: 1rem;
    line-height: 1.75;
}

.about-story .about-lead {
    margin-bottom: 12px;
    color: rgba(255,255,255,.92);
    font-size: 1.12rem;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.about-primary-action {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-height: 54px;
    padding: 13px 20px;
    border: 0;
    color: #081437;
    background: #fff;
    box-shadow: 0 15px 34px rgba(0,0,0,.18);
}

.about-primary-action:hover,
.about-primary-action:focus {
    color: #081437;
    background: #ff9a69;
    transform: translateY(-2px);
}

.about-primary-action i { font-size: 1.1rem; }

.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-weight: 780;
}

.about-text-link:hover,
.about-text-link:focus { color: #ff9a69; }

.about-text-link i { transition: transform .2s ease; }
.about-text-link:hover i { transform: translateX(4px); }

.about-principle {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    max-width: 530px;
    margin-top: 34px;
    padding-top: 23px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.about-principle > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,154,105,.32);
    border-radius: 50%;
    color: #ff9a69;
    background: rgba(255,122,61,.08);
}

.about-principle span {
    color: rgba(226,234,255,.68);
    font-size: .88rem;
    line-height: 1.55;
}

.about-principle strong { color: #fff; }

.about-blueprint {
    position: relative;
    z-index: 2;
    padding: clamp(24px, 3.5vw, 42px);
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 28px;
    color: #101828;
    background: rgba(255,255,255,.96);
    box-shadow: 0 26px 70px rgba(0,0,0,.28);
}

.blueprint-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.blueprint-heading > div > span {
    display: block;
    margin-bottom: 5px;
    color: #f4511e;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.blueprint-heading h3 {
    margin: 0;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    letter-spacing: -.035em;
}

.blueprint-badge {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid #dce6fb;
    border-radius: 999px;
    color: #31528d;
    background: #f3f7ff;
    font-size: .66rem;
    font-weight: 850;
}

.blueprint-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.blueprint-steps::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    border: 1px dashed rgba(37,99,235,.24);
    border-width: 1px 1px 0 0;
    border-radius: 0 22px 0 0;
    transform: translate(-50%, -50%) rotate(15deg);
    pointer-events: none;
}

.blueprint-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 6px 13px;
    align-items: center;
    min-height: 138px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f2;
    border-radius: 18px;
    background: #fff;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.blueprint-step:hover {
    z-index: 2;
    border-color: rgba(37,99,235,.38);
    box-shadow: 0 16px 32px rgba(8,20,55,.09);
    transform: translateY(-3px);
}

.blueprint-step::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -42px;
    width: 90px;
    aspect-ratio: 1;
    border: 16px solid rgba(37,99,235,.04);
    border-radius: 50%;
}

.step-number {
    position: absolute;
    top: 12px;
    right: 14px;
    color: #a4b2ca;
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #255bd6;
    background: #edf3ff;
    font-size: 1.25rem;
}

.blueprint-step h4 {
    margin: 0 0 4px;
    color: #081437;
    font-size: 1rem;
    font-weight: 850;
}

.blueprint-step p {
    margin: 0;
    color: #748198;
    font-size: .77rem;
    line-height: 1.4;
}

.step-shape .step-icon { color: #d9531e; background: #fff0e9; }
.step-build .step-icon { color: #0e8f82; background: #e8faf7; }
.step-grow .step-icon { color: #7b45c5; background: #f4edff; }

.blueprint-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 23px;
    color: #718097;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.blueprint-footer i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ff7a3d;
}

.about-outcomes {
    display: grid;
    grid-template-columns: minmax(300px, 1.2fr) repeat(3, minmax(190px, 1fr));
    border-top: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.035);
}

.outcome-intro,
.outcome-item {
    min-width: 0;
    padding: 25px clamp(20px, 3vw, 38px);
}

.outcome-intro {
    border-right: 1px solid rgba(255,255,255,.12);
}

.outcome-intro span {
    display: block;
    margin-bottom: 3px;
    color: #ff9a69;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.outcome-intro strong {
    display: block;
    max-width: 350px;
    color: #fff;
    font-size: .92rem;
    line-height: 1.5;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 13px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.outcome-item:last-child { border-right: 0; }

.outcome-item > i {
    flex: 0 0 auto;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ff9a69;
    background: rgba(255,122,61,.1);
}

.outcome-item span {
    min-width: 0;
    color: rgba(226,234,255,.58);
    font-size: .72rem;
    line-height: 1.4;
}

.outcome-item strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: .84rem;
}

@media (max-width: 1199.98px) {
    .about-stage-grid {
        grid-template-columns: minmax(0, .86fr) minmax(450px, 1.14fr);
        gap: 36px;
        padding: 48px;
    }

    .about-story h2 {
        font-size: clamp(2.6rem, 4.8vw, 4.2rem);
    }

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

    .outcome-intro {
        grid-column: 1 / -1;
        padding-top: 20px;
        padding-bottom: 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .outcome-intro strong { max-width: none; }
}

@media (max-width: 991.98px) {
    .about-stage-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: clamp(34px, 7vw, 58px);
    }

    .about-story {
        max-width: 700px;
    }

    .about-story h2 {
        max-width: 680px;
        font-size: clamp(3rem, 8vw, 5.2rem);
    }

    .about-blueprint {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .about-reimagined {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .about-stage {
        border-radius: 26px;
    }

    .about-stage::before {
        top: -40px;
        font-size: 24rem;
    }

    .about-stage-grid {
        gap: 34px;
        padding: 34px 24px;
    }

    .about-story h2 {
        font-size: clamp(2.55rem, 12vw, 4.2rem);
    }

    .about-story .about-lead { font-size: 1.02rem; }

    .about-blueprint {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .blueprint-heading {
        display: block;
        margin-bottom: 20px;
    }

    .blueprint-badge {
        display: inline-block;
        margin-top: 12px;
    }

    .blueprint-step {
        min-height: 124px;
        padding: 17px;
    }

    .about-outcomes {
        grid-template-columns: 1fr;
    }

    .outcome-intro,
    .outcome-item {
        padding: 20px 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .outcome-item:last-child { border-bottom: 0; }
}

@media (max-width: 575.98px) {
    .about-stage-grid {
        padding: 30px 18px;
    }

    .about-kicker {
        margin-bottom: 19px;
        font-size: .67rem;
    }

    .about-story h2 {
        font-size: clamp(2.35rem, 12vw, 3.3rem);
    }

    .about-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
    }

    .about-primary-action {
        justify-content: space-between;
        width: 100%;
    }

    .about-principle {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .about-principle > i {
        width: 36px;
        height: 36px;
    }

    .blueprint-steps {
        grid-template-columns: 1fr;
    }

    .blueprint-steps::before { display: none; }

    .blueprint-step {
        min-height: 104px;
    }

    .blueprint-footer {
        flex-wrap: wrap;
        row-gap: 5px;
        font-size: .62rem;
    }
}

.service-card {
    min-height: 430px;
    padding: 32px;
    border-radius: 24px;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
}

.service-number {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--service-a);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.service-card > p {
    min-height: 76px;
    color: #667085;
}

.service-points {
    display: grid;
    gap: 8px;
    margin: 20px 0 26px;
    padding: 18px 0;
    border-top: 1px solid #e7edf5;
    border-bottom: 1px solid #e7edf5;
    list-style: none;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #344054;
    font-size: .9rem;
    font-weight: 700;
}

.service-points i {
    color: var(--service-a);
}

.reason-card {
    min-height: 230px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 22px;
    background: rgba(255, 255, 255, .07);
}

.reason-card > i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, #14b8a6, #2563eb);
}

.reason-card h3 {
    margin: 20px 0 8px;
    color: #fff;
    font-size: 1.12rem;
}

.reason-card p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .88rem;
    line-height: 1.6;
}

@media (max-width: 1199.98px) {
    .main-navbar .brand-mark img {
        width: 152px;
    }

    .main-navbar .nav-link {
        gap: 5px;
        padding: .68rem .5rem !important;
        font-size: .82rem;
    }

    .nav-actions {
        margin-left: 8px;
    }

    .nav-pay span {
        display: none;
    }

    .nav-pay {
        min-width: 46px;
        padding: 0;
    }

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

    .value-ribbon-intro {
        grid-column: 1 / -1;
        min-height: auto;
    }
}

@media (max-width: 991.98px) {
    .main-navbar {
        padding: 8px 0;
    }

    .nav-shell {
        min-height: 68px;
        padding: 7px 12px;
        border-radius: 18px;
    }

    .main-navbar .brand-mark img {
        width: min(176px, 52vw);
    }

    .main-navbar .navbar-toggler {
        width: 46px;
        height: 46px;
        padding: 8px;
        border: 1px solid #dce4f0;
        border-radius: 13px;
    }

    .main-navbar .navbar-collapse {
        position: fixed;
        z-index: 1060;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(390px, 88vw);
        height: 100vh !important;
        max-height: none;
        margin: 0;
        padding: 20px;
        overflow-y: auto;
        display: block !important;
        visibility: hidden;
        border: 0;
        border-left: 1px solid rgba(220, 228, 240, .9);
        border-radius: 28px 0 0 28px;
        background:
            radial-gradient(circle at 100% 0, rgba(37, 99, 235, .12), transparent 34%),
            #fff;
        box-shadow: -24px 0 70px rgba(8, 20, 55, .22);
        transform: translateX(105%);
        transition: transform .32s cubic-bezier(.22, .8, .24, 1), visibility .32s;
    }

    .main-navbar .navbar-collapse.show,
    .main-navbar .navbar-collapse.collapsing {
        visibility: visible;
        transform: translateX(0);
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: 18px;
        padding: 2px 2px 17px;
        border-bottom: 1px solid #e7edf5;
    }

    .mobile-menu-head img {
        width: min(170px, 50vw);
        max-height: 50px;
    }

    .mobile-menu-close {
        width: 42px;
        height: 42px;
        border: 1px solid #dce4f0;
        border-radius: 12px;
        color: #344054;
        background: #f8faff;
        font-size: 1.05rem;
    }

    .mobile-menu-backdrop {
        position: fixed;
        z-index: 1050;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(8, 20, 55, .52);
        backdrop-filter: blur(3px);
    }

    #mainMenu.show + .mobile-menu-backdrop,
    #mainMenu.collapsing + .mobile-menu-backdrop {
        display: block;
    }

    .nav-menu {
        display: block;
        padding: 7px;
        border: 1px solid #e5ebf4;
        border-radius: 18px;
        background: #f7f9fc;
    }

    .main-navbar .nav-link {
        gap: 12px;
        margin: 2px 0;
        padding: 12px !important;
        border: 1px solid transparent;
        border-radius: 12px;
        font-size: .96rem;
    }

    .main-navbar .nav-link:hover,
    .main-navbar .nav-link:focus,
    .main-navbar .nav-item.show > .nav-link {
        border-color: #dce6f5;
        background: #fff;
        box-shadow: 0 8px 22px rgba(8, 20, 55, .08);
    }

    .nav-label-icon {
        width: 34px;
        height: 34px;
        display: grid;
        flex: 0 0 34px;
        place-items: center;
        border-radius: 10px;
        color: #174db7;
        background: #eaf1ff;
        font-size: 1rem;
    }

    .main-navbar .dropdown-toggle::after {
        margin-left: auto;
    }

    .main-navbar .hover-menu,
    .main-navbar .hover-menu.nav-mega {
        min-width: 0;
        margin: 4px 5px 10px;
        border-color: #dfe7f2;
        border-radius: 14px;
        background: #fff;
        box-shadow: inset 4px 0 0 #2563eb, 0 12px 28px rgba(8, 20, 55, .08);
        transform: none;
    }

    .nav-mega-grid {
        grid-template-columns: 1fr;
    }

    .main-navbar .menu-links.two-col {
        grid-template-columns: 1fr;
    }

    .main-navbar .menu-feature {
        display: none;
    }

    .nav-actions {
        margin: 14px 0 8px;
        padding-top: 14px;
        border-top: 1px solid #e7edf5;
    }

    .nav-pay span {
        display: inline;
    }

    .nav-pay,
    .nav-cta {
        flex: 1;
    }

    .home-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-intro-copy {
        padding-left: 20px;
    }
}

/* Compact delivered-project collection */
.project-testimonials.section-pad {
    padding-top: 68px;
    padding-bottom: 68px;
}

.project-testimonials .section-title {
    margin-bottom: 28px;
}

.project-testimonials .section-title h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
}

.project-testimonials .project-collection-summary {
    margin-top: 15px;
}

.project-testimonials > .container > .row {
    --bs-gutter-x: 1.1rem;
    --bs-gutter-y: 1.1rem;
}

.project-testimonials .project-card-brand {
    min-height: 124px;
    padding: 20px;
}

.project-testimonials .project-number {
    top: 8px;
    right: 16px;
    font-size: 4rem;
}

.project-testimonials .project-logo-wrap {
    width: min(220px, 62%);
    min-height: 70px;
    padding: 11px 16px;
}

.project-testimonials .project-logo-wrap img {
    height: 48px;
}

.project-testimonials .project-delivered {
    padding: 7px 10px;
    font-size: .76rem;
}

.project-testimonials .project-card-body {
    gap: 12px;
    padding: 20px;
}

.project-testimonials .project-card-title h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
}

.project-testimonials .project-summary {
    padding: 11px 13px;
    font-size: .9rem;
    line-height: 1.55;
}

.project-testimonials .project-details > strong {
    margin-bottom: 8px;
}

.project-testimonials .project-details ul {
    gap: 6px;
}

.project-testimonials .project-details li {
    font-size: .88rem;
    line-height: 1.45;
}

.project-testimonials .project-card-footer {
    gap: 10px;
    padding-top: 13px;
}

.project-testimonials .project-link {
    padding: 8px 11px;
    font-size: .84rem;
}

.project-testimonials .concept-projects {
    margin-top: 28px;
    padding: 24px;
}

.project-testimonials .concept-projects-heading {
    margin-bottom: 20px;
    gap: 22px;
}

.project-testimonials .concept-projects-heading h3 {
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.project-testimonials .concept-project-card {
    padding: 19px;
}

.project-testimonials .concept-card-top {
    margin-bottom: 15px;
}

.project-testimonials .concept-logo {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    font-size: 1.25rem;
}

.project-testimonials .concept-project-card h3 {
    font-size: 1.28rem;
}

.project-testimonials .concept-project-card > p {
    margin: 6px 0 13px;
    font-size: .9rem;
}

.project-testimonials .concept-features {
    gap: 6px;
    margin-bottom: 14px;
}

.project-testimonials .concept-features span {
    padding: 5px 7px;
    font-size: .73rem;
}

.project-testimonials .concept-delivery-footer {
    padding-top: 12px;
}

@media (max-width: 767.98px) {
    .project-testimonials.section-pad {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .project-testimonials .section-title {
        margin-bottom: 22px;
    }

    .project-testimonials .project-card-brand {
        min-height: 132px;
        padding: 17px 17px 50px;
    }

    .project-testimonials .project-logo-wrap {
        width: min(210px, 78%);
        min-height: 62px;
        padding: 9px 13px;
    }

    .project-testimonials .project-logo-wrap img {
        height: 43px;
    }

    .project-testimonials .project-delivered {
        left: 17px;
        bottom: 13px;
    }

    .project-testimonials .project-card-body {
        padding: 18px;
    }

    .project-testimonials .project-card-footer {
        align-items: flex-start;
    }

    .project-testimonials .concept-projects {
        margin-top: 24px;
        padding: 17px;
    }

    .project-testimonials .concept-projects-heading {
        grid-template-columns: 1fr;
        gap: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .main-navbar .navbar-collapse {
        transition: none;
    }
}

/* Unified admin dashboard */
.admin-body {
    background:
        radial-gradient(circle at 8% 8%, rgba(37, 99, 235, .08), transparent 28%),
        #f5f8fd;
}

.admin-header {
    position: sticky;
    z-index: 1080;
    top: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(220, 228, 240, .9);
    background: rgba(245, 248, 253, .92);
    backdrop-filter: blur(18px);
}

.admin-header-shell,
.admin-brand,
.admin-nav {
    display: flex;
    align-items: center;
}

.admin-header-shell {
    min-height: 64px;
    gap: 24px;
    padding: 8px 12px 8px 18px;
    border: 1px solid #dce4f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(8, 20, 55, .08);
}

.admin-brand {
    gap: 12px;
    color: #101828;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.admin-brand img {
    width: 158px;
    max-height: 46px;
}

.admin-brand span {
    padding-left: 12px;
    border-left: 1px solid #dce4f0;
    color: #667085;
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.admin-nav {
    flex: 1;
    justify-content: flex-end;
    gap: 5px;
}

.admin-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #475467;
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: #174db7;
    background: #edf3ff;
    transform: translateY(-1px);
}

.admin-nav .admin-logout {
    color: #b42318;
}

.admin-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid #dce4f0;
    border-radius: 12px;
    color: #174db7;
    background: #f8faff;
    font-size: 1.25rem;
}

.admin-dashboard,
.admin-posting-page {
    min-height: calc(100vh - 95px);
    padding: 42px 0 70px;
}

.admin-dashboard-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 26px;
    padding: 34px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 12%, rgba(20, 184, 166, .36), transparent 28%),
        linear-gradient(135deg, #081437, #174db7);
    box-shadow: 0 24px 60px rgba(8, 20, 55, .18);
}

.admin-dashboard-hero h1 {
    margin: 6px 0 8px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.admin-dashboard-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
}

.admin-db-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .11);
    font-size: .82rem;
    font-weight: 800;
    white-space: nowrap;
}

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

.admin-dashboard-card {
    position: relative;
    overflow: hidden;
    min-height: 315px;
    padding: 30px;
    border: 1px solid #dce4f0;
    border-radius: 22px;
    color: #475467;
    background: #fff;
    box-shadow: 0 18px 46px rgba(8, 20, 55, .08);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.admin-dashboard-card::after {
    content: "";
    position: absolute;
    top: -65px;
    right: -65px;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .07);
}

.admin-dashboard-card.posting::after {
    background: rgba(20, 184, 166, .1);
}

.admin-dashboard-card:hover {
    color: #475467;
    border-color: rgba(37, 99, 235, .32);
    box-shadow: 0 26px 58px rgba(8, 20, 55, .13);
    transform: translateY(-5px);
}

.admin-dashboard-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #174db7);
    box-shadow: 0 14px 30px rgba(37, 99, 235, .23);
    font-size: 1.45rem;
}

.admin-dashboard-card.posting .admin-dashboard-icon {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    box-shadow: 0 14px 30px rgba(20, 184, 166, .23);
}

.admin-dashboard-kicker {
    color: #2563eb;
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.admin-dashboard-card.posting .admin-dashboard-kicker {
    color: #0f766e;
}

.admin-dashboard-card h2 {
    margin: 6px 0 9px;
    font-size: 1.7rem;
}

.admin-dashboard-card p {
    max-width: 510px;
    margin-bottom: 24px;
}

.admin-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #174db7;
    font-weight: 850;
}

.admin-dashboard-card.posting .admin-card-action {
    color: #0f766e;
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.admin-metrics > div,
.admin-system-status {
    border: 1px solid #dce4f0;
    background: #fff;
    box-shadow: 0 12px 32px rgba(8, 20, 55, .06);
}

.admin-metrics > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border-radius: 16px;
}

.admin-metrics > div > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #174db7;
    background: #edf3ff;
    font-size: 1.08rem;
}

.admin-metrics span,
.admin-metrics strong,
.admin-metrics small,
.admin-system-status span,
.admin-system-status strong,
.admin-system-status small {
    display: block;
}

.admin-metrics strong {
    color: #101828;
    font-size: 1.2rem;
}

.admin-metrics small,
.admin-system-status small {
    color: #667085;
}

.admin-system-status {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 14px;
    padding: 18px 20px;
    border-radius: 16px;
}

.admin-system-status > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-system-status > a {
    margin-left: auto;
    color: #174db7;
    font-weight: 850;
    text-decoration: none;
}

.admin-status-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d92d20;
    box-shadow: 0 0 0 5px rgba(217, 45, 32, .1);
}

.admin-status-dot.running {
    background: #12b76a;
    box-shadow: 0 0 0 5px rgba(18, 183, 106, .11);
}

.admin-status {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 850;
}

.admin-status.is-live {
    color: #067647;
    background: #ecfdf3;
}

.admin-status.is-draft {
    color: #b54708;
    background: #fffaeb;
}

.admin-publish-toggle {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    align-items: center;
    padding: 16px;
    border: 1px solid #dce4f0;
    border-radius: 12px;
    background: #f8faff;
}

.admin-publish-toggle input {
    width: 18px;
    height: 18px;
}

.admin-publish-toggle label {
    margin: 0;
}

.admin-publish-toggle small {
    grid-column: 2;
    color: #667085;
}

.posting-hero {
    padding: 32px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 10%, rgba(20, 184, 166, .34), transparent 28%),
        linear-gradient(135deg, #061d46, #0b5ed7);
    box-shadow: 0 24px 60px rgba(6, 29, 70, .18);
}

.posting-hero-top,
.posting-status-row,
.posting-actions,
.posting-result-head,
.posting-panel-title {
    display: flex;
    align-items: center;
}

.posting-hero-top,
.posting-result-head,
.posting-panel-title {
    justify-content: space-between;
}

.posting-hero h1 {
    margin: 7px 0 7px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.posting-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

.posting-state {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-weight: 850;
    white-space: nowrap;
}

.posting-state i {
    margin-right: 7px;
    color: #f97066;
}

.posting-state.is-running i {
    color: #53e38c;
}

.posting-status-row {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.posting-metric {
    min-width: 190px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
}

.posting-metric small,
.posting-metric strong {
    display: block;
}

.posting-metric small {
    color: rgba(255, 255, 255, .66);
}

.posting-metric strong {
    margin-top: 2px;
}

.posting-actions {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.posting-actions form {
    margin: 0;
}

.posting-notice {
    margin-top: 20px;
    padding: 13px 16px;
    border: 1px solid #9cc8ff;
    border-radius: 10px;
    color: #0b4f9c;
    background: #eef6ff;
}

.posting-notice i {
    margin-right: 8px;
}

.posting-notice.is-error {
    border-color: #f5b7b1;
    color: #9f1d16;
    background: #fff2f0;
}

.posting-warnings {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.posting-warnings li {
    padding: 12px 15px;
    border: 1px solid #fedf89;
    border-radius: 10px;
    color: #93370d;
    background: #fffaeb;
}

.posting-warnings i {
    margin-right: 7px;
}

.posting-grid {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 20px;
    margin-top: 20px;
}

.newsletter-automation {
    margin: 24px 0;
}

.long-video-automation {
    margin-top: 24px;
}

.posting-state.panel-state {
    border-color: #dce5f1;
    color: #344054;
    background: #f8fbff;
}

.long-video-timer-form,
.long-video-status,
.long-video-interval {
    display: flex;
    align-items: center;
    gap: 14px;
}

.long-video-timer-form {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #dce5f1;
    border-radius: 12px;
    background: #f8fbff;
}

.long-video-interval {
    font-weight: 700;
    white-space: nowrap;
}

.long-video-interval input {
    width: 120px;
}

.long-video-status {
    justify-content: space-between;
    margin-top: 14px;
}

.posting-metric.light {
    color: #344054;
    background: #f7f9fc;
}

.posting-metric.light small {
    color: #667085;
}

.newsletter-automation-body {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
    gap: 20px;
    align-items: stretch;
}

.newsletter-toggle-card {
    border: 1px solid #dce5f1;
    border-radius: 12px;
    padding: 20px;
    background: #f8fbff;
}

.newsletter-switch {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    margin: 0;
}

.newsletter-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.newsletter-switch-slider {
    position: relative;
    flex: 0 0 50px;
    height: 28px;
    border-radius: 20px;
    background: #9aa8ba;
    transition: background .2s ease;
}

.newsletter-switch-slider::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    transition: transform .2s ease;
}

.newsletter-switch input:checked + .newsletter-switch-slider {
    background: #198754;
}

.newsletter-switch input:checked + .newsletter-switch-slider::after {
    transform: translateX(22px);
}

.newsletter-switch strong,
.newsletter-switch small {
    display: block;
}

.newsletter-switch small {
    color: #68778a;
    margin-top: 3px;
}

.newsletter-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.newsletter-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.newsletter-last-run {
    margin: 0;
    color: #536378;
}

.newsletter-last-run span {
    display: block;
    font-size: 12px;
}

.admin-remember-me {
    margin: 2px 0 20px;
}

.admin-remember-me small {
    display: block;
    margin: 5px 0 0 24px;
    color: #667085;
    line-height: 1.4;
}

.posting-panel {
    padding: 24px;
    border: 1px solid #dfe7f2;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(6, 29, 70, .08);
}

.posting-panel-title {
    gap: 16px;
    margin-bottom: 15px;
}

.posting-panel-title span {
    color: #2563eb;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.posting-panel-title h2 {
    margin: 3px 0 0;
    font-size: 1.45rem;
}

.posting-panel-title small {
    color: #667085;
}

.posting-poster {
    width: 100%;
    display: block;
    border-radius: 15px;
    box-shadow: 0 15px 36px rgba(6, 29, 70, .14);
}

.video-description-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 13px;
    align-items: center;
    margin-top: 12px;
    padding: 13px 15px;
    border-radius: 12px;
    color: #eaf2ff;
    background: #082750;
}

.video-description-footer strong {
    margin-right: 3px;
}

.video-narration-badge {
    padding: 4px 9px;
    border-radius: 999px;
    color: #082750;
    background: #fff;
    font-size: .82rem;
    font-weight: 800;
}

.video-description-footer a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.posting-empty {
    min-height: 300px;
    display: grid;
    place-items: center;
    border: 2px dashed #dfe7f2;
    border-radius: 15px;
    color: #667085;
    text-align: center;
}

.posting-empty i {
    display: block;
    margin-bottom: 8px;
    font-size: 2.5rem;
}

.posting-caption {
    margin-bottom: 14px;
    padding: 15px;
    border-radius: 13px;
    color: #475467;
    background: #f7f9fc;
    white-space: pre-line;
}

.posting-results {
    display: grid;
    gap: 10px;
}

.posting-result {
    padding: 15px;
    border: 1px solid #dfe7f2;
    border-radius: 13px;
}

.posting-result p {
    margin: 7px 0 0;
}

.posting-badge {
    padding: 5px 8px;
    border-radius: 999px;
    font-size: .73rem;
    font-weight: 850;
}

.posting-badge.ok {
    color: #067647;
    background: #ecfdf3;
}

.posting-badge.skip {
    color: #b54708;
    background: #fffaeb;
}

.posting-badge.fail {
    color: #b42318;
    background: #fef3f2;
}

@media (max-width: 991.98px) {
    .admin-header-shell {
        flex-wrap: wrap;
    }

    .admin-nav-toggle {
        display: grid;
        place-items: center;
    }

    .admin-nav {
        flex: 0 0 100%;
        align-items: stretch;
        padding-top: 12px;
        border-top: 1px solid #e7edf5;
    }

    .admin-nav.show,
    .admin-nav.collapsing {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-nav a {
        justify-content: flex-start;
    }

    .admin-dashboard-grid,
    .posting-grid,
    .newsletter-automation-body {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 575.98px) {
    .admin-brand img {
        width: min(150px, 48vw);
    }

    .admin-brand span {
        display: none;
    }

    .admin-dashboard,
    .admin-posting-page {
        padding: 22px 0 48px;
    }

    .admin-dashboard-hero,
    .posting-hero {
        align-items: flex-start;
        padding: 22px;
        border-radius: 18px;
    }

    .admin-dashboard-hero,
    .posting-hero-top {
        flex-direction: column;
    }

    .admin-db-chip {
        white-space: normal;
    }

    .admin-dashboard-card {
        min-height: 0;
        padding: 23px;
    }

    .admin-metrics,
    .admin-nav.show,
    .admin-nav.collapsing,
    .newsletter-metrics {
        grid-template-columns: 1fr;
    }

    .newsletter-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .long-video-timer-form,
    .long-video-status,
    .long-video-interval {
        align-items: stretch;
        flex-direction: column;
    }

    .long-video-interval input,
    .long-video-status form,
    .long-video-status .btn {
        width: 100%;
    }

    .admin-system-status {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .admin-system-status > a {
        margin-left: 0;
    }

    .posting-state {
        white-space: normal;
    }

    .posting-metric,
    .posting-actions form,
    .posting-actions .btn {
        width: 100%;
    }

    .posting-panel {
        padding: 18px;
    }
}

@media (max-width: 767.98px) {
    .value-ribbon {
        margin-top: -20px;
    }

    .value-ribbon-grid {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .value-ribbon-intro {
        grid-column: auto;
    }

    .value-ribbon-intro,
    .value-ribbon-item {
        min-height: auto;
        padding: 19px;
    }

    .value-ribbon-item {
        border-right: 0;
        border-bottom: 1px solid #e8edf5;
    }

    .home-intro {
        padding-top: 76px;
    }

    .home-intro h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .service-card {
        min-height: auto;
        padding: 26px 24px;
    }

    .service-card > p {
        min-height: 0;
    }
}

.delivery-section {
    background:
        radial-gradient(circle at 4% 8%, rgba(37, 99, 235, .08), transparent 28%),
        #fff;
}

.delivery-layout {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: stretch;
}

.delivery-visual {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(8, 20, 55, .15), rgba(8, 20, 55, .94)),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1400&q=88") center/cover;
    box-shadow: 0 24px 60px rgba(8, 20, 55, .16);
}

.delivery-visual::after {
    content: "";
    position: absolute;
    top: 34px;
    right: 34px;
    width: 88px;
    height: 88px;
    border: 18px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.delivery-visual-content {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    padding: clamp(30px, 5vw, 54px);
}

.delivery-visual-content > span {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: #ffad83;
    background: rgba(8, 20, 55, .35);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.delivery-visual h2 {
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.delivery-visual p {
    max-width: 520px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.02rem;
}

.delivery-steps {
    display: grid;
    gap: 14px;
}

.delivery-step {
    display: grid;
    grid-template-columns: 42px 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 27px 28px;
    border: 1px solid #dfe7f2;
    border-radius: 22px;
    background: #f9fbff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.delivery-step:hover {
    transform: translateX(6px);
    border-color: rgba(37, 99, 235, .32);
    box-shadow: 0 18px 38px rgba(8, 20, 55, .08);
}

.delivery-step-number {
    color: #98a2b3;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.delivery-step > i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    box-shadow: 0 14px 30px rgba(37, 99, 235, .18);
    font-size: 1.35rem;
}

.delivery-step h3 {
    margin: 0 0 6px;
    color: #101828;
    font-size: 1.16rem;
}

.delivery-step p {
    margin: 0;
    color: #667085;
    font-size: .9rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .delivery-layout {
        grid-template-columns: 1fr;
    }

    .delivery-visual {
        min-height: 520px;
    }
}

@media (max-width: 575.98px) {
    .delivery-visual {
        min-height: 500px;
    }

    .delivery-step {
        grid-template-columns: 34px 48px minmax(0, 1fr);
        gap: 12px;
        padding: 20px 17px;
    }

    .delivery-step > i {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 1.15rem;
    }
}
