
:root {
    --navy-950: #041f3a;
    --navy-900: #073764;
    --navy-800: #0a477e;
    --navy-700: #155a91;
    --cyan-600: #00a8c7;
    --cyan-500: #16b6d3;
    --cyan-100: #dcf7fb;
    --gold-500: #f4bd19;
    --gold-400: #ffd24d;
    --green-600: #138a56;
    --ink-900: #142536;
    --ink-700: #445565;
    --ink-500: #6a7885;
    --line: #dce5ec;
    --surface: #f5f8fb;
    --white: #ffffff;
    --shadow-sm: 0 8px 22px rgba(4, 31, 58, 0.08);
    --shadow-md: 0 18px 55px rgba(4, 31, 58, 0.14);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink-900);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--navy-950);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.7rem, 6vw, 5.3rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--ink-700);
}

ul {
    margin-top: 0;
}

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

.narrow {
    width: min(calc(100% - 40px), 800px);
    margin-inline: auto;
}

.section {
    padding: 96px 0;
}

.section-sm {
    padding: 64px 0;
}

.section-surface {
    background: var(--surface);
}

.section-dark {
    background: var(--navy-950);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--white);
}

.grid {
    display: grid;
    gap: 28px;
}

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

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

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

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.muted {
    color: var(--ink-500);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--cyan-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: var(--gold-400);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

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

.section-heading h2 {
    margin-bottom: 16px;
}

.section-heading p {
    margin-bottom: 0;
    font-size: 1.08rem;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--cyan-600);
    box-shadow: 0 10px 25px rgba(0, 168, 199, 0.28);
}

.button-primary:hover {
    background: #0095b1;
    box-shadow: 0 14px 30px rgba(0, 168, 199, 0.35);
}

.button-dark {
    color: var(--white);
    background: var(--navy-950);
}

.button-dark:hover {
    background: var(--navy-800);
}

.button-outline {
    color: var(--navy-900);
    border-color: rgba(7, 55, 100, 0.25);
    background: transparent;
}

.button-outline:hover {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.button-light {
    color: var(--navy-950);
    background: var(--white);
}

.button-light:hover {
    background: var(--cyan-100);
}

.button-whatsapp {
    color: var(--white);
    background: #20a764;
}

.button-whatsapp:hover {
    background: #148b50;
}

.button-sm {
    min-height: 42px;
    padding: 10px 17px;
    font-size: 0.9rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-900);
    font-weight: 800;
}

.link-arrow::after {
    content: "→";
    transition: transform 180ms ease;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--navy-950);
    transform: translateY(-150%);
}

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

.sr-only {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* Header */
.topbar {
    color: var(--white);
    background: var(--navy-950);
    font-size: 0.82rem;
}

.topbar-inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.88);
}

.topbar a:hover {
    color: var(--gold-400);
}

.topbar svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.topbar-note {
    color: var(--gold-400);
    font-weight: 800;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(7, 55, 100, .08);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    transition: box-shadow 180ms ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    min-width: 260px;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 74px;
    max-height: 66px;
    object-fit: contain;
}

.brand-text {
    display: grid;
    line-height: 1.12;
}

.brand-text strong {
    color: var(--navy-950);
    font-size: 1.02rem;
}

.brand-text small {
    color: var(--cyan-600);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > a:not(.button) {
    position: relative;
    padding: 11px 12px;
    border-radius: 9px;
    color: var(--ink-700);
    font-size: .92rem;
    font-weight: 750;
}

.main-nav > a:not(.button):hover,
.main-nav > a.active:not(.button) {
    color: var(--navy-900);
    background: var(--cyan-100);
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: var(--surface);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy-950);
    transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 84px;
    background:
        radial-gradient(circle at 10% 20%, rgba(22, 182, 211, .16), transparent 28%),
        linear-gradient(140deg, #f8fbfd 0%, #ffffff 55%, #edf8fb 100%);
}

.hero::before {
    position: absolute;
    top: -160px;
    right: -180px;
    width: 560px;
    height: 560px;
    border: 90px solid rgba(0, 168, 199, 0.06);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
    align-items: center;
    gap: 70px;
}

.hero-copy h1 {
    max-width: 760px;
    margin-bottom: 24px;
}

.hero-copy h1 span {
    color: var(--cyan-600);
}

.hero-copy > p {
    max-width: 660px;
    margin-bottom: 30px;
    font-size: 1.16rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 31px;
    color: var(--ink-700);
    font-size: .9rem;
    font-weight: 700;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-trust span::before {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--green-600);
    content: "✓";
    font-size: .7rem;
}

.hero-visual {
    position: relative;
    min-height: 530px;
}

.hero-image-wrap {
    position: absolute;
    inset: 0 30px 0 40px;
    overflow: hidden;
    border: 9px solid var(--white);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: rotate(2deg);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 29%;
}

.hero-badge {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 32px;
    width: 210px;
    padding: 20px;
    border: 6px solid var(--white);
    border-radius: var(--radius-md);
    color: var(--white);
    background: var(--navy-950);
    box-shadow: var(--shadow-md);
}

.hero-badge strong {
    display: block;
    color: var(--gold-400);
    font-size: 1.6rem;
    line-height: 1;
}

.hero-badge span {
    display: block;
    margin-top: 7px;
    font-size: .88rem;
    font-weight: 700;
}

.hero-badge.secondary {
    top: 24px;
    right: auto;
    bottom: auto;
    left: 0;
    width: 165px;
    color: var(--navy-950);
    background: var(--white);
}

.hero-badge.secondary strong {
    color: var(--cyan-600);
}

/* Stats */
.stats-strip {
    position: relative;
    z-index: 2;
    margin-top: -34px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.stat {
    position: relative;
    padding: 29px 25px;
    text-align: center;
}

.stat + .stat {
    border-left: 1px solid var(--line);
}

.stat strong {
    display: block;
    color: var(--navy-900);
    font-size: 2rem;
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 8px;
    color: var(--ink-700);
    font-size: .88rem;
    font-weight: 650;
}

/* Cards */
.card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.service-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-media {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--surface);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.service-card:hover .card-media img {
    transform: scale(1.04);
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.card-body h3 {
    margin-bottom: 10px;
}

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

.card-body .link-arrow {
    margin-top: auto;
}

.icon-card {
    padding: 30px;
}

.icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 19px;
    place-items: center;
    border-radius: 15px;
    color: var(--navy-900);
    background: var(--cyan-100);
    font-size: 1.4rem;
}

.icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.feature-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.feature-card h3 {
    margin-bottom: 9px;
}

.feature-card p {
    margin-bottom: 0;
}

/* Split content */
.split-content {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 70px;
}

.split-content.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.split-media {
    position: relative;
}

.split-media > img {
    width: 100%;
    min-height: 470px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.split-media::after {
    position: absolute;
    z-index: -1;
    right: -18px;
    bottom: -18px;
    width: 65%;
    height: 65%;
    border-radius: var(--radius-lg);
    background: var(--cyan-100);
    content: "";
}

.check-list {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 11px;
    color: var(--ink-700);
}

.check-list li::before {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--cyan-600);
    content: "✓";
    font-size: .7rem;
    font-weight: 900;
}

/* Brand band */
.brand-band {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.brand-band::after {
    position: absolute;
    right: -140px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(255,255,255,.04);
    border-radius: 50%;
    content: "";
}

.brand-band h2,
.brand-band h3,
.brand-band p {
    color: var(--white);
}

.brand-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr repeat(3, .72fr);
    align-items: stretch;
    gap: 18px;
}

.brand-intro {
    padding-right: 30px;
}

.brand-tile {
    padding: 25px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(8px);
}

.brand-tile strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-400);
    font-size: 1.2rem;
}

.brand-tile p {
    margin-bottom: 0;
    color: rgba(255,255,255,.76);
    font-size: .9rem;
}

/* Page hero */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(4,31,58,.98), rgba(7,55,100,.92)),
        url("../images/factory.webp") center / cover;
}

.page-hero::after {
    position: absolute;
    top: -120px;
    right: -90px;
    width: 430px;
    height: 430px;
    border: 70px solid rgba(255,255,255,.05);
    border-radius: 50%;
    content: "";
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero h1 {
    margin-bottom: 19px;
    color: var(--white);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.page-hero p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255,255,255,.8);
    font-size: 1.15rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 19px;
    color: var(--gold-400);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.breadcrumb a {
    color: rgba(255,255,255,.68);
}

/* Quote block */
.quote-block {
    position: relative;
    padding: 42px;
    border-left: 6px solid var(--gold-500);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--surface);
}

.quote-block p {
    margin-bottom: 0;
    color: var(--navy-950);
    font-size: 1.35rem;
    font-weight: 720;
    line-height: 1.5;
}

.quote-block small {
    display: block;
    margin-top: 18px;
    color: var(--ink-500);
    font-weight: 700;
}

/* Mission vision */
.mission-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: var(--radius-md);
    color: var(--white);
    background: var(--navy-900);
}

.mission-card:nth-child(2) {
    background: var(--cyan-600);
}

.mission-card h3,
.mission-card p {
    color: var(--white);
}

.mission-card h3 {
    margin-bottom: 13px;
    font-size: 1.55rem;
}

.mission-card p {
    margin-bottom: 0;
    color: rgba(255,255,255,.86);
}

.mission-card span {
    position: absolute;
    right: 16px;
    bottom: -20px;
    color: rgba(255,255,255,.07);
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
}

/* Products */
.product-nav {
    position: sticky;
    z-index: 15;
    top: 84px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
}

.product-nav-inner {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding: 12px 0;
    scrollbar-width: none;
}

.product-nav-inner::-webkit-scrollbar {
    display: none;
}

.product-nav a {
    flex: 0 0 auto;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--ink-700);
    background: var(--surface);
    font-size: .84rem;
    font-weight: 750;
}

.product-nav a:hover {
    color: var(--white);
    background: var(--navy-900);
}

.product-section {
    padding: 90px 0;
    border-bottom: 1px solid var(--line);
}

.product-section:nth-child(even) {
    background: var(--surface);
}

.product-layout {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 64px;
}

.product-layout.reverse {
    grid-template-columns: 1.12fr .88fr;
}

.product-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.product-image img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.product-image.contain img {
    padding: 30px;
    object-fit: contain;
}

.product-copy h2 {
    margin-bottom: 16px;
}

.product-copy > p {
    font-size: 1.04rem;
}

.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 23px 0 0;
}

.product-chip {
    padding: 8px 12px;
    border: 1px solid rgba(0,168,199,.22);
    border-radius: 999px;
    color: var(--navy-900);
    background: var(--cyan-100);
    font-size: .8rem;
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.product-mini {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.product-mini strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy-950);
}

.product-mini span {
    color: var(--ink-500);
    font-size: .88rem;
}

.responsive-table {
    overflow-x: auto;
    margin-top: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

th,
td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--navy-950);
    background: var(--cyan-100);
    font-size: .86rem;
}

td {
    color: var(--ink-700);
    font-size: .92rem;
}

tr:last-child td {
    border-bottom: 0;
}

/* Impact */
.advantage-table .feature-name {
    color: var(--navy-950);
    font-weight: 850;
}

.sector-card {
    display: flex;
    min-height: 150px;
    align-items: center;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.sector-card .icon {
    flex: 0 0 auto;
    margin: 0;
}

.sector-card h3 {
    margin-bottom: 5px;
}

.sector-card p {
    margin-bottom: 0;
    font-size: .9rem;
}

.community-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 30px;
    border-radius: var(--radius-md);
    background: var(--navy-900);
}

.community-card:nth-child(2) {
    background: var(--cyan-600);
}

.community-card:nth-child(3) {
    background: #156e50;
}

.community-card:nth-child(4) {
    background: #5b4b9b;
}

.community-card h3,
.community-card p {
    color: var(--white);
}

.community-card p {
    margin-bottom: 0;
    color: rgba(255,255,255,.8);
}

.community-card .number {
    position: absolute;
    right: 16px;
    bottom: -25px;
    color: rgba(255,255,255,.08);
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
}

/* Legal */
.legal-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    padding: 20px;
    border: 1px solid #f5d678;
    border-radius: var(--radius-md);
    background: #fff9e6;
}

.legal-note svg {
    width: 24px;
    height: 24px;
    fill: #b57d00;
}

.legal-note p {
    margin-bottom: 0;
    color: #6c5209;
}

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

.legal-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.legal-thumb {
    display: grid;
    min-height: 290px;
    place-items: center;
    padding: 20px;
    background: var(--surface);
}

.legal-thumb img {
    max-height: 255px;
    object-fit: contain;
    filter: drop-shadow(0 8px 15px rgba(4,31,58,.12));
}

.legal-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.legal-card-body h3 {
    margin-bottom: 8px;
}

.legal-card-body p {
    margin-bottom: 18px;
    font-size: .9rem;
}

.legal-card-body .button {
    margin-top: auto;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 54px;
}

.contact-info-card {
    padding: 33px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.contact-info-card h2,
.contact-info-card h3,
.contact-info-card p {
    color: var(--white);
}

.contact-info-card p {
    color: rgba(255,255,255,.78);
}

.contact-list {
    display: grid;
    gap: 22px;
    padding: 0;
    margin: 32px 0 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    align-items: start;
}

.contact-list .contact-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--gold-400);
    background: rgba(255,255,255,.1);
}

.contact-list svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--white);
    font-size: .86rem;
}

.contact-list a,
.contact-list span {
    color: rgba(255,255,255,.8);
    font-size: .93rem;
}

.contact-list a:hover {
    color: var(--gold-400);
}

.form-card {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.form-card h2 {
    margin-bottom: 10px;
}

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

.form-field {
    display: grid;
    gap: 7px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--navy-950);
    font-size: .86rem;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cbd7df;
    border-radius: 11px;
    outline: none;
    background: var(--white);
    padding: 12px 14px;
    color: var(--ink-900);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
    min-height: 49px;
}

.form-field textarea {
    min-height: 160px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--cyan-600);
    box-shadow: 0 0 0 4px rgba(0,168,199,.12);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
}

.form-help {
    margin: 0;
    color: var(--ink-500);
    font-size: .8rem;
}

.alert {
    padding: 15px 17px;
    border-radius: 11px;
    margin-bottom: 22px;
    font-size: .92rem;
    font-weight: 650;
}

.alert-success {
    color: #0d6a42;
    border: 1px solid #83d3ad;
    background: #e9fbf2;
}

.alert-error {
    color: #8d1c23;
    border: 1px solid #efadb1;
    background: #fff0f1;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.map-placeholder {
    display: grid;
    min-height: 330px;
    place-items: center;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    background:
        linear-gradient(rgba(4,31,58,.82), rgba(4,31,58,.82)),
        url("../images/factory.webp") center / cover;
}

.map-placeholder h3,
.map-placeholder p {
    color: var(--white);
}

.map-placeholder p {
    color: rgba(255,255,255,.78);
}

/* Footer */
.prefooter {
    padding: 60px 0;
    color: var(--white);
    background: linear-gradient(120deg, var(--navy-900), var(--cyan-600));
}

.prefooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.prefooter h2,
.prefooter p {
    color: var(--white);
}

.prefooter h2 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.prefooter p {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(255,255,255,.8);
}

.prefooter-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 11px;
}

.site-footer {
    padding: 72px 0 0;
    color: var(--white);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr .95fr 1.15fr;
    gap: 42px;
}

.site-footer h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1rem;
}

.footer-brand img {
    width: 98px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: var(--white);
}

.footer-brand p {
    max-width: 310px;
    color: rgba(255,255,255,.62);
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-400);
    font-size: .86rem;
    font-weight: 800;
}

.profile-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transform: rotate(180deg);
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-style: normal;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: rgba(255,255,255,.64);
    font-size: .9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.09);
    margin-top: 56px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: .78rem;
}

.whatsapp-float {
    position: fixed;
    z-index: 999;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 4px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: #20a764;
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
    transition: transform 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Animations */
.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 1080px) {
    .main-nav > a:not(.button) {
        padding-inline: 8px;
        font-size: .86rem;
    }

    .hero-grid {
        grid-template-columns: 1fr .8fr;
        gap: 35px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-intro {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

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

    .brand {
        min-width: 0;
    }

    .brand-text {
        display: none;
    }

    .nav-toggle {
        display: grid;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        display: grid;
        width: 100%;
        padding: 14px 0 20px;
    }

    .js .main-nav {
        position: absolute;
        inset: 100% 0 auto 0;
        width: auto;
        max-height: calc(100vh - 84px);
        overflow-y: auto;
        padding: 22px;
        border-top: 1px solid var(--line);
        background: var(--white);
        box-shadow: var(--shadow-md);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .js .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav > a:not(.button) {
        padding: 13px 14px;
        font-size: 1rem;
    }

    .nav-cta {
        margin: 8px 0 0;
    }

    .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);
    }

    .hero {
        padding-top: 60px;
    }

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

    .hero-copy {
        text-align: center;
    }

    .hero-copy > p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 600px);
        min-height: 520px;
        margin-inline: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .stat:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-content,
    .split-content.reverse,
    .product-layout,
    .product-layout.reverse,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .product-layout.reverse .product-image {
        order: 0;
    }

    .product-layout.reverse .product-copy {
        order: 1;
    }

    .product-image img {
        min-height: 360px;
    }

    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prefooter-inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

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

    .section {
        padding: 72px 0;
    }

    .section-sm {
        padding: 50px 0;
    }

    .topbar-contact a:nth-child(2) {
        display: none;
    }

    .header-inner {
        min-height: 74px;
    }

    .brand img {
        width: 66px;
    }


    h1 {
        font-size: clamp(2.5rem, 12vw, 3.8rem);
    }

    h2 {
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .hero {
        padding: 46px 0 64px;
    }

    .hero-visual {
        min-height: 415px;
    }

    .hero-image-wrap {
        inset: 0 10px 0 20px;
        border-width: 6px;
    }

    .hero-badge {
        right: 0;
        bottom: 18px;
        width: 175px;
        padding: 16px;
        border-width: 4px;
    }

    .hero-badge.secondary {
        top: 18px;
        left: 0;
        width: 145px;
    }

    .stats-strip {
        margin-top: -20px;
    }

    .stats-grid,
    .grid-4,
    .grid-3,
    .grid-2,
    .brand-grid,
    .product-grid,
    .legal-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat + .stat {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .split-content {
        gap: 42px;
    }

    .split-media > img {
        min-height: 340px;
    }

    .brand-band {
        padding: 65px 0;
    }

    .page-hero {
        padding: 66px 0;
    }

    .page-hero h1 {
        font-size: 2.7rem;
    }

    .product-nav {
        top: 74px;
    }

    .product-section {
        padding: 70px 0;
    }

    .product-image img {
        min-height: 280px;
    }

    .quote-block,
    .mission-card,
    .form-card,
    .contact-info-card {
        padding: 27px;
    }

    .form-actions,
    .prefooter-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-actions .button,
    .prefooter-actions .button {
        width: 100%;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

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

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Updated official Prime Front logo */
.brand img,
.footer-brand img {
    object-fit: contain;
}

.footer-brand img {
    background: transparent;
    border-radius: 50%;
}

/* Homepage showcase and slider */
.home-page .home-showcase {
    padding: 34px 0 0;
    background:
        radial-gradient(circle at 8% 8%, rgba(0, 168, 199, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.pf-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(7, 55, 100, 0.12);
    border-radius: var(--radius-lg);
    background: #eef4fa;
    box-shadow: var(--shadow-md);
    isolation: isolate;
}

.pf-slider-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    overflow: hidden;
    background: #eef4fa;
}

.pf-slide {
    width: 100%;
    height: 100%;
    margin: 0;
}

.pf-slide[hidden] {
    display: none !important;
}

.pf-slide.is-active {
    display: block;
    animation: pfBannerFade 720ms ease both;
}

.pf-slide > a,
.pf-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.pf-slide img {
    object-fit: cover;
    object-position: center;
}

@keyframes pfBannerFade {
    from {
        opacity: 0.2;
        transform: scale(1.012);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pf-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    color: #fff;
    background: rgba(4, 31, 58, 0.68);
    box-shadow: 0 8px 24px rgba(4, 31, 58, 0.2);
    transform: translateY(-50%);
    transition: background 180ms ease, transform 180ms ease;
    backdrop-filter: blur(8px);
}

.pf-slider-arrow:hover,
.pf-slider-arrow:focus-visible {
    background: rgba(0, 168, 199, 0.95);
    transform: translateY(-50%) scale(1.04);
}

.pf-slider-arrow:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.72);
    outline-offset: 2px;
}

.pf-slider-arrow svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.pf-slider-prev {
    left: 18px;
}

.pf-slider-next {
    right: 18px;
}

.pf-slider-dots {
    position: absolute;
    z-index: 6;
    bottom: 16px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(4, 31, 58, 0.48);
    transform: translateX(-50%);
    backdrop-filter: blur(8px);
}

.pf-slider-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    background: transparent;
    transition: background 180ms ease, transform 180ms ease;
}

.pf-slider-dots button.is-active,
.pf-slider-dots button:hover,
.pf-slider-dots button:focus-visible {
    background: var(--cyan-500);
    transform: scale(1.15);
}

.home-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 38px;
    align-items: end;
    margin-top: 26px;
    padding: 32px 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.home-intro-copy {
    min-width: 0;
}

.home-intro h1 {
    max-width: 820px;
    margin-bottom: 14px;
    font-size: clamp(2.15rem, 4.2vw, 3.75rem);
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.home-intro p {
    max-width: 850px;
    margin-bottom: 0;
    font-size: 1.03rem;
}

.home-intro-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 210px;
    align-self: center;
}

.home-intro-actions .button {
    width: 100%;
    white-space: nowrap;
}

.home-page .stats-strip.home-stats {
    margin-top: 30px;
    padding-bottom: 10px;
}

.home-page .stats-strip.home-stats + .section {
    padding-top: 84px;
}

@media (max-width: 980px) {
    .home-intro {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .home-intro-actions {
        flex-direction: row;
        min-width: 0;
        align-self: auto;
    }

    .home-intro-actions .button {
        width: auto;
    }
}

@media (max-width: 650px) {
    .home-page .home-showcase {
        padding-top: 18px;
    }

    .pf-slider {
        border-radius: 16px;
    }

    .pf-slider-arrow {
        width: 38px;
        height: 38px;
    }

    .pf-slider-prev {
        left: 9px;
    }

    .pf-slider-next {
        right: 9px;
    }

    .pf-slider-dots {
        bottom: 9px;
        gap: 7px;
        padding: 7px 10px;
    }

    .pf-slider-dots button {
        width: 9px;
        height: 9px;
    }

    .home-intro {
        margin-top: 18px;
        padding: 24px 20px;
    }

    .home-intro .eyebrow {
        margin-bottom: 12px;
    }

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

    .home-intro p {
        font-size: 0.98rem;
    }

    .home-intro-actions {
        width: 100%;
        flex-direction: column;
    }

    .home-intro-actions .button {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .home-page .stats-strip.home-stats {
        margin-top: 22px;
    }

    .home-page .stats-strip.home-stats + .section {
        padding-top: 68px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pf-slide.is-active {
        animation: none;
    }
}
