:root {
 --blue: #c8102e;
 --blue-dark: #8f0b20;
 --blue-bright: #ef3650;
 --blue-soft: #fff0f3;
 --ink: #081f3a;
 --muted: #66758a;
 --line: #e5ebf2;
 --surface: #ffffff;
 --soft: #f7f9fc;
 --shadow: 0 24px 60px rgba(8, 31, 58, 0.1);
 --shadow-soft: 0 12px 34px rgba(8, 31, 58, 0.08);
 --shadow-red: 0 20px 46px rgba(200, 16, 46, 0.22);
 --radius: 8px;
 --container: 1180px;
 --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 margin: 0;
 color: var(--ink);
 background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
 font-family: Inter, Arial, sans-serif;
 line-height: 1.6;
 text-rendering: optimizeLegibility;
}

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

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

a,
button {
 -webkit-tap-highlight-color: transparent;
}

:focus-visible {
 outline: 3px solid rgba(239, 54, 80, 0.38);
 outline-offset: 4px;
}

button,
input,
textarea {
 font: inherit;
}

.container {
 width: min(100% - 40px, var(--container));
 margin-inline: auto;
}

.skip-link {
 position: fixed;
 top: 12px;
 left: 12px;
 z-index: 100;
 padding: 10px 14px;
 color: #fff;
 background: var(--blue);
 border-radius: var(--radius);
 box-shadow: var(--shadow-soft);
 transform: translateY(-160%);
 transition: transform 0.25s var(--ease);
}

.skip-link:focus {
 transform: translateY(0);
}

.site-header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 30;
 background: rgba(255, 255, 255, 0.08);
 border-bottom: 1px solid rgba(255, 255, 255, 0.16);
 backdrop-filter: blur(8px);
 transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease), backdrop-filter 0.28s var(--ease);
}

.site-header.is-scrolled {
 background: rgba(255, 255, 255, 0.76);
 border-bottom-color: rgba(229, 235, 242, 0.74);
 box-shadow: 0 12px 34px rgba(8, 31, 58, 0.08);
 backdrop-filter: blur(18px);
}

.topbar {
 border-bottom: 1px solid rgba(255, 255, 255, 0.16);
 color: rgba(255, 255, 255, 0.82);
 font-size: 13px;
}

.topbar__inner {
 min-height: 38px;
 display: flex;
 align-items: center;
 justify-content: flex-end;
 gap: 24px;
}

.topbar__inner span {
 margin-right: auto;
 color: #fff;
 font-weight: 600;
}

.site-header.is-scrolled .topbar {
 color: var(--muted);
 border-bottom-color: rgba(229, 235, 242, 0.76);
}

.site-header.is-scrolled .topbar__inner span {
 color: var(--ink);
}

.topbar__inner a:hover,
.nav-links a:hover,
.footer a:hover {
 color: var(--blue);
}

.nav-links a,
.footer a,
.topbar__inner a {
 transition: color 0.22s var(--ease);
}

.nav-links > a:not(.nav-cta) {
 position: relative;
}

.nav-links > a:not(.nav-cta)::after {
 content: "";
 position: absolute;
 left: 0;
 right: 0;
 bottom: -8px;
 height: 2px;
 background: currentColor;
 border-radius: 999px;
 transform: scaleX(0);
 transform-origin: center;
 transition: transform 0.25s var(--ease);
}

.nav-links > a:not(.nav-cta):hover::after {
 transform: scaleX(1);
}

.nav {
 min-height: 76px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
}

.brand {
 display: inline-flex;
 align-items: center;
 width: 178px;
 min-height: 42px;
}

.brand img {
 width: 100%;
 height: auto;
}

.nav-links {
 display: flex;
 align-items: center;
 gap: 30px;
 color: #fff;
 font-size: 15px;
 font-weight: 600;
}

.site-header.is-scrolled .nav-links {
 color: var(--ink);
}

.nav-cta {
 min-height: 44px;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 0 20px;
 color: #fff !important;
 background: var(--blue);
 border-radius: 999px;
 box-shadow: 0 12px 28px rgba(200, 16, 46, 0.22);
 transition: transform 0.24s var(--ease), background 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.nav-cta img {
 width: 20px;
 height: 20px;
}

.site-header:not(.is-scrolled) .nav-cta {
 background: rgba(200, 16, 46, 0.92);
}

.nav-cta:hover {
 background: var(--blue-dark);
 box-shadow: var(--shadow-red);
 transform: translateY(-2px);
}

.nav-toggle {
 display: none;
 width: 44px;
 height: 44px;
 padding: 0;
 border: 1px solid rgba(255, 255, 255, 0.3);
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.16);
}

.nav-toggle span {
 width: 18px;
 height: 2px;
 display: block;
 margin: 4px auto;
 background: #fff;
 border-radius: 999px;
 transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
 transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
 opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
 transform: translateY(-6px) rotate(-45deg);
}

.site-header.is-scrolled .nav-toggle {
 border-color: var(--line);
 background: #fff;
}

.site-header.is-scrolled .nav-toggle span {
 background: var(--ink);
}

.hero {
 position: relative;
 min-height: 760px;
 display: grid;
 align-items: end;
 overflow: hidden;
 background: #09182b;
}

.hero__media,
.hero__shade {
 position: absolute;
 inset: 0;
}

.hero__media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center 42%;
 transform: scale(1.04);
 animation: heroZoom 12s ease-out forwards;
}

.hero__media::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.12) 38%, transparent 54%);
 opacity: 0.28;
 transform: translateX(-60%);
 animation: heroLight 8s ease-in-out infinite;
}

.hero__shade {
 background:
 linear-gradient(90deg, rgba(3, 13, 26, 0.9), rgba(3, 13, 26, 0.52) 48%, rgba(3, 13, 26, 0.14)),
 linear-gradient(0deg, rgba(3, 13, 26, 0.72), rgba(3, 13, 26, 0.02) 46%);
}

.hero__content {
 position: relative;
 z-index: 2;
 padding: 190px 0 140px;
 color: #fff;
 animation: heroContentIn 0.8s var(--ease) both;
}

.eyebrow,
.section-kicker {
 margin: 0 0 16px;
 color: var(--blue);
 font-size: 13px;
 font-weight: 800;
 letter-spacing: 0;
 text-transform: uppercase;
}

.hero .eyebrow {
 color: #ffc8d2;
}

.hero h1,
.intro h2,
.section-head h2,
.why h2,
.area h2,
.cta-band h2,
.faq h2 {
 margin: 0;
 font-size: clamp(38px, 5vw, 72px);
 line-height: 1.02;
 letter-spacing: 0;
}

.hero h1 {
 max-width: 760px;
 text-wrap: balance;
}

.hero__lead {
 max-width: 660px;
 margin: 24px 0 0;
 color: rgba(255, 255, 255, 0.88);
 font-size: 20px;
}

.hero__actions,
.cta-band__inner {
 display: flex;
 align-items: center;
 gap: 14px;
 flex-wrap: wrap;
}

.hero__actions {
 margin-top: 34px;
}

.hero__stats {
 max-width: 860px;
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 1px;
 margin-top: 44px;
 overflow: hidden;
 border: 1px solid rgba(255, 255, 255, 0.18);
 border-radius: var(--radius);
 background: rgba(255, 255, 255, 0.12);
 backdrop-filter: blur(14px);
}

.hero__stats div {
 min-height: 104px;
 padding: 22px;
 background: rgba(255, 255, 255, 0.1);
 transition: background 0.24s var(--ease), transform 0.24s var(--ease);
}

.hero__stats div:hover {
 background: rgba(255, 255, 255, 0.18);
 transform: translateY(-3px);
}

.hero__stats strong {
 display: block;
 color: #fff;
 font-size: 24px;
 line-height: 1.2;
}

.hero__stats span {
 display: block;
 margin-top: 6px;
 color: rgba(255, 255, 255, 0.78);
 font-size: 14px;
}

.btn {
 position: relative;
 overflow: hidden;
 min-height: 52px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 0 24px;
 border-radius: 999px;
 font-weight: 800;
 box-shadow: 0 14px 30px rgba(8, 31, 58, 0.08);
 transition: transform 0.24s var(--ease), background 0.24s var(--ease), color 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}

.btn::before {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 46%, transparent 58%);
 transform: translateX(-120%);
 transition: transform 0.55s var(--ease);
}

.btn:hover::before {
 transform: translateX(120%);
}

.btn > * {
 position: relative;
 z-index: 1;
}

.btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 20px 42px rgba(8, 31, 58, 0.14);
}

.btn--primary {
 color: #fff;
 background: linear-gradient(135deg, var(--blue-bright), var(--blue) 48%, var(--blue-dark));
}

.btn--whatsapp {
 gap: 10px;
}

.btn--whatsapp img {
 width: 24px;
 height: 24px;
 flex: 0 0 auto;
}

.btn--primary:hover {
 background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.btn--ghost {
 color: #fff;
 border: 1px solid rgba(255, 255, 255, 0.48);
}

.btn--ghost:hover {
 color: var(--ink);
 background: #fff;
}

.hero__tabs {
 position: absolute;
 right: max(20px, calc((100vw - var(--container)) / 2));
 bottom: 0;
 z-index: 3;
 display: grid;
 grid-template-columns: repeat(3, minmax(145px, 1fr));
 background: #fff;
 box-shadow: var(--shadow);
 border-radius: var(--radius) var(--radius) 0 0;
 overflow: hidden;
}

.hero__tabs a {
 min-height: 74px;
 display: flex;
 align-items: center;
 padding: 0 24px;
 border-left: 1px solid var(--line);
 color: var(--ink);
 font-weight: 800;
 transition: color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease);
}

.hero__tabs a:first-child {
 border-left: 0;
}

.hero__tabs a:hover {
 color: #fff;
 background: var(--blue);
 transform: translateY(-2px);
}

.intro,
.services,
.process,
.gallery,
.faq,
.articles {
 padding: 104px 0;
}

.intro {
 background: #fff;
}

.intro__grid,
.why__grid,
.faq__grid {
 display: grid;
 grid-template-columns: 0.9fr 1.1fr;
 gap: 70px;
 align-items: center;
}

.intro h2,
.section-head h2,
.why h2,
.area h2,
.cta-band h2,
.faq h2 {
 font-size: clamp(30px, 3vw, 48px);
}

.intro p:last-child,
.faq__grid > div > p {
 margin: 0;
 color: var(--muted);
 font-size: 18px;
}

.section-head {
 max-width: 730px;
 margin-bottom: 42px;
}

.section-head--split {
 max-width: none;
 display: grid;
 grid-template-columns: 0.95fr 1.05fr;
 gap: 40px;
 align-items: end;
}

.section-head--split > p {
 margin: 0;
 color: var(--muted);
 font-size: 18px;
}

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

.service-card {
 position: relative;
 overflow: hidden;
 background: #fff;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 box-shadow: var(--shadow-soft);
 transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.service-card::before,
.article-card::before,
.process-grid article::before {
 content: "";
 position: absolute;
 inset: 0;
 pointer-events: none;
 background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), transparent 38%);
 opacity: 0;
 transition: opacity 0.28s var(--ease);
}

.service-card:hover {
 border-color: rgba(200, 16, 46, 0.22);
 box-shadow: var(--shadow);
 transform: translateY(-6px);
}

.service-card:hover::before,
.article-card:hover::before,
.process-grid article:hover::before {
 opacity: 1;
}

.service-card img {
 width: 100%;
 aspect-ratio: 4 / 3;
 object-fit: cover;
 transition: transform 0.65s var(--ease), filter 0.35s var(--ease);
}

.service-card:hover img,
.article-card:hover img,
.gallery-grid img:hover {
 transform: scale(1.045);
 filter: saturate(1.06) contrast(1.03);
}

.service-card__body {
 padding: 26px;
}

.service-card__body span {
 color: var(--blue);
 font-size: 12px;
 font-weight: 800;
 text-transform: uppercase;
}

.service-card h3,
.feature h3,
.process-grid h3 {
 margin: 10px 0;
 font-size: 22px;
 line-height: 1.2;
}

.service-card p,
.feature p,
.process-grid p,
.footer p,
.footer span {
 margin: 0;
 color: var(--muted);
}

.service-card a {
 display: inline-flex;
 margin-top: 22px;
 color: var(--blue);
 font-weight: 800;
 position: relative;
}

.service-card a::after,
.article-card a::after {
 content: "";
 position: absolute;
 left: 0;
 bottom: -4px;
 width: 100%;
 height: 2px;
 background: currentColor;
 transform: scaleX(0);
 transform-origin: left;
 transition: transform 0.24s var(--ease);
}

.service-card a:hover::after,
.article-card a:hover::after {
 transform: scaleX(1);
}

.why {
 padding: 104px 0;
 background: var(--soft);
}

.why__media img {
 width: 100%;
 min-height: 620px;
 object-fit: cover;
 border-radius: var(--radius);
 box-shadow: var(--shadow);
 transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.why__media:hover img {
 box-shadow: 0 30px 70px rgba(8, 31, 58, 0.16);
 transform: translateY(-4px) scale(1.01);
}

.feature-list {
 display: grid;
 gap: 22px;
 margin-top: 34px;
}

.feature {
 display: grid;
 grid-template-columns: 54px 1fr;
 gap: 18px;
 padding: 18px;
 background: rgba(255, 255, 255, 0.68);
 border: 1px solid rgba(229, 235, 242, 0.82);
 border-radius: var(--radius);
 transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease);
}

.feature:hover {
 background: #fff;
 border-color: rgba(200, 16, 46, 0.18);
 box-shadow: var(--shadow-soft);
 transform: translateX(5px);
}

.feature__icon,
.process-grid span {
 width: 48px;
 height: 48px;
 display: grid;
 place-items: center;
 color: var(--blue);
 background: var(--blue-soft);
 border-radius: 50%;
 font-weight: 800;
 transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease);
}

.feature:hover .feature__icon,
.process-grid article:hover span {
 color: #fff;
 background: var(--blue);
 transform: rotate(-6deg) scale(1.05);
}

.area {
 padding: 74px 0;
 color: #fff;
 background:
 linear-gradient(135deg, rgba(143, 11, 32, 0.92), rgba(200, 16, 46, 0.94)),
 url("gallery/37.jpg") center / cover;
}

.area .section-kicker,
.cta-band .section-kicker {
 color: #ffd2da;
}

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

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

.area__chips span {
 padding: 12px 16px;
 background: rgba(255, 255, 255, 0.12);
 border: 1px solid rgba(255, 255, 255, 0.22);
 border-radius: 999px;
 font-weight: 700;
 backdrop-filter: blur(10px);
 transition: transform 0.24s var(--ease), background 0.24s var(--ease), border-color 0.24s var(--ease);
}

.area__chips span:hover {
 background: rgba(255, 255, 255, 0.22);
 border-color: rgba(255, 255, 255, 0.42);
 transform: translateY(-3px);
}

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

.process-grid article {
 position: relative;
 overflow: hidden;
 min-height: 250px;
 padding: 28px;
 background: #fff;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 box-shadow: var(--shadow-soft);
 transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.process-grid article:hover {
 border-color: rgba(200, 16, 46, 0.18);
 transform: translateY(-5px);
 box-shadow: var(--shadow);
}

.cta-band {
 padding: 70px 0;
 color: #fff;
 background:
 linear-gradient(rgba(2, 20, 42, 0.76), rgba(2, 20, 42, 0.76)),
 url("gallery/8.jpg") center / cover;
}

.cta-band__inner {
 justify-content: space-between;
}

.cta-band h2 {
 max-width: 760px;
}

.gallery-grid {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 16px;
}

.gallery-grid img {
 width: 100%;
 aspect-ratio: 1 / 1;
 object-fit: cover;
 border-radius: var(--radius);
 box-shadow: 0 10px 28px rgba(8, 31, 58, 0.08);
 transition: transform 0.45s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}

.gallery-grid img:hover {
 box-shadow: 0 18px 46px rgba(8, 31, 58, 0.16);
}

.articles {
 background: #fff;
}

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

.article-card {
 position: relative;
 overflow: hidden;
 background: #fff;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 box-shadow: var(--shadow-soft);
 transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.article-card:hover {
 border-color: rgba(200, 16, 46, 0.22);
 box-shadow: var(--shadow);
 transform: translateY(-6px);
}

.article-card img {
 width: 100%;
 aspect-ratio: 16 / 10;
 object-fit: cover;
 transition: transform 0.65s var(--ease), filter 0.35s var(--ease);
}

.article-card__body {
 padding: 26px;
}

.article-card span {
 color: var(--blue);
 font-size: 12px;
 font-weight: 800;
 text-transform: uppercase;
}

.article-card h3 {
 margin: 10px 0 12px;
 font-size: 21px;
 line-height: 1.25;
}

.article-card p {
 margin: 0;
 color: var(--muted);
}

.article-card a {
 display: inline-flex;
 margin-top: 22px;
 color: var(--blue);
 font-weight: 800;
 position: relative;
}

.faq {
 background: var(--soft);
}

.faq__grid {
 align-items: start;
}

.accordion {
 display: grid;
 gap: 12px;
}

.accordion__item {
 background: #fff;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 box-shadow: 0 8px 24px rgba(8, 31, 58, 0.04);
 overflow: hidden;
 transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

.accordion__item:hover,
.accordion__item.is-open {
 border-color: rgba(200, 16, 46, 0.18);
 box-shadow: var(--shadow-soft);
}

.accordion__item:hover {
 transform: translateY(-2px);
}

.accordion__item button {
 width: 100%;
 min-height: 64px;
 padding: 18px 56px 18px 22px;
 color: var(--ink);
 background: transparent;
 border: 0;
 text-align: left;
 font-weight: 800;
 cursor: pointer;
 position: relative;
}

.accordion__item button::after {
 content: "";
 position: absolute;
 right: 22px;
 top: 50%;
 width: 12px;
 height: 12px;
 border-right: 2px solid currentColor;
 border-bottom: 2px solid currentColor;
 color: var(--blue);
 transform: translateY(-68%) rotate(45deg);
 transition: transform 0.24s var(--ease), color 0.24s var(--ease);
}

.accordion__item.is-open button::after {
 transform: translateY(-24%) rotate(225deg);
}

.accordion__panel {
 display: block;
 max-height: 0;
 overflow: hidden;
 opacity: 0;
 padding: 0 22px;
 transition: max-height 0.36s var(--ease), opacity 0.28s var(--ease), padding 0.36s var(--ease);
}

.accordion__item.is-open .accordion__panel {
 opacity: 1;
 padding-bottom: 22px;
}

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

.footer {
 padding: 62px 0 26px;
 color: #d6e2ef;
 background: #071d35;
}

.footer__grid {
 display: grid;
 grid-template-columns: 1.4fr 0.8fr 1fr;
 gap: 40px;
}

.brand--footer {
 width: 160px;
}

.footer p {
 max-width: 420px;
 margin-top: 18px;
 color: #a9b8c9;
}

.footer h2 {
 margin: 0 0 18px;
 color: #fff;
 font-size: 18px;
}

.footer a,
.footer span {
 display: block;
 margin: 10px 0;
 color: #a9b8c9;
}

.footer__bottom {
 display: flex;
 justify-content: space-between;
 gap: 20px;
 margin-top: 46px;
 padding-top: 22px;
 border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-wa {
 position: fixed;
 right: 22px;
 bottom: 22px;
 z-index: 40;
 width: 62px;
 height: 62px;
 display: grid;
 place-items: center;
 color: #fff;
 background: #20b15a;
 border-radius: 50%;
 box-shadow: 0 18px 44px rgba(32, 177, 90, 0.34);
 font-weight: 800;
 animation: waPulse 2.8s ease-in-out infinite;
 transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease);
}

.floating-wa::before {
 content: "";
 position: absolute;
 inset: -8px;
 z-index: -1;
 border-radius: inherit;
 background: rgba(32, 177, 90, 0.18);
 animation: waRing 2.8s ease-in-out infinite;
}

.floating-wa:hover {
 background: #16964a;
 box-shadow: 0 22px 52px rgba(32, 177, 90, 0.42);
 transform: translateY(-4px) scale(1.03);
}

.floating-wa img {
 width: 40px;
 height: 40px;
}

[data-reveal] {
 opacity: 0;
 transform: translateY(28px) scale(0.985);
 transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
 transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
 opacity: 1;
 transform: translateY(0) scale(1);
}

.service-grid [data-reveal]:nth-child(2),
.article-grid [data-reveal]:nth-child(2),
.process-grid article:nth-child(2),
.gallery-grid img:nth-child(2) {
 --reveal-delay: 0.07s;
}

.service-grid [data-reveal]:nth-child(3),
.article-grid [data-reveal]:nth-child(3),
.process-grid article:nth-child(3),
.gallery-grid img:nth-child(3) {
 --reveal-delay: 0.14s;
}

.service-grid [data-reveal]:nth-child(4),
.article-grid [data-reveal]:nth-child(4),
.process-grid article:nth-child(4),
.gallery-grid img:nth-child(4) {
 --reveal-delay: 0.21s;
}

@keyframes heroZoom {
 from {
 transform: scale(1.08);
 }

 to {
 transform: scale(1.02);
 }
}

@keyframes heroLight {
 0%,
 45%,
 100% {
 transform: translateX(-65%);
 }

 70% {
 transform: translateX(55%);
 }
}

@keyframes heroContentIn {
 from {
 opacity: 0;
 transform: translateY(24px);
 }

 to {
 opacity: 1;
 transform: translateY(0);
 }
}

@keyframes waPulse {
 0%,
 100% {
 transform: translateY(0);
 }

 50% {
 transform: translateY(-4px);
 }
}

@keyframes waRing {
 0%,
 100% {
 opacity: 0;
 transform: scale(0.86);
 }

 45% {
 opacity: 1;
 }

 70% {
 opacity: 0;
 transform: scale(1.16);
 }
}

@keyframes menuDrop {
 from {
 opacity: 0;
 transform: translateY(-10px);
 }

 to {
 opacity: 1;
 transform: translateY(0);
 }
}

@media (max-width: 980px) {
 .topbar {
 display: none;
 }

 .nav {
 min-height: 70px;
 }

 .nav-toggle {
 display: block;
 }

 .nav-links {
 position: absolute;
 left: 20px;
 right: 20px;
 top: 76px;
 display: none;
 padding: 18px;
 background: rgba(255, 255, 255, 0.96);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 box-shadow: var(--shadow);
 }

 .nav-links,
 .site-header:not(.is-scrolled) .nav-links {
 color: var(--ink);
 }

 .nav-links.is-open {
 display: grid;
 animation: menuDrop 0.24s var(--ease) both;
 }

 .nav-cta {
 justify-content: center;
 }

 .hero {
 min-height: 660px;
 }

 .hero__tabs {
 left: 20px;
 right: 20px;
 grid-template-columns: 1fr;
 }

 .hero__tabs a {
 min-height: 54px;
 border-left: 0;
 border-top: 1px solid var(--line);
 }

 .hero__tabs a:first-child {
 border-top: 0;
 }

 .hero__content {
 padding: 130px 0 220px;
 }

 .hero__stats {
 grid-template-columns: 1fr;
 margin-top: 30px;
 }

 .hero__stats div {
 min-height: auto;
 padding: 18px;
 }

 .intro__grid,
 .why__grid,
 .area__inner,
 .faq__grid,
 .section-head--split,
 .footer__grid {
 grid-template-columns: 1fr;
 }

 .service-grid,
 .process-grid,
 .gallery-grid,
 .article-grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }
}

@media (max-width: 640px) {
 .container {
 width: min(100% - 28px, var(--container));
 }

 .brand {
 width: 150px;
 }

 .hero {
 min-height: 720px;
 }

 .hero h1 {
 font-size: 42px;
 }

 .hero__lead {
 font-size: 17px;
 }

 .hero__stats {
 display: none;
 }

 .btn {
 width: 100%;
 }

 .intro,
 .services,
 .why,
 .process,
 .gallery,
 .faq,
 .articles {
 padding: 72px 0;
 }

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

 .why__media img {
 min-height: 420px;
 }

 .process-grid article {
 min-height: auto;
 }

 .cta-band__inner,
 .footer__bottom {
 align-items: stretch;
 flex-direction: column;
 }

 .floating-wa {
 right: 16px;
 bottom: 16px;
 width: 56px;
 height: 56px;
 }

 .floating-wa img {
 width: 34px;
 height: 34px;
 }
}

@media (prefers-reduced-motion: reduce) {
 *,
 *::before,
 *::after {
 scroll-behavior: auto !important;
 animation-duration: 0.001ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.001ms !important;
 }
}


/* Additional service page styles */
.trust-note,
.service-hub,
.page-content,
.related-pages {
 padding: 88px 0;
 background: #fff;
}

.trust-note__grid {
 display: grid;
 grid-template-columns: 0.95fr 1.05fr;
 gap: 48px;
 align-items: center;
 padding: 34px;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 box-shadow: var(--shadow-soft);
 background: linear-gradient(135deg, #fff, #fff7f9);
 transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.trust-note__grid:hover {
 border-color: rgba(200, 16, 46, 0.16);
 box-shadow: var(--shadow);
 transform: translateY(-3px);
}

.trust-note__grid h2 {
 margin: 0;
 font-size: clamp(26px, 3vw, 42px);
 line-height: 1.08;
}

.trust-note__grid p:last-child {
 margin: 0;
 color: var(--muted);
 font-size: 17px;
}

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

.service-link-grid a,
.related-links a {
 position: relative;
 overflow: hidden;
 display: flex;
 align-items: center;
 min-height: 58px;
 padding: 16px 18px;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 background: #fff;
 color: var(--ink);
 font-weight: 800;
 box-shadow: var(--shadow-soft);
 transition: transform 0.24s var(--ease), color 0.24s var(--ease), background 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.service-link-grid a::after,
.related-links a::after {
 content: ">";
 margin-left: auto;
 color: var(--blue);
 opacity: 0;
 transform: translateX(-8px);
 transition: transform 0.24s var(--ease), opacity 0.24s var(--ease), color 0.24s var(--ease);
}

.service-link-grid a:hover,
.related-links a:hover {
 color: #fff;
 background: var(--blue);
 border-color: var(--blue);
 box-shadow: var(--shadow-red);
 transform: translateY(-3px);
}

.service-link-grid a:hover::after,
.related-links a:hover::after {
 color: #fff;
 opacity: 1;
 transform: translateX(0);
}

.breadcrumb {
 margin: 0 0 18px;
 color: rgba(255, 255, 255, 0.8);
 font-size: 14px;
}

.breadcrumb a {
 color: #fff;
 font-weight: 700;
}

.page-hero {
 min-height: 540px;
 align-items: center;
}

.page-hero .hero__content {
 padding-bottom: 80px;
}

.page-content__grid {
 display: grid;
 grid-template-columns: 1fr 0.45fr;
 gap: 56px;
 align-items: start;
}

.page-content h2 {
 margin: 0 0 18px;
 font-size: clamp(28px, 3vw, 44px);
 line-height: 1.08;
}

.page-content h3 {
 margin-top: 34px;
 font-size: 24px;
 line-height: 1.2;
}

.page-content p,
.page-content li {
 color: var(--muted);
 font-size: 17px;
}

.page-content ul {
 padding-left: 22px;
}

.sidebar-card {
 position: sticky;
 top: 120px;
 padding: 28px;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 box-shadow: var(--shadow-soft);
 background: #fff;
}

.sidebar-card h2 {
 font-size: 24px;
}

.sidebar-card p {
 margin-bottom: 22px;
}

.related-links {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 14px;
}

.notice-safe {
 padding: 18px 20px;
 border-left: 4px solid var(--blue);
 background: var(--blue-soft);
 color: var(--ink);
 font-weight: 700;
}

@media (max-width: 900px) {
 .trust-note__grid,
 .page-content__grid,
 .section-head--split {
 grid-template-columns: 1fr;
 }

 .service-link-grid,
 .related-links {
 grid-template-columns: 1fr;
 }

 .page-hero {
 min-height: 500px;
 }
}


/* Clean URL service pages: preserve original design with a compact feature strip */
.trust-strip {
 padding: 54px 0 18px;
 background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.compact-feature-list {
 grid-template-columns: repeat(3, minmax(0, 1fr));
}
.compact-feature-list .feature {
 min-height: 100%;
}
@media (max-width: 860px) {
 .compact-feature-list {
 grid-template-columns: 1fr;
 }
}

/* Service page feature cards fix: prevent narrow one-word wrapping and make the cards cleaner */
.trust-strip .compact-feature-list {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 24px;
 margin-top: 0;
 align-items: stretch;
}

.trust-strip .compact-feature-list .feature {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 14px;
 min-height: 230px;
 padding: 30px 28px;
 background: rgba(255, 255, 255, 0.94);
 border: 1px solid rgba(215, 225, 238, 0.95);
 border-radius: 24px;
 box-shadow: 0 18px 45px rgba(8, 31, 58, 0.06);
}

.trust-strip .compact-feature-list .feature:hover {
 transform: translateY(-6px);
 box-shadow: 0 26px 60px rgba(8, 31, 58, 0.12);
}

.trust-strip .compact-feature-list .feature__icon {
 width: 56px;
 height: 56px;
 flex: 0 0 56px;
 font-size: 20px;
}

.trust-strip .compact-feature-list .feature h3 {
 margin: 2px 0 0;
 font-size: clamp(22px, 2vw, 28px);
 line-height: 1.15;
 color: var(--navy);
}

.trust-strip .compact-feature-list .feature p {
 width: 100%;
 margin: 0;
 color: var(--muted);
 font-size: 16px;
 line-height: 1.75;
 overflow-wrap: normal;
 word-break: normal;
}

@media (max-width: 920px) {
 .trust-strip .compact-feature-list {
 grid-template-columns: 1fr;
 }

 .trust-strip .compact-feature-list .feature {
 min-height: auto;
 }
}

/* Dokumentasi carousel 4x2 + lightbox */
.gallery-carousel {
 position: relative;
 margin-top: 28px;
}

.gallery-carousel__viewport {
 position: relative;
 overflow: hidden;
 min-height: 520px;
}

.gallery-slide {
 display: none;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 18px;
 animation: galleryFade 0.35s ease both;
}

.gallery-slide.is-active {
 display: grid;
}

.gallery-card {
 position: relative;
 display: block;
 width: 100%;
 padding: 0;
 overflow: hidden;
 border: 0;
 border-radius: 22px;
 background: #fff;
 cursor: pointer;
 box-shadow: 0 12px 30px rgba(8, 31, 58, 0.10);
 transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
}

.gallery-card img {
 display: block;
 width: 100%;
 aspect-ratio: 4 / 3;
 object-fit: cover;
 transform: scale(1.01);
 transition: transform 0.45s var(--ease), filter 0.35s var(--ease);
}

.gallery-card::after {
 content: "Klik untuk memperbesar";
 position: absolute;
 inset: auto 14px 14px 14px;
 padding: 9px 12px;
 border-radius: 999px;
 color: #fff;
 font-size: 0.82rem;
 font-weight: 700;
 text-align: center;
 background: rgba(2, 20, 42, 0.72);
 opacity: 0;
 transform: translateY(8px);
 transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
 pointer-events: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
 transform: translateY(-4px);
 box-shadow: 0 20px 46px rgba(8, 31, 58, 0.18);
 outline: none;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
 transform: scale(1.07);
 filter: brightness(0.92);
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
 opacity: 1;
 transform: translateY(0);
}

.gallery-card__label {
 display: none !important;
 position: absolute;
 left: 12px;
 top: 12px;
 padding: 7px 10px;
 border-radius: 999px;
 color: #08213f;
 font-size: 0.78rem;
 font-weight: 800;
 background: rgba(255, 255, 255, 0.88);
 box-shadow: 0 8px 18px rgba(8, 31, 58, 0.12);
}

.gallery-carousel__controls {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 14px;
 margin-top: 24px;
}

.gallery-carousel__btn {
 width: 46px;
 height: 46px;
 border: 1px solid rgba(229, 57, 53, 0.18);
 border-radius: 50%;
 color: #e53935;
 font-size: 2rem;
 line-height: 1;
 background: #fff;
 box-shadow: 0 10px 24px rgba(8, 31, 58, 0.08);
 cursor: pointer;
 transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.gallery-carousel__btn:hover,
.gallery-carousel__btn:focus-visible {
 color: #fff;
 background: #e53935;
 transform: translateY(-2px);
 outline: none;
}

.gallery-carousel__dots {
 display: inline-flex;
 align-items: center;
 gap: 8px;
}

.gallery-carousel__dot {
 width: 10px;
 height: 10px;
 padding: 0;
 border: 0;
 border-radius: 999px;
 background: rgba(8, 31, 58, 0.20);
 cursor: pointer;
 transition: width 0.25s var(--ease), background 0.25s var(--ease);
}

.gallery-carousel__dot.is-active {
 width: 28px;
 background: #e53935;
}

.gallery-lightbox {
 position: fixed;
 inset: 0;
 z-index: 2000;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 34px;
 background: rgba(2, 13, 27, 0.86);
 opacity: 0;
 visibility: hidden;
 transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.gallery-lightbox.is-open {
 opacity: 1;
 visibility: visible;
}

.gallery-lightbox__figure {
 width: min(100%, 980px);
 margin: 0;
 text-align: center;
}

.gallery-lightbox__figure img {
 display: block;
 width: 100%;
 max-height: 78vh;
 object-fit: contain;
 border-radius: 20px;
 background: #fff;
 box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__figure figcaption {
 margin-top: 14px;
 color: #fff;
 font-weight: 700;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
 position: absolute;
 border: 0;
 color: #fff;
 background: rgba(255, 255, 255, 0.14);
 cursor: pointer;
 transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.gallery-lightbox__close {
 top: 22px;
 right: 22px;
 width: 48px;
 height: 48px;
 border-radius: 50%;
 font-size: 2rem;
 line-height: 1;
}

.gallery-lightbox__nav {
 top: 50%;
 width: 52px;
 height: 52px;
 border-radius: 50%;
 font-size: 2.2rem;
 line-height: 1;
 transform: translateY(-50%);
}

.gallery-lightbox__nav--prev { left: 28px; }
.gallery-lightbox__nav--next { right: 28px; }

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
 background: rgba(229, 57, 53, 0.92);
 outline: none;
}

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

@media (max-width: 980px) {
 .gallery-carousel__viewport { min-height: auto; }
 .gallery-slide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
 .gallery-slide { grid-template-columns: 1fr; }
 .gallery-card img { aspect-ratio: 16 / 11; }
 .gallery-lightbox { padding: 18px; }
 .gallery-lightbox__nav { top: auto; bottom: 22px; transform: none; }
 .gallery-lightbox__nav--prev { left: calc(50% - 62px); }
 .gallery-lightbox__nav--next { right: calc(50% - 62px); }
 .gallery-lightbox__figure img { max-height: 68vh; }
}

/* =========================================================
 MOBILE OPTIMIZATION PATCH - 08 Jun 2026
 Fokus: stabilitas layout mobile, menu, hero, CTA, cards, FAQ,
 gallery carousel, halaman service detail, dan pencegahan overflow.
 ========================================================= */

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

body.nav-open {
 overflow: hidden;
 touch-action: none;
}

.site-header {
 -webkit-backdrop-filter: blur(8px);
}

.site-header.is-scrolled {
 -webkit-backdrop-filter: blur(18px);
}

.nav-toggle {
 flex: 0 0 44px;
 display: none;
 place-items: center;
 position: relative;
}

.nav-toggle span {
 pointer-events: none;
}

@media (max-width: 980px) {
 :root {
 --radius: 18px;
 }

 body {
 line-height: 1.58;
 }

 .container {
 width: min(100% - 32px, var(--container));
 }

 .site-header,
 .site-header:not(.is-scrolled) {
 background: rgba(255, 255, 255, 0.82);
 border-bottom: 1px solid rgba(229, 235, 242, 0.72);
 box-shadow: 0 10px 30px rgba(8, 31, 58, 0.08);
 backdrop-filter: blur(18px);
 -webkit-backdrop-filter: blur(18px);
 }

 .nav {
 min-height: 66px;
 gap: 14px;
 }

 .brand {
 width: 142px;
 min-height: 36px;
 flex: 0 0 auto;
 }

 .nav-toggle {
 display: grid;
 margin-left: auto;
 border-color: rgba(8, 31, 58, 0.14);
 background: rgba(255, 255, 255, 0.9);
 box-shadow: 0 8px 22px rgba(8, 31, 58, 0.08);
 }

 .nav-toggle span,
 .site-header:not(.is-scrolled) .nav-toggle span,
 .site-header.is-scrolled .nav-toggle span {
 background: var(--ink);
 }

 .nav-links {
 position: fixed;
 left: 16px;
 right: 16px;
 top: 76px;
 z-index: 60;
 display: grid;
 grid-template-columns: 1fr;
 gap: 0;
 max-height: min(calc(100dvh - 96px), 620px);
 padding: 10px;
 overflow: auto;
 color: var(--ink) !important;
 background: rgba(255, 255, 255, 0.96);
 border: 1px solid rgba(229, 235, 242, 0.95);
 border-radius: 22px;
 box-shadow: 0 24px 80px rgba(8, 31, 58, 0.22);
 backdrop-filter: blur(24px);
 -webkit-backdrop-filter: blur(24px);
 opacity: 0;
 visibility: hidden;
 pointer-events: none;
 transform: translateY(-10px) scale(0.985);
 transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease), transform 0.22s var(--ease);
 }

 .nav-links.is-open {
 display: grid;
 opacity: 1;
 visibility: visible;
 pointer-events: auto;
 transform: translateY(0) scale(1);
 animation: none;
 }

 .nav-links a {
 min-height: 48px;
 display: flex;
 align-items: center;
 padding: 12px 14px;
 border-radius: 14px;
 color: var(--ink);
 font-size: 15px;
 line-height: 1.25;
 }

 .nav-links > a:not(.nav-cta)::after {
 display: none;
 }

 .nav-links a:hover,
 .nav-links a:focus-visible {
 color: var(--blue);
 background: var(--blue-soft);
 }

 .nav-cta {
 min-height: 50px;
 margin-top: 8px;
 justify-content: center;
 color: #fff !important;
 background: linear-gradient(135deg, var(--blue-bright), var(--blue));
 }

 .nav-cta:hover,
 .nav-cta:focus-visible {
 color: #fff !important;
 background: var(--blue-dark);
 }

 .hero,
 .page-hero {
 min-height: auto;
 display: block;
 padding: 0;
 }

 .hero__media img {
 object-position: center center;
 transform: none;
 animation: none;
 }

 .hero__media::after {
 display: none;
 }

 .hero__shade {
 background:
 linear-gradient(180deg, rgba(4, 13, 25, 0.58) 0%, rgba(4, 13, 25, 0.70) 44%, rgba(4, 13, 25, 0.92) 100%);
 }

 .hero__content,
 .page-hero .hero__content {
 min-height: 620px;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
 padding: 138px 0 130px;
 }

 .hero h1,
 .page-hero h1 {
 max-width: 100%;
 font-size: clamp(34px, 9vw, 48px);
 line-height: 1.05;
 letter-spacing: -0.03em;
 }

 .hero__lead {
 max-width: 100%;
 margin-top: 18px;
 font-size: 16.5px;
 line-height: 1.65;
 }

 .hero__actions {
 width: 100%;
 margin-top: 26px;
 gap: 12px;
 }

 .hero__actions .btn,
 .cta-band .btn {
 width: 100%;
 }

 .hero__stats {
 display: none;
 }

 .hero__tabs {
 left: 16px;
 right: 16px;
 bottom: 18px;
 z-index: 4;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 border-radius: 18px;
 box-shadow: 0 18px 48px rgba(8, 31, 58, 0.20);
 }

 .hero__tabs a {
 min-height: 54px;
 justify-content: center;
 padding: 10px 8px;
 border-top: 0;
 border-left: 1px solid var(--line);
 text-align: center;
 font-size: 13.5px;
 line-height: 1.15;
 }

 .hero__tabs a:first-child {
 border-left: 0;
 }

 .intro,
 .services,
 .why,
 .process,
 .gallery,
 .faq,
 .articles,
 .trust-note,
 .service-hub,
 .page-content,
 .related-pages {
 padding: 64px 0;
 }

 .section-head {
 margin-bottom: 28px;
 }

 .intro__grid,
 .why__grid,
 .area__inner,
 .faq__grid,
 .section-head--split,
 .footer__grid,
 .trust-note__grid,
 .page-content__grid {
 grid-template-columns: 1fr;
 gap: 28px;
 }

 .intro h2,
 .section-head h2,
 .why h2,
 .area h2,
 .cta-band h2,
 .faq h2,
 .trust-note__grid h2,
 .page-content h2 {
 font-size: clamp(28px, 7vw, 38px);
 line-height: 1.08;
 letter-spacing: -0.02em;
 }

 .intro p:last-child,
 .faq__grid > div > p,
 .section-head--split > p,
 .trust-note__grid p:last-child,
 .page-content p,
 .page-content li {
 font-size: 16px;
 }

 .service-grid,
 .process-grid,
 .article-grid,
 .service-link-grid,
 .related-links,
 .trust-strip .compact-feature-list {
 grid-template-columns: 1fr;
 gap: 18px;
 }

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

 .service-card,
 .article-card,
 .process-grid article,
 .feature,
 .trust-strip .compact-feature-list .feature,
 .trust-note__grid,
 .sidebar-card {
 border-radius: 22px;
 }

 .service-card__body,
 .article-card__body,
 .process-grid article,
 .sidebar-card,
 .trust-note__grid,
 .trust-strip .compact-feature-list .feature {
 padding: 22px;
 }

 .service-card img {
 aspect-ratio: 16 / 10;
 }

 .article-card img {
 aspect-ratio: 16 / 9;
 }

 .service-card h3,
 .article-card h3,
 .feature h3,
 .process-grid h3,
 .page-content h3 {
 font-size: 21px;
 line-height: 1.22;
 }

 .feature {
 grid-template-columns: 48px 1fr;
 gap: 14px;
 padding: 16px;
 }

 .feature:hover,
 .service-card:hover,
 .article-card:hover,
 .process-grid article:hover,
 .trust-note__grid:hover,
 .trust-strip .compact-feature-list .feature:hover {
 transform: none;
 }

 .why__media img {
 min-height: 0;
 aspect-ratio: 4 / 3;
 object-fit: cover;
 }

 .area {
 padding: 60px 0;
 }

 .area__chips {
 gap: 10px;
 }

 .area__chips span {
 width: calc(50% - 5px);
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 44px;
 padding: 10px 12px;
 text-align: center;
 font-size: 14px;
 }

 .cta-band {
 padding: 58px 0;
 }

 .cta-band__inner,
 .footer__bottom {
 align-items: stretch;
 flex-direction: column;
 }

 .accordion {
 gap: 10px;
 }

 .accordion__item {
 border-radius: 18px;
 transform: none !important;
 }

 .accordion__item button {
 min-height: 58px;
 padding: 16px 46px 16px 16px;
 font-size: 15.5px;
 line-height: 1.35;
 }

 .accordion__item button::after {
 right: 18px;
 width: 10px;
 height: 10px;
 }

 .accordion__panel {
 padding-inline: 16px;
 }

 .accordion__item.is-open .accordion__panel {
 padding-bottom: 18px;
 }

 .footer {
 padding: 52px 0 24px;
 }

 .footer__grid {
 gap: 30px;
 }

 .floating-wa {
 right: 14px;
 bottom: max(14px, env(safe-area-inset-bottom));
 width: 56px;
 height: 56px;
 }

 .floating-wa img {
 width: 34px;
 height: 34px;
 }

 .page-content__grid {
 gap: 32px;
 }

 .sidebar-card {
 position: static;
 top: auto;
 }

 .breadcrumb {
 font-size: 13px;
 line-height: 1.45;
 }

 .gallery-carousel__viewport {
 min-height: auto;
 overflow: visible;
 }

 .gallery-slide {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 12px;
 }

 .gallery-card {
 border-radius: 16px;
 }

 .gallery-card img {
 aspect-ratio: 1 / 1;
 }

 .gallery-card::after {
 display: none;
 }

 .gallery-carousel__controls {
 gap: 10px;
 margin-top: 18px;
 }

 .gallery-carousel__btn {
 width: 42px;
 height: 42px;
 font-size: 1.7rem;
 }

 .gallery-lightbox {
 padding: 16px;
 }

 .gallery-lightbox__figure img {
 max-height: 70vh;
 border-radius: 16px;
 }
}

@media (max-width: 640px) {
 .container {
 width: min(100% - 28px, var(--container));
 }

 .brand {
 width: 132px;
 }

 .nav {
 min-height: 62px;
 }

 .nav-links {
 left: 12px;
 right: 12px;
 top: 70px;
 border-radius: 20px;
 }

 .hero__content,
 .page-hero .hero__content {
 min-height: 600px;
 padding: 124px 0 128px;
 }

 .hero h1,
 .page-hero h1 {
 font-size: clamp(32px, 10.5vw, 42px);
 }

 .hero__lead {
 font-size: 16px;
 }

 .btn {
 min-height: 50px;
 padding: 0 18px;
 font-size: 15px;
 }

 .hero__tabs {
 left: 12px;
 right: 12px;
 bottom: 14px;
 }

 .hero__tabs a {
 min-height: 50px;
 font-size: 12.5px;
 }

 .intro,
 .services,
 .why,
 .process,
 .gallery,
 .faq,
 .articles,
 .trust-note,
 .service-hub,
 .page-content,
 .related-pages {
 padding: 54px 0;
 }

 .service-card__body,
 .article-card__body,
 .process-grid article,
 .sidebar-card,
 .trust-note__grid,
 .trust-strip .compact-feature-list .feature {
 padding: 20px;
 }

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

 .gallery-grid img {
 border-radius: 14px;
 }

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

 .gallery-card img {
 aspect-ratio: 4 / 3;
 }

 .area__chips span {
 width: 100%;
 }

 .footer__bottom {
 font-size: 14px;
 }
}

@media (max-width: 420px) {
 .container {
 width: min(100% - 24px, var(--container));
 }

 .brand {
 width: 122px;
 }

 .nav-toggle {
 width: 42px;
 height: 42px;
 }

 .hero__content,
 .page-hero .hero__content {
 min-height: 590px;
 padding-top: 116px;
 }

 .hero__tabs a {
 padding-inline: 5px;
 font-size: 11.5px;
 }

 .hero__lead,
 .intro p:last-child,
 .faq__grid > div > p,
 .section-head--split > p,
 .trust-note__grid p:last-child,
 .page-content p,
 .page-content li {
 font-size: 15.5px;
 }

 .service-card h3,
 .article-card h3,
 .feature h3,
 .process-grid h3,
 .page-content h3 {
 font-size: 20px;
 }

 .gallery-slide,
 .gallery-grid {
 gap: 10px;
 }

 .floating-wa {
 width: 52px;
 height: 52px;
 }

 .floating-wa img {
 width: 31px;
 height: 31px;
 }
}


/* Article folder pages */
.article-hero .hero__lead { max-width: 780px; }
.article-detail article { background: #ffffff; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 28px; padding: 34px; box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08); }
.article-detail article h2:first-of-type { margin-top: 22px; }
.article-keywords { justify-content: flex-start; margin: 14px 0 24px; }
.article-keywords span { background: #f8fafc; color: #1f2937; border: 1px solid rgba(15,23,42,.08); }
.article-hub { padding-top: 96px; }
.article-card a { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 768px) {
 .article-detail article { padding: 24px 18px; border-radius: 22px; }
 .article-hub { padding-top: 64px; }
 .article-keywords { gap: 8px; }
 .article-keywords span { font-size: 12px; padding: 8px 10px; }
}


/* Enhanced Article Animations */
.article-hero .breadcrumb,
.article-hero .eyebrow,
.article-hero h1,
.article-hero .hero__lead,
.article-hero .hero__actions {
 opacity: 0;
 transform: translateY(18px);
 animation: articleFadeUp 0.72s var(--ease) forwards;
}
.article-hero .eyebrow { animation-delay: 0.08s; }
.article-hero h1 { animation-delay: 0.16s; }
.article-hero .hero__lead { animation-delay: 0.24s; }
.article-hero .hero__actions { animation-delay: 0.32s; }
.article-hub .section-head,
.article-detail article,
.article-detail .sidebar-card,
.related-pages .section-head,
.related-pages .related-links {
 opacity: 0;
 transform: translateY(24px);
 animation: articleFadeUp 0.78s var(--ease) forwards;
}
.article-detail article { animation-delay: 0.08s; }
.article-detail .sidebar-card { animation-delay: 0.16s; }
.related-pages .section-head { animation-delay: 0.08s; }
.related-pages .related-links { animation-delay: 0.16s; }
.article-card {
 position: relative;
 overflow: hidden;
 transform-origin: center bottom;
 transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-color 0.32s var(--ease), background 0.32s var(--ease);
}
.article-card::after {
 content: "";
 position: absolute;
 inset: 0;
 pointer-events: none;
 background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.52) 45%, transparent 70%);
 transform: translateX(-130%);
 transition: transform 0.72s var(--ease);
}
.article-card:hover {
 transform: translateY(-9px);
}
.article-card:hover::after {
 transform: translateX(130%);
}
.article-card img {
 transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}
.article-card:hover img {
 transform: scale(1.06);
 filter: saturate(1.06) contrast(1.03);
}
.article-card__body span,
.article-card__body h3,
.article-card__body p,
.article-card__body a {
 transition: transform 0.28s var(--ease), opacity 0.28s var(--ease), color 0.28s var(--ease);
}
.article-card:hover .article-card__body h3,
.article-card:hover .article-card__body p,
.article-card:hover .article-card__body a {
 transform: translateX(3px);
}
.article-detail article h2,
.article-detail article p,
.article-detail article ul,
.article-detail article .article-keywords {
 animation: articleSoftReveal 0.72s var(--ease) both;
}
.article-detail article h2:nth-of-type(1) { animation-delay: .08s; }
.article-detail article p:nth-of-type(2),
.article-detail article ul:nth-of-type(1) { animation-delay: .14s; }
.article-detail article h2:nth-of-type(2) { animation-delay: .18s; }
.article-detail article h2:nth-of-type(3) { animation-delay: .24s; }
.article-keywords span {
 transition: transform 0.24s var(--ease), background 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.article-keywords span:hover {
 transform: translateY(-3px);
 box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}
.related-links a {
 transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease), background 0.26s var(--ease);
}
.related-links a:hover {
 transform: translateY(-4px);
}
@keyframes articleFadeUp {
 from { opacity: 0; transform: translateY(24px); }
 to { opacity: 1; transform: translateY(0); }
}
@keyframes articleSoftReveal {
 from { opacity: 0; transform: translateY(14px); }
 to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
 .article-hero .breadcrumb,
 .article-hero .eyebrow,
 .article-hero h1,
 .article-hero .hero__lead,
 .article-hero .hero__actions,
 .article-hub .section-head,
 .article-detail article,
 .article-detail .sidebar-card,
 .related-pages .section-head,
 .related-pages .related-links,
 .article-detail article h2,
 .article-detail article p,
 .article-detail article ul,
 .article-detail article .article-keywords {
 animation: none !important;
 opacity: 1 !important;
 transform: none !important;
 }
}


/* Final mobile and article stability patch */
html:not(.js-enabled) [data-reveal] {
 opacity: 1 !important;
 transform: none !important;
}

.article-main,
.article-main * {
 box-sizing: border-box;
}

.article-main img,
.article-card img,
.service-card img,
.gallery-card img {
 max-width: 100%;
 height: auto;
}

.article-detail article,
.article-card,
.sidebar-card,
.related-links a,
.page-content article {
 min-width: 0;
 overflow-wrap: anywhere;
}

.article-detail article {
 width: 100%;
}

.article-hub .article-grid {
 align-items: stretch;
}

.article-card {
 height: 100%;
}

.article-card__body {
 display: flex;
 min-height: 100%;
 flex-direction: column;
}

.article-card__body a {
 margin-top: auto;
}

@media (max-width: 980px) {
 .site-header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 }

 .article-hero.page-hero,
 .article-hero.hero {
 min-height: auto;
 }

 .article-hero .hero__content,
 .page-hero.article-hero .hero__content {
 min-height: 520px;
 padding-top: 118px;
 padding-bottom: 72px;
 }

 .article-hero .breadcrumb {
 max-width: 100%;
 white-space: normal;
 }

 .article-hero h1 {
 font-size: clamp(30px, 8.6vw, 44px);
 line-height: 1.08;
 }

 .article-hero .hero__lead {
 font-size: 16px;
 line-height: 1.6;
 }

 .article-hub {
 padding-top: 58px;
 }

 .article-hub .section-head,
 .article-hub .section-head--split {
 display: block;
 margin-bottom: 22px;
 }

 .article-grid,
 .article-hub .article-grid {
 grid-template-columns: 1fr;
 gap: 18px;
 }

 .article-card {
 border-radius: 22px;
 transform: none !important;
 }

 .article-card::after {
 display: none;
 }

 .article-card img {
 display: block;
 width: 100%;
 aspect-ratio: 16 / 9;
 object-fit: cover;
 transform: none !important;
 filter: none !important;
 }

 .article-card__body {
 padding: 20px;
 }

 .article-card h3 {
 font-size: 20px;
 line-height: 1.25;
 }

 .article-card p {
 font-size: 15.5px;
 line-height: 1.6;
 }

 .article-detail .page-content__grid,
 .page-content__grid {
 grid-template-columns: minmax(0, 1fr);
 gap: 24px;
 }

 .article-detail article {
 padding: 24px 20px;
 border-radius: 22px;
 }

 .article-detail article h2 {
 font-size: clamp(24px, 7vw, 32px);
 line-height: 1.15;
 }

 .article-detail article p,
 .article-detail article li {
 font-size: 15.8px;
 line-height: 1.68;
 }

 .article-keywords {
 display: flex;
 width: 100%;
 gap: 8px;
 }

 .article-keywords span {
 width: auto;
 max-width: 100%;
 justify-content: flex-start;
 text-align: left;
 font-size: 12px;
 line-height: 1.25;
 }

 .related-links {
 grid-template-columns: 1fr;
 }

 .related-links a {
 width: 100%;
 min-height: 48px;
 padding: 14px 16px;
 line-height: 1.35;
 }
}

@media (max-width: 640px) {
 .container {
 width: min(100% - 24px, var(--container));
 }

 .nav {
 min-height: 60px;
 }

 .brand {
 width: 118px;
 }

 .brand img {
 max-height: 36px;
 object-fit: contain;
 }

 .nav-toggle {
 width: 42px;
 height: 42px;
 }

 .nav-links {
 left: 10px;
 right: 10px;
 top: 66px;
 max-height: calc(100dvh - 82px);
 padding: 8px;
 }

 .nav-links a {
 min-height: 46px;
 padding: 11px 13px;
 font-size: 14.5px;
 }

 .article-hero .hero__content,
 .page-hero.article-hero .hero__content {
 min-height: 480px;
 padding-top: 108px;
 padding-bottom: 54px;
 }

 .article-hero h1 {
 font-size: clamp(28px, 9.2vw, 38px);
 letter-spacing: -0.025em;
 }

 .article-hero .hero__lead {
 font-size: 15.5px;
 }

 .article-hero .hero__actions {
 flex-direction: column;
 align-items: stretch;
 gap: 10px;
 }

 .article-hero .hero__actions .btn {
 width: 100%;
 justify-content: center;
 }

 .article-hub,
 .article-detail,
 .related-pages {
 padding-top: 46px;
 padding-bottom: 46px;
 }

 .article-card__body {
 padding: 18px;
 }

 .article-card h3 {
 font-size: 19px;
 }

 .article-detail article {
 padding: 20px 16px;
 border-radius: 20px;
 }

 .sidebar-card {
 padding: 18px;
 }

 .floating-wa {
 z-index: 55;
 }
}

@media (max-width: 420px) {
 .article-hero h1 {
 font-size: 30px;
 }

 .article-card h3 {
 font-size: 18.5px;
 }

 .article-detail article h2 {
 font-size: 24px;
 }
}

.footer-backtop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(210, 32, 48, 0.22);
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(13, 31, 55, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.footer-backtop:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 18px 40px rgba(13, 31, 55, 0.18);
}

@media (max-width: 640px) {
  .footer-backtop {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }
}

/* =========================================================
   FAQ MARGIN / SPACING REFINEMENT PATCH
   Merapikan area FAQ sesuai screenshot: margin section, grid,
   jarak antar-kolom, padding card, dan responsivitas mobile.
   ========================================================= */
.faq {
  padding: 88px 0;
}

.faq .container {
  width: min(100% - 96px, 1240px);
}

.faq__grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(48px, 5vw, 88px);
  align-items: start;
}

.faq__grid > div:first-child {
  max-width: 520px;
  padding-top: 4px;
}

.faq h2 {
  margin: 10px 0 14px;
  max-width: 510px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.faq__grid > div > p {
  max-width: 520px;
  line-height: 1.55;
}

.accordion {
  gap: 14px;
}

.accordion__item {
  border-radius: 12px;
}

.accordion__item button {
  min-height: 60px;
  padding: 18px 64px 18px 24px;
  line-height: 1.35;
}

.accordion__item button::after {
  right: 26px;
}

.accordion__panel {
  padding-inline: 24px;
}

.accordion__item.is-open .accordion__panel {
  padding-bottom: 24px;
}

.accordion__panel p {
  max-width: 96%;
  line-height: 1.58;
}

@media (max-width: 980px) {
  .faq {
    padding: 64px 0;
  }

  .faq .container {
    width: min(100% - 36px, var(--container));
  }

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

  .faq__grid > div:first-child,
  .faq h2,
  .faq__grid > div > p {
    max-width: 100%;
  }

  .faq h2 {
    margin: 8px 0 12px;
    font-size: clamp(32px, 8vw, 44px);
  }

  .accordion {
    gap: 12px;
  }

  .accordion__item button {
    min-height: 58px;
    padding: 16px 54px 16px 18px;
    font-size: 15.5px;
  }

  .accordion__item button::after {
    right: 20px;
  }

  .accordion__panel {
    padding-inline: 18px;
  }

  .accordion__item.is-open .accordion__panel {
    padding-bottom: 18px;
  }
}

@media (max-width: 560px) {
  .faq {
    padding: 52px 0;
  }

  .faq .container {
    width: min(100% - 28px, var(--container));
  }

  .faq__grid {
    gap: 22px;
  }

  .faq h2 {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.06;
  }

  .faq__grid > div > p {
    font-size: 16px;
  }

  .accordion__item {
    border-radius: 11px;
  }

  .accordion__item button {
    min-height: 56px;
    padding: 15px 48px 15px 16px;
    font-size: 15px;
  }

  .accordion__item button::after {
    right: 18px;
    width: 10px;
    height: 10px;
  }

  .accordion__panel {
    padding-inline: 16px;
  }

  .accordion__panel p {
    max-width: 100%;
    font-size: 15px;
  }
}

/* =========================================================
   BACK TO TOP ICON CENTERING PATCH
   Icon dibuat SVG agar selalu presisi di tengah lingkaran dan muncul konsisten di semua halaman.
   ========================================================= */
.footer-backtop {
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 999px;
  border: 1px solid rgba(210, 32, 48, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  line-height: 0 !important;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(13, 31, 55, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.footer-backtop__icon {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0;
  transform: translateY(-1px);
  pointer-events: none;
}

.footer-backtop:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(210, 32, 48, 0.42);
  box-shadow: 0 18px 40px rgba(13, 31, 55, 0.2);
}

.footer-backtop:focus-visible {
  outline: 3px solid rgba(210, 32, 48, 0.24);
  outline-offset: 4px;
}

.footer__bottom {
  align-items: center;
}

@media (max-width: 640px) {
  .footer__bottom {
    align-items: flex-start;
  }

  .footer-backtop {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  .footer-backtop__icon {
    width: 21px;
    height: 21px;
  }
}


/* Article card clickability and distinct gallery images */
.article-card { cursor: pointer; }
.article-card__media { display: block; margin: 0; overflow: hidden; color: inherit; }
.article-card__media img { display: block; }
.article-card h3 a.article-title-link {
  color: inherit;
  text-decoration: none;
  margin: 0;
  display: inline;
  position: relative;
  z-index: 2;
}
.article-card h3 a.article-title-link:hover { color: var(--red); }
.article-card h3 a.article-title-link:focus-visible,
.article-card__media:focus-visible {
  outline: 3px solid rgba(200, 16, 46, 0.28);
  outline-offset: 4px;
  border-radius: 10px;
}
.article-card a:not(.article-title-link):not(.article-card__media) { position: relative; z-index: 2; }
@media (hover: hover) {
  .article-card:hover h3 a.article-title-link { color: var(--red); }
}


/* Back-to-top mobile size hard fix */
.footer-backtop {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.footer-backtop svg,
.footer-backtop__icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  display: block !important;
  margin: 0 !important;
  transform: none !important;
  flex: 0 0 18px !important;
}

.footer-backtop svg * {
  vector-effect: non-scaling-stroke;
}

@media (max-width: 640px) {
  .footer-backtop {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
  }

  .footer-backtop svg,
  .footer-backtop__icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    flex-basis: 16px !important;
  }
}

/* =========================================================
   DESKTOP HERO TABS + BACKTOP FINAL PATCH
   - Desktop tab layanan dibuat center dan rapi seperti versi mobile.
   - Back-to-top dikunci sebagai tombol bulat di desktop dan mobile.
   ========================================================= */
@media (min-width: 981px) {
  .hero {
    overflow: visible;
  }

  .hero__tabs {
    left: 50% !important;
    right: auto !important;
    bottom: -42px !important;
    transform: translateX(-50%) !important;
    width: min(660px, calc(100vw - 64px)) !important;
    grid-template-columns: repeat(3, 1fr) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 60px rgba(8, 31, 58, 0.18) !important;
    border: 1px solid rgba(8, 31, 58, 0.08) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    isolation: isolate;
  }

  .hero__tabs a {
    min-height: 84px !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 28px !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .hero__tabs a:hover {
    transform: none !important;
  }

  .intro,
  .services {
    padding-top: 132px;
  }
}

.footer .footer-backtop,
.footer__bottom .footer-backtop,
a.footer-backtop {
  position: relative !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(210, 32, 48, 0.28) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: var(--primary) !important;
  line-height: 0 !important;
  overflow: hidden !important;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(13, 31, 55, 0.18) !important;
}

.footer .footer-backtop::before,
.footer__bottom .footer-backtop::before,
a.footer-backtop::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  background: rgba(255, 255, 255, 0.96) !important;
  z-index: 0 !important;
}

.footer .footer-backtop svg,
.footer .footer-backtop__icon,
.footer__bottom .footer-backtop svg,
.footer__bottom .footer-backtop__icon,
a.footer-backtop svg,
a.footer-backtop .footer-backtop__icon {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex: 0 0 18px !important;
  margin: 0 !important;
  transform: none !important;
  color: var(--primary) !important;
}

@media (max-width: 640px) {
  .footer__bottom {
    align-items: flex-start !important;
    gap: 18px !important;
  }

  .footer .footer-backtop,
  .footer__bottom .footer-backtop,
  a.footer-backtop {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    background: #fff !important;
  }

  .footer .footer-backtop svg,
  .footer .footer-backtop__icon,
  .footer__bottom .footer-backtop svg,
  .footer__bottom .footer-backtop__icon,
  a.footer-backtop svg,
  a.footer-backtop .footer-backtop__icon {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    min-height: 17px !important;
    max-width: 17px !important;
    max-height: 17px !important;
    flex-basis: 17px !important;
  }
}
