:root {
    --pro-navy-950: #031b33;
    --pro-navy-900: #052b50;
    --pro-navy-800: #073b6d;
    --pro-navy-700: #0a4b84;
    --pro-green-700: #1f7556;
    --pro-green-600: #288c67;
    --pro-green-500: #35a978;
    --pro-green-100: #dff3e9;
    --pro-blue-100: #e8f2fb;
    --pro-slate-900: #142b40;
    --pro-slate-700: #496177;
    --pro-slate-500: #718398;
    --pro-line: #dce5ed;
    --pro-surface: #ffffff;
    --pro-surface-soft: #f4f8fb;
    --pro-shadow-sm: 0 10px 30px rgba(4, 38, 70, 0.08);
    --pro-shadow-lg: 0 26px 70px rgba(4, 34, 63, 0.16);
    --pro-radius-sm: 0.8rem;
    --pro-radius-md: 1.25rem;
    --pro-radius-lg: 2rem;
    --pro-container: 1240px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}

body.professional-site {
    margin: 0;
    background: var(--pro-surface);
    color: var(--pro-slate-900);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.professional-site img {
    max-width: 100%;
}

body.professional-site a {
    color: inherit;
}

body.professional-site address {
    font-style: normal;
}

body.professional-site :focus-visible {
    outline: 3px solid #6ad6a7;
    outline-offset: 3px;
}

.pro-container {
    width: min(calc(100% - 3rem), var(--pro-container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: #ffffff;
    color: var(--pro-navy-950);
    box-shadow: var(--pro-shadow-sm);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

/* Header: logo is always placed on an opaque white surface for guaranteed contrast. */
.pro-header {
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 8px 25px rgba(4, 30, 55, 0.08);
}

.pro-utility-bar {
    min-height: 2.4rem;
    background: var(--pro-navy-950);
    color: #ffffff;
}

.pro-utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 2.4rem;
    font-size: 0.78rem;
}

.pro-utility-contact,
.pro-utility-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pro-utility-contact a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.86);
}

.pro-utility-contact a:hover {
    color: #ffffff;
}

.pro-utility-contact span {
    width: 1px;
    height: 0.9rem;
    background: rgba(255, 255, 255, 0.25);
}

.pro-utility-meta span {
    color: rgba(255, 255, 255, 0.72);
}

.pro-utility-meta strong {
    color: #80deb4;
    letter-spacing: 0.02em;
}

.pro-navigation-bar {
    min-height: 5.7rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(5, 43, 80, 0.08);
}

.pro-navigation-inner {
    display: flex;
    align-items: center;
    min-height: 5.7rem;
    gap: 1.4rem;
}

.pro-brand {
    display: inline-flex;
    flex: 0 0 auto;
    text-decoration: none;
}

.pro-brand-surface,
.pro-footer-logo-surface {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.pro-brand-surface {
    min-width: 12rem;
    min-height: 4.2rem;
    padding: 0.25rem 0.7rem;
    border-radius: 0.7rem;
}

.pro-brand img {
    display: block;
    width: auto;
    height: 3.1rem;
    object-fit: contain;
}

.pro-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 2vw, 2rem);
    margin-left: auto;
}

.pro-desktop-nav a {
    position: relative;
    color: var(--pro-navy-900);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.pro-desktop-nav a:not(.pro-nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.55rem;
    left: 0;
    height: 2px;
    background: var(--pro-green-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

.pro-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--pro-green-600);
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(40, 140, 103, 0.2);
}

.pro-nav-cta:hover {
    background: var(--pro-green-700);
}

.pro-language-switch {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.2rem;
    padding: 0.2rem;
    border: 1px solid var(--pro-line);
    border-radius: 999px;
    background: var(--pro-surface-soft);
}

.pro-language-switch a {
    display: inline-flex;
    min-width: 2.35rem;
    min-height: 2.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--pro-slate-700);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.pro-language-switch a.is-active {
    background: var(--pro-navy-900);
    color: #ffffff;
}

.pro-mobile-nav {
    display: none;
    margin-left: auto;
}

.pro-mobile-nav summary {
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    place-content: center;
    gap: 0.3rem;
    border: 1px solid var(--pro-line);
    border-radius: 0.8rem;
    background: var(--pro-surface-soft);
    cursor: pointer;
    list-style: none;
}

.pro-mobile-nav summary::-webkit-details-marker {
    display: none;
}

.pro-mobile-nav summary span {
    width: 1.3rem;
    height: 2px;
    background: var(--pro-navy-900);
}

.pro-mobile-nav nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1.5rem;
    left: 1.5rem;
    display: grid;
    padding: 1rem;
    border: 1px solid var(--pro-line);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: var(--pro-shadow-lg);
}

.pro-mobile-nav nav > a {
    padding: 0.8rem 0.65rem;
    border-bottom: 1px solid var(--pro-line);
    color: var(--pro-navy-900);
    font-weight: 700;
    text-decoration: none;
}

.pro-mobile-languages {
    display: flex;
    gap: 0.6rem;
    padding: 0.9rem 0.5rem 0.2rem;
}

.pro-mobile-languages a {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: var(--pro-blue-100);
    color: var(--pro-navy-900);
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
}

/* Shared typography */
.pro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1rem;
    color: var(--pro-green-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pro-eyebrow::before {
    content: "";
    width: 2.2rem;
    height: 2px;
    background: currentColor;
}

.pro-eyebrow-light {
    color: #7adbb0;
}

.pro-section {
    padding: 6rem 0;
}

.pro-section-heading h2,
.pro-about-content h2,
.pro-service-content > h2,
.pro-contact-copy h2 {
    margin: 0;
    color: var(--pro-navy-950);
    font-size: clamp(2.15rem, 4vw, 3.75rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.pro-section-heading > p,
.pro-markets-heading > p,
.pro-services-heading > p {
    margin: 1rem 0 0;
    color: var(--pro-slate-700);
    line-height: 1.8;
}

.pro-section-heading-centered {
    width: min(100%, 50rem);
    margin: 0 auto 2.6rem;
    text-align: center;
}

.pro-section-heading-centered .pro-eyebrow {
    justify-content: center;
}

/* Hero */
.pro-hero {
    position: relative;
    min-height: 46rem;
    overflow: hidden;
    background: var(--pro-navy-950);
    color: #ffffff;
}

.pro-hero-media,
.pro-hero-overlay {
    position: absolute;
    inset: 0;
}

.pro-hero-media {
    left: 48%;
}

.pro-hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 42%;
}

.pro-hero-overlay {
    background:
        linear-gradient(90deg, var(--pro-navy-950) 0%, var(--pro-navy-950) 42%, rgba(3, 27, 51, 0.88) 58%, rgba(3, 27, 51, 0.25) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(3, 27, 51, 0.48));
}

.pro-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.55fr);
    gap: 3.5rem;
    align-items: center;
    min-height: 39rem;
    padding-top: 2.25rem;
    padding-bottom: 3rem;
}

.pro-hero-copy h1 {
    max-width:30.5ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.15rem, 2vw, 5.85rem);
    line-height: 0.97;
    letter-spacing: -0.055em;
}

.pro-hero-description {
    max-width: 45rem;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.85;
}

.pro-hero-actions,
.pro-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

body.professional-site .pro-button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    text-decoration-line: none !important;
    white-space: nowrap;
    overflow: hidden;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.professional-site .pro-button::before,
body.professional-site .pro-button::after {
    content: none !important;
    display: none !important;
}

body.professional-site .pro-button:hover {
    transform: translateY(-2px);
}

body.professional-site .pro-button-primary {
    background: var(--pro-green-600);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(40, 140, 103, 0.28);
}

body.professional-site .pro-button-primary:hover {
    background: var(--pro-green-500);
}

body.professional-site .pro-button-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

body.professional-site .pro-button-outline-light:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
}

body.professional-site .pro-button-whatsapp {
    border-color: #25b957;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.26);
}

body.professional-site .pro-button-whatsapp:hover {
    border-color: #1fae4c;
    background: #20bd5a;
    color: #ffffff;
}

.pro-hero-card {
    align-self: end;
    margin-bottom: 1rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--pro-radius-md);
    background: rgba(4, 36, 67, 0.82);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.pro-hero-card > span {
    color: #7adbb0;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pro-hero-card h2 {
    margin: 0.8rem 0 0.65rem;
    color: #ffffff;
    font-size: 1.65rem;
    line-height: 2.60;
}

.pro-hero-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.pro-hero-card-line {
    height: 1px;
    margin: 1.25rem 0;
    background: rgba(255, 255, 255, 0.16);
}

.pro-hero-card strong {
    color: #ffffff;
    font-size: 0.9rem;
}

.pro-hero-stats {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(3, 27, 51, 0.88);
    backdrop-filter: blur(10px);
}

.pro-hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pro-hero-stats article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    min-height: 7rem;
    padding: 1rem 2rem;
}

.pro-hero-stats article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.pro-hero-stats strong {
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
}

.pro-hero-stats span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.4;
}

/* About */
.pro-about-section {
    background: #ffffff;
}

.pro-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.pro-about-media {
    position: relative;
    min-height: 41rem;
}

.pro-about-media figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--pro-radius-md);
    background: var(--pro-surface-soft);
    box-shadow: var(--pro-shadow-lg);
}

.pro-about-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pro-about-main-image {
    position: absolute;
    inset: 0 22% 4rem 0;
}

.pro-about-main-image img {
    object-position: center 45%;
}

.pro-about-secondary-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 56%;
    border: 0.55rem solid #ffffff;
}

.pro-about-secondary-image img {
    object-position: center 45%;
}

.pro-about-badge {
    position: absolute;
    left: 1.4rem;
    bottom: 1.3rem;
    width: min(19rem, 60%);
    padding: 1.15rem 1.25rem;
    border-radius: 1rem;
    background: var(--pro-navy-900);
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(3, 27, 51, 0.24);
}

.pro-about-badge span {
    display: block;
    margin-bottom: 0.35rem;
    color: #7adbb0;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.pro-about-badge strong {
    display: block;
    line-height: 1.45;
}

.pro-about-content > p:not(.pro-eyebrow) {
    margin: 1rem 0 0;
    color: var(--pro-slate-700);
    line-height: 1.82;
}

.pro-about-highlights {
    display: grid;
    gap: 0;
    margin-top: 2rem;
    border-top: 1px solid var(--pro-line);
}

.pro-about-highlights article {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--pro-line);
}

.pro-about-highlights article > span {
    color: var(--pro-green-700);
    font-size: 0.82rem;
    font-weight: 900;
}

.pro-about-highlights h3 {
    margin: 0;
    color: var(--pro-navy-900);
    font-size: 1rem;
}

.pro-about-highlights p {
    margin: 0.25rem 0 0;
    color: var(--pro-slate-700);
    font-size: 0.93rem;
}

/* Values */
.pro-values-section {
    background:
        radial-gradient(circle at 12% 0%, rgba(53, 169, 120, 0.1), transparent 28%),
        var(--pro-surface-soft);
}

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

.pro-value-card {
    position: relative;
    min-height: 17rem;
    overflow: hidden;
    padding: 1.45rem;
    border: 1px solid rgba(5, 43, 80, 0.08);
    border-radius: var(--pro-radius-md);
    background: #ffffff;
    box-shadow: var(--pro-shadow-sm);
}

.pro-value-card::after {
    content: "";
    position: absolute;
    right: -2.6rem;
    bottom: -3rem;
    width: 8rem;
    height: 8rem;
    border-radius: 999px;
    background: var(--pro-green-100);
}

.pro-value-letter {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 3.2rem;
    height: 3.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--pro-navy-800), var(--pro-green-700));
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 900;
}

.pro-value-card h3 {
    position: relative;
    z-index: 1;
    margin: 1.2rem 0 0.65rem;
    color: var(--pro-navy-900);
    font-size: 1.12rem;
    line-height: 1.25;
}

.pro-value-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--pro-slate-700);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* Vision and mission */
.pro-vision-section {
    padding: 6rem 0;
    background: #ffffff;
}

.pro-vision-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem;
}

.pro-vision-card,
.pro-mission-card {
    min-height: 25rem;
    padding: clamp(2rem, 4vw, 3.25rem);
    border-radius: var(--pro-radius-lg);
}

.pro-vision-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(145deg, rgba(3, 27, 51, 0.96), rgba(7, 59, 109, 0.93)),
        url('../images/wetso-pro/about-secondary.webp') center/cover no-repeat;
    color: #ffffff;
    box-shadow: var(--pro-shadow-lg);
}

.pro-vision-card h2 {
    margin: 0;
    color: #7adbb0;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pro-vision-statement {
    max-width: 38rem;
    margin: 1rem 0 0;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.15vw, 2.15rem);
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.pro-mission-card {
    border: 1px solid var(--pro-line);
    background: var(--pro-surface-soft);
}

.pro-mission-card ol {
    margin: 0.4rem 0 0;
    padding: 0;
    list-style: none;
}

.pro-mission-card li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--pro-line);
}

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

.pro-mission-card li span {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    color: var(--pro-green-700);
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: var(--pro-shadow-sm);
}

.pro-mission-card li p {
    margin: 0;
    color: var(--pro-slate-700);
    line-height: 1.75;
}

/* Markets */
.pro-markets-section {
    background: var(--pro-surface-soft);
    color: var(--pro-navy-950);
}

.pro-markets-heading {
    display: block;
    margin-bottom: 2rem;
}

.pro-markets-heading h2 {
    margin: 0;
    color: var(--pro-navy-950);
    font-size: clamp(2.15rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.pro-markets-heading > p {
    max-width: 45rem;
    margin-inline: auto;
    color: var(--pro-slate-700);
}

.pro-market-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pro-market-list li {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--pro-line);
    border-radius: 0.9rem;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(4, 38, 70, 0.05);
}

.pro-market-list li > span {
    flex: 0 0 auto;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: var(--pro-green-600);
    box-shadow: 0 0 0 0.28rem var(--pro-green-100);
}

.pro-market-list strong {
    color: var(--pro-navy-900);
    font-size: 0.94rem;
    line-height: 1.35;
}

/* Services intro and index */
.pro-services-intro {
    padding-bottom: 3rem;
    background: #ffffff;
}

.pro-service-index {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.pro-service-index a {
    display: grid;
    min-height: 9rem;
    padding: 1.25rem;
    border: 1px solid var(--pro-line);
    border-radius: var(--pro-radius-md);
    background: var(--pro-surface-soft);
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.pro-service-index a:hover {
    transform: translateY(-4px);
    border-color: rgba(40, 140, 103, 0.35);
    background: #ffffff;
    box-shadow: var(--pro-shadow-sm);
}

.pro-service-index span {
    color: var(--pro-green-700);
    font-size: 2.8rem;
    font-weight: 900;
}

.pro-service-index strong {
    align-self: end;
    color: var(--pro-navy-900);
    font-size: 1.05rem;
    line-height: 1.35;
}

/* Detailed services */
.pro-service-section {
    padding: 5rem 0;
    border-top: 1px solid var(--pro-line);
    background: var(--pro-surface-soft);
}

.pro-service-section:nth-of-type(even) {
    background: #ffffff;
}

.pro-service-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.pro-service-section.is-reversed .pro-service-gallery {
    order: 2;
}

.pro-service-section.is-reversed .pro-service-content {
    order: 1;
}

.pro-service-gallery {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(12rem, 1fr));
    gap: 0.8rem;
    min-height: 34rem;
}

.pro-service-image {
    margin: 0;
    overflow: hidden;
    border-radius: 1rem;
    background: #dfe9f1;
    box-shadow: var(--pro-shadow-sm);
}

.pro-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pro-service-image-1 {
    grid-row: 1 / 3;
}

.pro-service-image-1 img {
    object-position: center;
}

.pro-service-image-2,
.pro-service-image-3,
.pro-service-image-4 {
    min-height: 10rem;
}

.pro-service-image-4 {
    display: none;
}

.pro-service-number {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    width: 4.2rem;
    height: 4.2rem;
    align-items: center;
    justify-content: center;
    border: 0.35rem solid #ffffff;
    border-radius: 999px;
    background: var(--pro-green-600);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(3, 27, 51, 0.2);
}

.pro-service-summary {
    margin: 1.25rem 0 0;
    color: var(--pro-slate-700);
    font-size: 1.03rem;
    line-height: 1.82;
}

.pro-scope-label {
    margin: 2rem 0 1rem;
    color: var(--pro-navy-900);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

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

.pro-service-groups-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pro-service-groups article {
    padding: 1.2rem;
    border: 1px solid var(--pro-line);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(4, 38, 70, 0.04);
}

.pro-service-groups article h3 {
    margin: 0;
    color: var(--pro-navy-900);
    font-size: 1rem;
    line-height: 1.35;
}

.pro-service-groups ul {
    margin: 0.9rem 0 0;
    padding: 0;
    list-style: none;
}

.pro-service-groups li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--pro-slate-700);
    font-size: 0.88rem;
    line-height: 1.55;
}

.pro-service-groups li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--pro-green-600);
}

.pro-service-groups li + li {
    margin-top: 0.5rem;
}

/* Contact */
.pro-contact-section {
    padding: 6rem 0;
    background:
        linear-gradient(135deg, rgba(3, 27, 51, 0.96), rgba(6, 55, 91, 0.94)),
        url('../images/wetso-pro/plant-team.webp') center/cover no-repeat;
    color: #ffffff;
}

.pro-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.75fr);
    gap: 4rem;
    align-items: center;
}

.pro-contact-copy h2 {
    color: #ffffff;
}

.pro-contact-copy > p:not(.pro-eyebrow) {
    max-width: 44rem;
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.82;
}

.pro-contact-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--pro-radius-md);
    background: rgba(3, 27, 51, 0.72);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
}

.pro-contact-panel article {
    min-height: 9rem;
    padding: 1.25rem;
}

.pro-contact-panel article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.pro-contact-panel article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pro-contact-panel span {
    display: block;
    margin-bottom: 0.65rem;
    color: #7adbb0;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pro-contact-panel address,
.pro-contact-panel a {
    display: block;
    color: #ffffff;
    line-height: 1.7;
    text-decoration: none;
}

/* Footer */
.pro-footer {
    padding: 4.5rem 0 1.5rem;
    background: #021526;
    color: #ffffff;
}

.pro-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
}

.pro-footer-logo-surface {
    padding: 0.3rem 0.65rem;
    border-radius: 0.7rem;
}

.pro-footer-logo-surface img {
    display: block;
    width: auto;
    height: 3rem;
}

.pro-footer-brand p {
    max-width: 18rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.pro-footer-brand > strong {
    display: block;
    margin-top: 0.55rem;
    color: #7adbb0;
    font-size: 0.85rem;
}

.pro-footer h2 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.pro-footer li + li {
    margin-top: 0.55rem;
}

.pro-footer a,
.pro-footer address {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    text-decoration: none;
}

.pro-footer a:hover {
    color: #ffffff;
}

.pro-footer-grid > div:last-child a {
    margin-top: 0.55rem;
}

.pro-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-footer-bottom p,
.pro-footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
}

/* Floating WhatsApp */
.pro-whatsapp-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 45;
    display: inline-flex;
    width: 3.8rem;
    height: 3.8rem;
    align-items: center;
    justify-content: center;
    border: 0.25rem solid #ffffff;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease;
}

.pro-whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.03);
}

.pro-whatsapp-fab svg {
    width: 1.9rem;
    height: 1.9rem;
}

/* Responsive */
@media (max-width: 1180px) {
    .pro-desktop-nav {
        gap: 1rem;
    }

    .pro-values-grid,
    .pro-market-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pro-service-groups-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) and (min-width: 761px) {
    .pro-market-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1020px) {
    .pro-utility-meta span,
    .pro-desktop-nav,
    .pro-language-switch {
        display: none;
    }

    .pro-mobile-nav {
        display: block;
    }

    .pro-hero {
        min-height: 49rem;
    }

    .pro-hero-media {
        left: 0;
    }

    .pro-hero-overlay {
        background:
            linear-gradient(90deg, rgba(3, 27, 51, 0.96), rgba(3, 27, 51, 0.78)),
            linear-gradient(180deg, rgba(3, 27, 51, 0.1), rgba(3, 27, 51, 0.74));
    }

    .pro-hero-grid,
    .pro-about-grid,
    .pro-vision-grid,
    .pro-service-layout,
    .pro-contact-grid,
    .pro-services-heading {
        grid-template-columns: 1fr;
    }

    .pro-hero-grid {
        min-height: 41rem;
        padding-top: 4.5rem;
        padding-bottom: 8.5rem;
    }

    .pro-hero-copy h1 {
        max-width: 13ch;
    }

    .pro-hero-card {
        display: none;
    }

    .pro-about-grid {
        gap: 3.5rem;
    }

    .pro-about-media {
        width: min(100%, 44rem);
    }

    .pro-service-section.is-reversed .pro-service-gallery,
    .pro-service-section.is-reversed .pro-service-content {
        order: initial;
    }

    .pro-service-gallery {
        min-height: 30rem;
    }

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

@media (max-width: 760px) {
    .pro-container {
        width: min(calc(100% - 2rem), var(--pro-container));
    }

    html {
        scroll-padding-top: 7.5rem;
    }

    .pro-utility-bar {
        display: none;
    }

    .pro-navigation-bar,
    .pro-navigation-inner {
        min-height: 4.8rem;
    }

    .pro-brand-surface {
        min-width: auto;
        min-height: 3.7rem;
        padding: 0.2rem 0.4rem;
    }

    .pro-brand img {
        height: 2.65rem;
    }

    .pro-section,
    .pro-vision-section,
    .pro-contact-section {
        padding: 4.25rem 0;
    }

    .pro-hero {
        min-height: 47rem;
    }

    .pro-hero-grid {
        min-height: 39rem;
        padding-top: 3.5rem;
        padding-bottom: 10rem;
    }

    .pro-hero-copy h1 {
        font-size: clamp(2.75rem, 12vw, 4.2rem);
    }

    .pro-hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .pro-hero-stats article {
        min-height: auto;
        padding: 0.85rem 0;
    }

    .pro-hero-stats article + article {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .pro-hero-stats article:nth-child(3) {
        display: none;
    }

    .pro-about-media {
        min-height: 31rem;
    }

    .pro-about-main-image {
        inset: 0 16% 3rem 0;
    }

    .pro-about-secondary-image {
        width: 44%;
        height: 52%;
    }

    .pro-about-badge {
        width: min(17rem, 76%);
    }

    .pro-values-grid,
    .pro-market-list,
    .pro-service-index,
    .pro-service-groups-2,
    .pro-contact-panel,
    .pro-footer-grid {
        grid-template-columns: 1fr;
    }

    .pro-value-card {
        min-height: auto;
    }

    .pro-vision-card,
    .pro-mission-card {
        min-height: auto;
        padding: 1.5rem;
        border-radius: var(--pro-radius-md);
    }


    .pro-service-layout {
        gap: 2.5rem;
    }

    .pro-service-gallery {
        grid-template-rows: repeat(2, 10rem);
        min-height: 21rem;
    }

    .pro-service-image-1 {
        grid-row: auto;
    }

    .pro-service-image-4 {
        display: block;
    }

    .pro-contact-panel article:nth-child(odd),
    .pro-contact-panel article:nth-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .pro-contact-panel article:last-child {
        border-bottom: 0;
    }

    .pro-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pro-hero-actions,
    .pro-contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .pro-button {
        width: 100%;
    }

    .pro-about-media {
        min-height: 27rem;
    }

    .pro-service-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 10rem);
        min-height: 43rem;
    }

    .pro-service-number {
        left: auto;
        right: 1rem;
    }

    .pro-whatsapp-fab {
        right: 0.9rem;
        bottom: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
