:root {
    --ink: #0f1a2b;
    --surface: #f5f7fa;
    --card: #ffffff;
    --brand: #045d78;
    --accent: #d98f19;
    --muted: #5d6878;
    --edge: #dce3ec;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Manrope, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 10%, #d6ebf2, transparent 42%),
        radial-gradient(circle at 90% 0%, #ffeccc, transparent 33%),
        var(--surface);
    line-height: 1.6;
}

.bg-orb {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.28;
    z-index: -1;
}

.bg-orb-one {
    background: #79b4c9;
    left: -120px;
    top: -140px;
}

.bg-orb-two {
    background: #f4ce88;
    right: -120px;
    bottom: -150px;
}

.shell {
    width: min(1320px, 95vw);
    margin: 0 auto;
}

.top-bar {
    height: 40px;
    background: #18252f;
    color: #e9f6fb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.top-bar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.86rem;
    white-space: nowrap;
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease;
}

.top-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.top-item-whatsapp {
    color: #9ef3bc;
}

.top-item-whatsapp svg {
    width: 15px;
    height: 15px;
}

.top-item:hover,
.top-item:focus-visible {
    color: #8ed3e6;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: linear-gradient(102deg, #ffffff 0%, #f6fbff 20%, #0b6f8d 44%, #04556d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    text-decoration: none;
    color: var(--ink);
    font-family: Fraunces, Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(140deg, #ffffff 0%, #ffffff 62%, #dff2f9 100%);
    padding: 0.2rem 0.55rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.brand-logo {
    width: 210px;
    height: 82px;
    object-fit: contain;
}

.brand-logo-light {
    display: none;
}

.site-nav {
    display: flex;
    gap: 1.15rem;
    align-items: center;
}

.site-nav a {
    color: #eaf5fb;
    text-decoration: none;
    font-weight: 600;
    padding: 0.4rem 0.65rem;
    border-radius: 3px;
}

.site-nav a.active,
.site-nav a:hover {
    color: #ffffff;
    background: #18252f;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-main {
    text-decoration: none;
    color: #eaf5fb;
    font-weight: 600;
    padding: 0.4rem 0.65rem;
    border-radius: 3px;
    display: inline-block;
}

.nav-dropdown.active .nav-dropdown-main,
.nav-dropdown-main:hover {
    color: #ffffff;
    background: #18252f;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #0d5e78;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(15, 26, 43, 0.12);
    padding: 0.35rem;
    display: none;
    z-index: 30;
}

.nav-dropdown-menu a {
    display: block;
    border-radius: 3px;
    color: #e8f6fb;
    padding: 0.4rem 0.55rem;
}

.nav-dropdown-menu a:hover {
    background: #18252f;
    color: #ffffff;
}

.nav-dropdown-menu a.active {
    background: #000000;
    color: #ffffff;
}

.nav-login {
    background: #000000;
    color: #ffffff;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
}

.nav-login:hover,
.nav-login.active {
    background: #18252f;
    color: #ffffff;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--edge);
    background: #fff;
    border-radius: 10px;
    padding: 0.45rem 0.75rem;
    color: var(--ink);
    line-height: 1;
}

.hamburger-icon {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.hero {
    align-items: stretch;
    padding: 0 0 2.8rem;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    border: 1px solid var(--edge);
    border-left: 0;
    border-right: 0;
    box-shadow: 0 20px 50px rgba(15, 26, 43, 0.15);
    height: 600px;
    min-height: 600px;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 700ms ease, transform 1100ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: clamp(1.25rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #f3f7ff;
    background: linear-gradient(90deg, rgba(7, 20, 40, 0.82) 0%, rgba(7, 20, 40, 0.6) 45%, rgba(7, 20, 40, 0.35) 100%);
}

.hero-overlay h1 {
    margin-top: 0.2rem;
    margin-bottom: 0.8rem;
    font-size: clamp(1.9rem, 4.5vw, 3.4rem);
    font-family: Fraunces, Georgia, serif;
}

.hero-overlay p {
    max-width: 64ch;
}

.hero-dots {
    position: absolute;
    left: 1.2rem;
    bottom: 1rem;
    z-index: 3;
    display: flex;
    gap: 0.45rem;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
    padding: 0;
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--accent);
}

.section h1,
.section h2 {
    font-family: Fraunces, Georgia, serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0.2rem 0 0.9rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.76rem;
    color: var(--brand);
    margin-bottom: 0.4rem;
}

.actions {
    margin-top: 1.3rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border: 0;
    border-radius: 12px;
    padding: 0.78rem 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0b6f8d, #04556d);
    color: #fff;
}

.btn-secondary {
    background: #e9f2f6;
    color: #17324f;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(9, 34, 58, 0.2);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 12px rgba(9, 34, 58, 0.16);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0d7f9f, #05627c);
}

.btn-secondary:hover {
    background: #d8eaf2;
    color: #0f2b45;
}

.hero-card,
.card,
.panel,
.contact-form,
.timeline article {
    background: var(--card);
    border: 1px solid var(--edge);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 26, 43, 0.06);
}

.hero-card {
    padding: 1.35rem;
}

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

.hero-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #edf2f7;
}

.hero-card li:last-child {
    border-bottom: 0;
}

.section {
    padding: 2.2rem 0;
}

.about-page-header {
    background:
        linear-gradient(120deg, rgba(11, 111, 141, 0.9), rgba(4, 85, 109, 0.93)),
        url("../img/bg-shape.png") center/cover no-repeat;
    color: #ffffff;
    padding: 2.5rem 0;
}

.about-page-header .eyebrow {
    color: #d9f2f8;
    margin-bottom: 0.35rem;
}

.about-page-header h1 {
    margin: 0;
    font-family: Fraunces, Georgia, serif;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.2rem;
    align-items: center;
}

.about-hero-copy p {
    color: #e7f6fb;
    max-width: 64ch;
}

.about-hero-media {
    min-height: 360px;
}

.about-hero-media .layer-back {
    width: min(88%, 460px);
    height: 270px;
    top: 18px;
    left: 0;
}

.about-hero-media .layer-front {
    width: min(76%, 380px);
    height: 240px;
    right: 0;
    bottom: 0;
}

.about-band {
    padding-top: 1.2rem;
}

.about-band-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.about-mini-card {
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 3px;
    padding: 0.9rem 1rem;
    box-shadow: 0 10px 22px rgba(15, 26, 43, 0.08);
    display: grid;
    gap: 0.3rem;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-mini-card:hover {
    transform: translateY(-3px);
    border-color: #9dc8d8;
    box-shadow: 0 16px 30px rgba(15, 26, 43, 0.14);
}

.about-mini-card strong {
    font-family: Fraunces, Georgia, serif;
}

.about-mini-card span {
    color: #35506a;
    font-size: 0.92rem;
}

.contact-mini-stack {
    grid-template-columns: 1fr;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: stretch;
}

.about-split.reverse > :first-child {
    order: 2;
}

.about-split.reverse > :last-child {
    order: 1;
}

.about-contrast {
    background: linear-gradient(180deg, #eef7fb, #e2f1f7);
}

.about-feature-media {
    height: 100%;
}

.about-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.about-layered {
    min-height: 360px;
}

.about-layered .layer-back {
    width: min(88%, 440px);
    height: 260px;
    left: 0;
    top: 22px;
}

.about-layered .layer-front {
    width: min(74%, 350px);
    height: 230px;
    right: 0;
    bottom: 0;
}

.about-text-block p {
    color: #29435f;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.about-value-card {
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 10px 22px rgba(15, 26, 43, 0.07);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.about-value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(15, 26, 43, 0.12);
}

.about-value-card h3 {
    margin: 0 0 0.35rem;
    font-family: Fraunces, Georgia, serif;
}

.about-value-card p {
    margin: 0;
    color: #35506a;
}

.about-content {
    display: grid;
    gap: 1rem;
}

.about-block h2 {
    margin-top: 0;
}

.about-cta {
    background:
        linear-gradient(rgba(11, 111, 141, 0.9), rgba(4, 85, 109, 0.92)),
        url("../img/bg-shape.png") center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.about-cta p {
    color: #e2f2fa;
}

.services-page-header {
    background:
        linear-gradient(110deg, rgba(11, 111, 141, 0.9), rgba(4, 85, 109, 0.9)),
        url("../img/customers.jpg") center/cover no-repeat;
    color: #ffffff;
    padding: 2.4rem 0;
}

.services-page-header .eyebrow {
    color: #d7f1f8;
    margin-bottom: 0.35rem;
}

.services-page-header h1 {
    margin: 0 0 0.55rem;
    font-family: Fraunces, Georgia, serif;
}

.services-page-header p {
    margin: 0;
    max-width: 66ch;
    color: #e8f7fc;
}

.services-hero {
    padding: 2.6rem 0;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.2rem;
    align-items: center;
}

.services-hero-copy p {
    margin-bottom: 0.9rem;
}

.services-hero-media {
    min-height: 360px;
}

.services-hero-media .layer-back {
    width: min(88%, 460px);
    height: 270px;
    top: 16px;
    left: 0;
    animation: heroLayerFloat 4s ease-in-out infinite;
}

.services-hero-media .layer-front {
    width: min(76%, 380px);
    height: 240px;
    right: 0;
    bottom: 0;
    animation: heroLayerFloat 4s ease-in-out infinite 0.35s;
}

@keyframes heroLayerFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.service-showcase {
    display: grid;
    gap: 1rem;
}

.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: stretch;
}

.services-split.reverse > :first-child {
    order: 2;
}

.services-split.reverse > :last-child {
    order: 1;
}

.service-feature-image img {
    height: 100%;
    min-height: 360px;
}

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

.service-modern-card {
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 10px 22px rgba(15, 26, 43, 0.07);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-modern-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(15, 26, 43, 0.12);
}

.service-modern-card h3 {
    margin: 0 0 0.4rem;
    font-family: Fraunces, Georgia, serif;
}

.service-modern-card p {
    margin: 0 0 0.6rem;
    color: #2c4762;
}

.service-modern-card a {
    color: #0b6f8d;
    text-decoration: none;
    font-weight: 700;
}

.service-modern-card a:hover {
    text-decoration: underline;
}

.services-contrast {
    background: linear-gradient(180deg, #eef7fb, #e3f1f7);
}

.services-layered {
    min-height: 360px;
}

.services-layered .layer-back {
    width: min(88%, 440px);
    height: 260px;
    left: 0;
    top: 22px;
}

.services-layered .layer-front {
    width: min(74%, 350px);
    height: 230px;
    right: 0;
    bottom: 0;
}

.personal-page-header {
    background:
        linear-gradient(115deg, rgba(11, 111, 141, 0.9), rgba(4, 85, 109, 0.9)),
        url("../img/1.jpeg") center/cover no-repeat;
    color: #ffffff;
    padding: 2.4rem 0;
}

.personal-page-header .eyebrow {
    color: #d9f2f8;
}

.personal-page-header h1 {
    margin: 0 0 0.6rem;
}

.personal-page-header p {
    margin: 0;
    max-width: 72ch;
    color: #e7f6fb;
}

.personal-content {
    display: grid;
    gap: 0.95rem;
}

.personal-section h2 {
    margin-top: 0;
    margin-bottom: 0.55rem;
}

.personal-section p {
    margin: 0 0 0.6rem;
    color: #2b455f;
}

.personal-section p:last-child {
    margin-bottom: 0;
}

.personal-hero {
    padding: 2.6rem 0;
}

.personal-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.2rem;
    align-items: center;
}

.personal-hero-copy p {
    margin-bottom: 0.9rem;
}

.personal-hero-media {
    min-height: 360px;
}

.personal-hero-media .layer-back {
    width: min(88%, 460px);
    height: 270px;
    top: 16px;
    left: 0;
    animation: personalLayerFloat 4s ease-in-out infinite;
}

.personal-hero-media .layer-front {
    width: min(76%, 380px);
    height: 240px;
    right: 0;
    bottom: 0;
    animation: personalLayerFloat 4s ease-in-out infinite 0.35s;
}

@keyframes personalLayerFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.personal-info-boxes {
    padding-top: 1.2rem;
}

.personal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: stretch;
}

.personal-split.reverse > :first-child {
    order: 2;
}

.personal-split.reverse > :last-child {
    order: 1;
}

.personal-feature-media img {
    height: 100%;
    min-height: 360px;
}

.personal-contrast {
    background: linear-gradient(180deg, #eef7fb, #e3f1f7);
}

.personal-contrast .shell {
    display: grid;
    gap: 1rem;
}

.personal-layered {
    min-height: 360px;
}

.personal-layered .layer-back {
    width: min(88%, 440px);
    height: 260px;
    left: 0;
    top: 22px;
}

.personal-layered .layer-front {
    width: min(74%, 350px);
    height: 230px;
    right: 0;
    bottom: 0;
}

.personal-stack {
    display: grid;
    gap: 0.9rem;
}

.personal-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    align-items: stretch;
}

.personal-inline > :first-child {
    height: 100%;
}

.personal-inline-media {
    position: relative;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--edge);
    box-shadow: 0 12px 24px rgba(15, 26, 43, 0.12);
    height: 100%;
    min-height: 100%;
}

.personal-inline-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
}

.personal-services-grid-wrap .service-modern-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-intro,
.infra-section,
.join-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.2rem;
    align-items: center;
}

.infra-section {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
}

.info-block {
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 16px;
    padding: 1.1rem;
    box-shadow: 0 12px 28px rgba(15, 26, 43, 0.08);
}

.image-placeholder {
    min-height: 300px;
    border-radius: 16px;
    border: 2px dashed #82b7cc;
    background: linear-gradient(135deg, #edf7fb, #d9ebf4);
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    color: #0d5b75;
    padding: 1rem;
}

.image-placeholder span {
    font-family: Fraunces, Georgia, serif;
    font-size: 1.4rem;
}

.image-placeholder small {
    margin-top: 0.3rem;
    color: #356077;
}

.feature-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--edge);
    box-shadow: 0 14px 30px rgba(15, 26, 43, 0.12);
}

.infra-section .feature-image {
    height: 100%;
}

.feature-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.infra-section .feature-image img {
    height: 100%;
    min-height: 100%;
}

.layered-media {
    position: relative;
    min-height: 320px;
}

.layered-media .layer {
    position: absolute;
    border-radius: 16px;
    border: 1px solid var(--edge);
    box-shadow: 0 16px 32px rgba(13, 26, 44, 0.2);
    object-fit: cover;
}

.layered-media .layer-back {
    width: 74%;
    height: 250px;
    left: 0;
    top: 24px;
}

.layered-media .layer-front {
    width: 68%;
    height: 225px;
    right: 0;
    bottom: 0;
}

.layered-media-one .layer-back {
    transform: rotate(-2deg);
}

.layered-media-one .layer-front {
    transform: rotate(2deg);
}

.layered-media-two .layer-back {
    transform: rotate(2deg);
}

.layered-media-two .layer-front {
    transform: rotate(-2deg);
}

.core-services .section-head {
    margin-bottom: 1rem;
}

.services-rich-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.service-tile {
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 10px 22px rgba(15, 26, 43, 0.07);
    animation: tileRise 650ms ease both;
}

.service-tile:nth-child(2) { animation-delay: 80ms; }
.service-tile:nth-child(3) { animation-delay: 160ms; }
.service-tile:nth-child(4) { animation-delay: 240ms; }
.service-tile:nth-child(5) { animation-delay: 320ms; }
.service-tile:nth-child(6) { animation-delay: 400ms; }

.service-tile h3 {
    margin: 0 0 0.45rem;
    font-family: Fraunces, Georgia, serif;
}

.service-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.55rem;
    border-radius: 12px;
    background: #e5f3f8;
    color: #0b6f8d;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.services-slider-section {
    --service-slide-size: clamp(230px, 24vw, 300px);
    background: linear-gradient(135deg, #0b6f8d, #04556d);
    border-radius: 16px;
    padding: 1rem;
}

.services-slider-section .section-head .eyebrow,
.services-slider-section .section-head h2 {
    color: #ffffff;
}

.services-carousel {
    overflow: hidden;
    border-radius: 16px;
}

.services-carousel-track {
    display: flex;
    gap: 0.9rem;
    width: max-content;
    transition: transform 650ms ease;
    will-change: transform;
}

.services-carousel-card {
    width: var(--service-slide-size);
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 0.95rem;
    box-shadow: 0 10px 22px rgba(15, 26, 43, 0.08);
}

.services-carousel-card h3 {
    margin: 0 0 0.45rem;
    font-family: Fraunces, Georgia, serif;
}

.services-carousel-card p {
    margin: 0 0 0.65rem;
    color: #29435f;
    font-size: 0.91rem;
    line-height: 1.52;
}

.services-carousel-card a {
    color: #0b6f8d;
    text-decoration: none;
    font-weight: 700;
}

.services-carousel-card a:hover {
    text-decoration: underline;
}

.services-carousel-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e4f3f8;
    color: #0b6f8d;
    margin-bottom: 0.55rem;
    animation: serviceIconPulse 2.4s ease-in-out infinite;
}

.services-carousel-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@keyframes serviceIconPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(11, 111, 141, 0);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 6px rgba(11, 111, 141, 0.16);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(11, 111, 141, 0);
    }
}

.services-page .section-head p {
    margin: 0;
}

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

.service-detail-card {
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 10px 22px rgba(15, 26, 43, 0.07);
}

.service-detail-card h3 {
    margin: 0 0 0.45rem;
    font-family: Fraunces, Georgia, serif;
}

.service-detail-card a {
    display: inline-block;
    margin-top: 0.65rem;
    color: #0b6f8d;
    font-weight: 700;
    text-decoration: none;
}

.service-detail-card a:hover {
    text-decoration: underline;
}

.service-detail-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.55rem;
    border-radius: 12px;
    background: #e5f3f8;
    color: #0b6f8d;
}

.service-detail-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.why-section .info-block {
    margin-bottom: 1rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.reason-item {
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 1rem;
}

.reason-item h3 {
    margin: 0 0 0.4rem;
    font-family: Fraunces, Georgia, serif;
}

.cta-panel {
    position: relative;
    background: #0f1a2b;
    color: #dfe8f4;
    border-radius: 18px;
    padding: 1.2rem;
    overflow: hidden;
}

.cta-panel h2,
.cta-panel .eyebrow {
    color: #ffffff;
}

.float-up {
    animation: floatUp 3.2s ease-in-out infinite;
}

.slide-in-left {
    animation: slideInLeft 750ms ease both;
}

.slide-in-right {
    animation: slideInRight 750ms ease both;
}

.pulse-glow {
    animation: pulseGlow 2.7s ease-in-out infinite;
}

.shimmer-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.12) 50%, transparent 80%);
    transform: translateX(-120%);
    animation: shimmerMove 5s linear infinite;
}

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

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

@keyframes floatUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

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

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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(11, 111, 141, 0); }
    50% { box-shadow: 0 0 0 4px rgba(11, 111, 141, 0.14); }
    100% { box-shadow: 0 0 0 rgba(11, 111, 141, 0); }
}

@keyframes shimmerMove {
    from { transform: translateX(-120%); }
    to { transform: translateX(130%); }
}

.process-section {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 1.5rem;
    align-items: start;
}

.process-media {
    position: relative;
    min-height: 460px;
}

.process-img {
    position: absolute;
    width: min(76%, 360px);
    border-radius: 18px;
    border: 1px solid var(--edge);
    box-shadow: 0 18px 35px rgba(13, 26, 44, 0.18);
    object-fit: cover;
    height: 250px;
    display: block;
}

.process-img-top {
    top: 20px;
    left: 0;
}

.process-img-bottom {
    right: 0;
    bottom: 0;
}

.process-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(15, 26, 43, 0.14);
    padding: 0.7rem 0.85rem;
}

.process-badge strong {
    display: block;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.1;
}

.process-badge span {
    font-size: 0.85rem;
    color: var(--muted);
}

.process-badge-customers {
    left: 10px;
    bottom: 180px;
}

.process-badge-business {
    right: 10px;
    bottom: 12px;
}

.process-content h2 {
    margin-bottom: 1rem;
}

.process-item {
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 0.9rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 10px 22px rgba(15, 26, 43, 0.08);
}

.process-item h3 {
    margin: 0 0 0.4rem;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.12rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.process-item h3 img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 auto;
}

.process-item h3 span {
    line-height: 1.2;
}

.process-item p {
    margin: 0;
    color: #2b3b4f;
}

.ease-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.6rem;
    align-items: center;
}

.bank-section {
    --bank-card-size: clamp(250px, 30vw, 350px);
}

.bank-slider {
    overflow: hidden;
    border-radius: 18px;
    padding: 0.2rem;
}

.bank-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    transition: transform 650ms ease;
    will-change: transform;
}

.bank-card {
    width: var(--bank-card-size);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--edge);
    box-shadow: 0 14px 28px rgba(12, 27, 45, 0.12);
}

.bank-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.bank-card-body {
    padding: 1rem;
}

.bank-card-body h3 {
    margin: 0 0 0.5rem;
    font-family: Fraunces, Georgia, serif;
}

.bank-card-body p {
    margin: 0;
    color: #2a3a4f;
}

.ease-content p {
    max-width: 62ch;
}

.ease-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.ease-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.55rem;
    font-weight: 700;
    color: #1d3048;
}

.ease-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
}

.ease-media {
    position: relative;
    min-height: 390px;
}

.ease-img {
    position: absolute;
    border-radius: 16px;
    border: 1px solid var(--edge);
    box-shadow: 0 16px 34px rgba(12, 27, 45, 0.18);
    object-fit: cover;
}

.ease-img-one {
    width: min(78%, 360px);
    height: 255px;
    left: 0;
    top: 30px;
}

.ease-img-two {
    width: min(68%, 300px);
    height: 220px;
    right: 0;
    bottom: 5px;
}

.ease-shape {
    position: absolute;
    width: 130px;
    right: 36%;
    top: -12px;
    opacity: 0.9;
    animation: easeFloat 3.4s ease-in-out infinite;
}

@keyframes easeFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-14px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.section-head {
    margin-bottom: 1rem;
}

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

.card {
    padding: 1.2rem;
}

.card-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    border-radius: 12px;
    background: #e6f1f6;
    color: #0c607b;
}

.card-icon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

.ask-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.2rem;
    align-items: stretch;
    background:
        linear-gradient(rgba(11, 111, 141, 0.86), rgba(11, 111, 141, 0.86)),
        url("../img/bg-shape.png") center/cover no-repeat;
    border-radius: 18px;
    padding: 1rem;
}

.ask-left,
.ask-right {
    background: #ffffff;
    border: 1px solid var(--edge);
    border-radius: 16px;
    padding: 1.1rem;
    box-shadow: 0 12px 28px rgba(15, 26, 43, 0.08);
}

.ask-stats {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.ask-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f4f8fc;
    border: 1px solid #dce6f0;
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
}

.ask-stat img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.ask-stat strong {
    display: block;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.1;
}

.ask-stat span {
    color: #33455d;
    font-size: 0.9rem;
}

.ask-right h3 {
    margin-top: 0;
    font-family: Fraunces, Georgia, serif;
}

.ask-right {
    display: grid;
    gap: 0.7rem;
}

.suggestion-item {
    background: #f5f9fc;
    border: 1px solid #dce6f0;
    border-radius: 12px;
    padding: 0.2rem 0.75rem 0.75rem;
}

.suggestion-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0.55rem 0 0.35rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.suggestion-title {
    margin: 0;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.1rem;
    color: #17293f;
}

.suggestion-caret {
    width: 10px;
    height: 10px;
    border-right: 2px solid #0e5f7b;
    border-bottom: 2px solid #0e5f7b;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.suggestion-item.is-open .suggestion-caret {
    transform: rotate(-135deg);
}

.suggestion-body {
    display: none;
}

.suggestion-item.is-open .suggestion-body {
    display: block;
}

.suggestion-label {
    margin: 0.35rem 0;
    color: #0e5f7b;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 0.82rem;
}

.suggestion-item p {
    margin: 0;
    color: #2a3a4e;
}

.panel {
    padding: 1.2rem;
}

.panel.compact p {
    margin: 0.3rem 0;
}

.checklist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    background: #edf6fa;
    border: 1px solid #d4e7ef;
    border-radius: 10px;
    padding: 0.68rem 0.78rem;
    margin-bottom: 0.6rem;
}

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

.timeline article {
    padding: 1rem;
}

.contact-form {
    padding: 1rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    margin: 0.7rem 0 0.35rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cedae6;
    border-radius: 10px;
    padding: 0.62rem 0.7rem;
    font: inherit;
}

.auth-wrap {
    display: flex;
    justify-content: center;
}

.auth-card {
    width: min(540px, 100%);
    background: var(--card);
    border: 1px solid var(--edge);
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(15, 26, 43, 0.08);
    padding: 1.4rem;
}

.auth-card h1 {
    margin-top: 0.2rem;
}

.auth-form label {
    display: block;
    font-size: 0.9rem;
    margin: 0.65rem 0 0.35rem;
}

.auth-form input {
    width: 100%;
    border: 1px solid #cedae6;
    border-radius: 10px;
    padding: 0.65rem 0.72rem;
    font: inherit;
}

.auth-form button {
    margin-top: 1rem;
    width: 100%;
}

.auth-switch {
    margin-top: 1rem;
    color: var(--muted);
}

.auth-switch a {
    color: var(--brand);
    font-weight: 700;
}

.auth-card-admin {
    background:
        linear-gradient(165deg, #ffffff 0%, #f2f9fc 55%, #e7f3f8 100%);
    border: 1px solid #bdd7e3;
    box-shadow: 0 16px 32px rgba(4, 93, 120, 0.16);
}

.auth-card-admin .eyebrow {
    color: #04556d;
}

.auth-card-admin h1 {
    color: #0f1a2b;
}

.auth-form-admin input {
    border: 1px solid #9fc5d6;
    background: #fbfdff;
}

.auth-form-admin input:focus {
    border-color: #045d78;
    outline: 2px solid rgba(4, 93, 120, 0.2);
    outline-offset: 1px;
}

.auth-form-admin .btn.btn-primary {
    background: linear-gradient(135deg, #045d78 0%, #0a7a99 100%);
    border-color: #04556d;
    color: #ffffff;
}

.auth-form-admin .btn.btn-primary:hover,
.auth-form-admin .btn.btn-primary:focus-visible {
    background: linear-gradient(135deg, #034a60 0%, #086c89 100%);
}

.site-footer {
    margin-top: 2.8rem;
    background: #0f1a2b;
    color: #d5dded;
    padding: 2.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
    gap: clamp(1.2rem, 2.6vw, 2.4rem);
    align-items: start;
    padding-bottom: 1.75rem;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 0.8rem;
    color: #ffffff;
}

.footer-col {
    min-width: 0;
}

.footer-col p {
    margin: 0;
}

.footer-col-brand {
    padding-right: 0.6rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
}

.footer-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-summary {
    max-width: 32rem;
    line-height: 1.7;
    color: #c4cfdf;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0b6f8d;
    color: #ffffff;
}

.social-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-list,
.footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.62rem;
}

.footer-list li,
.footer-contact-list li {
    width: 100%;
}

.footer-list a {
    color: inherit;
    text-decoration: none;
    line-height: 1.55;
}

.footer-list a:hover {
    color: #5ec7e2;
}

.footer-contact-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    line-height: 1.5;
}

.footer-contact-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: #8ed3e6;
}

.footer-contact-value {
    display: inline-block;
    color: #d5dded;
    font-size: 0.98rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.footer-contact-nowrap {
    white-space: nowrap;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-hours-list li {
    line-height: 1.55;
}

.copyright {
    color: #a8b4c8;
    background: #0b1220;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright .shell {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}

.copyright p {
    margin: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b6f8d, #04556d);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 22px rgba(5, 41, 62, 0.35);
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 40;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.not-found {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4.5rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: 400ms ease;
}

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

.whatsapp-float {
    position: fixed;
    left: 18px;
    bottom: 72px;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #149b48 100%);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(16, 84, 44, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(16, 84, 44, 0.34);
    filter: saturate(1.05);
}

.whatsapp-float-icon {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
}

.whatsapp-float-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    fill: currentColor;
}

.whatsapp-float-text {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: max-content;
    padding: 0.72rem 0.9rem;
    border-radius: 14px;
    background: rgba(15, 26, 43, 0.94);
    box-shadow: 0 16px 34px rgba(8, 18, 35, 0.28);
    line-height: 1.15;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover .whatsapp-float-text,
.whatsapp-float:focus-visible .whatsapp-float-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.whatsapp-float-text strong {
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.whatsapp-float-text span {
    font-size: 0.82rem;
    opacity: 0.96;
}

@media (max-width: 900px) {
    .split,
    .ask-section,
    .process-section,
    .ease-section,
    .info-intro,
    .infra-section,
    .join-section,
    .cards,
    .timeline,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .ask-section,
    .process-section,
    .ease-section,
    .info-intro,
    .infra-section,
    .join-section,
    .cards,
    .timeline {
        grid-template-columns: 1fr;
    }

    .services-rich-grid,
    .service-detail-grid,
    .reasons-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-hero-grid,
    .services-split {
        grid-template-columns: 1fr;
    }

    .personal-hero-grid,
    .personal-split {
        grid-template-columns: 1fr;
    }

    .personal-inline {
        grid-template-columns: 1fr;
    }

    .personal-split.reverse > :first-child,
    .personal-split.reverse > :last-child {
        order: initial;
    }

    .services-split.reverse > :first-child,
    .services-split.reverse > :last-child {
        order: initial;
    }

    .service-modern-grid {
        grid-template-columns: 1fr 1fr;
    }

    .personal-services-grid-wrap .service-modern-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-feature-image img {
        min-height: 300px;
    }

    .personal-feature-media img {
        min-height: 300px;
    }

    .services-hero-media,
    .services-layered {
        min-height: 300px;
    }

    .personal-hero-media,
    .personal-layered {
        min-height: 300px;
    }

    .about-hero-grid,
    .about-band-grid,
    .about-split {
        grid-template-columns: 1fr;
    }

    .about-split.reverse > :first-child,
    .about-split.reverse > :last-child {
        order: initial;
    }

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

    .about-feature-media img {
        min-height: 300px;
    }

    .about-hero-media,
    .about-layered {
        min-height: 300px;
    }

    .services-slider-section {
        --service-slide-size: min(42vw, 300px);
    }

    .feature-image img {
        height: 270px;
    }

    .infra-section .feature-image img {
        height: 270px;
        min-height: 0;
    }

    .process-media {
        min-height: 430px;
    }

    .ease-media {
        min-height: 500px;
    }

    .ease-img-one {
        width: min(88%, 400px);
    }

    .ease-img-two {
        width: min(82%, 360px);
    }

    .hero-slider,
    .hero-slide {
        height: 500px;
        min-height: 500px;
    }

    .hero-overlay {
        padding: 1.1rem 1rem 2.7rem;
    }

    .hero-overlay h1 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .hero-overlay p {
        font-size: 0.95rem;
    }

    .actions {
        gap: 0.6rem;
    }

    .btn {
        padding: 0.68rem 0.9rem;
    }

    .site-nav {
        display: none;
        position: absolute;
        right: 4vw;
        top: 66px;
        flex-direction: column;
        background: #0f1f2b;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 14px;
        padding: 0.5rem;
        box-shadow: 0 12px 30px rgba(15, 26, 43, 0.1);
        width: min(92vw, 360px);
    }

    .site-nav.open {
        display: flex;
    }

    .brand {
        background: transparent;
        border: 0;
        padding: 0;
    }

    .brand-logo-dark {
        display: none;
    }

    .brand-logo-light {
        display: block;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border: 0;
        padding: 0.2rem 0 0;
        background: transparent;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #18252f;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.28);
        padding: 0.28rem 0.6rem;
    }
}

@media (max-width: 1200px) {
    .shell {
        width: 95vw;
    }
}

@media (max-width: 640px) {
    .shell {
        width: 95vw;
    }

    .top-bar {
        height: auto;
        padding: 0.35rem 0;
    }

    .top-bar-inner {
        flex-wrap: wrap;
        gap: 0.4rem 0.8rem;
    }

    .section {
        padding: 1.7rem 0;
    }

    .hero-slider,
    .hero-slide {
        height: 420px;
        min-height: 420px;
    }

    .hero-overlay {
        padding: 0.95rem 0.85rem 2.4rem;
    }

    .hero-dots {
        left: 0.9rem;
        bottom: 0.8rem;
    }

    .cards {
        gap: 0.85rem;
    }

    .services-rich-grid,
    .service-detail-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .service-modern-grid {
        grid-template-columns: 1fr;
    }

    .personal-services-grid-wrap .service-modern-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        left: 18px;
        bottom: 72px;
    }

    .whatsapp-float-text {
        display: none;
    }

    .services-hero-media,
    .services-layered {
        min-height: 250px;
    }

    .personal-hero-media,
    .personal-layered {
        min-height: 250px;
    }

    .service-feature-image img {
        min-height: 220px;
    }

    .personal-feature-media img {
        min-height: 220px;
    }

    .personal-inline-media img {
        min-height: 200px;
    }

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

    .about-hero-media,
    .about-layered {
        min-height: 250px;
    }

    .about-feature-media img {
        min-height: 220px;
    }

    .services-slider-section {
        --service-slide-size: 82vw;
    }

    .feature-image img {
        height: 220px;
    }

    .infra-section .feature-image img {
        height: 220px;
        min-height: 0;
    }

    .layered-media {
        min-height: 260px;
    }

    .layered-media .layer-back {
        height: 200px;
    }

    .layered-media .layer-front {
        height: 180px;
    }

    .bank-card img {
        height: 170px;
    }

    .contact-form,
    .auth-card {
        padding: 0.9rem;
    }

    .footer-grid {
        gap: 0.7rem;
        grid-template-columns: 1fr;
    }

    .bank-section {
        --bank-card-size: 84vw;
    }

    .process-img {
        width: min(84%, 420px);
        height: 220px;
    }

    .process-badge {
        padding: 0.55rem 0.7rem;
    }

    .process-badge strong {
        font-size: 1rem;
    }

    .process-badge-customers {
        bottom: 160px;
        left: 8px;
    }

    .process-badge-business {
        right: 10px;
        bottom: 12px;
    }
}

@media (max-width: 420px) {
    .hero-slider,
    .hero-slide {
        height: 390px;
        min-height: 390px;
    }

    .hero-overlay h1 {
        font-size: 1.35rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
