:root {
    --navy-950: #061827;
    --navy-900: #081f36;
    --navy-800: #0c2c4b;
    --navy-700: #123d64;
    --blue-600: #1675b9;
    --blue-500: #2495d0;
    --cyan-400: #38bce7;
    --orange-500: #f57c22;
    --orange-400: #ff963f;
    --green-500: #19a862;
    --ink-900: #152433;
    --ink-700: #425466;
    --ink-500: #687887;
    --line: #dce5eb;
    --surface: #f4f7f9;
    --white: #ffffff;
    --shadow-sm: 0 8px 24px rgba(5, 30, 51, 0.08);
    --shadow-lg: 0 24px 60px rgba(5, 30, 51, 0.16);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink-900);
    background: var(--white);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .sticky-contact {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

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

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

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

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

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

h1,
h2,
h3,
h4 {
    color: var(--navy-900);
    line-height: 1.22;
}

h1 {
    font-size: clamp(2.45rem, 5vw, 4.75rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.25rem;
}

::selection {
    color: var(--white);
    background: var(--blue-600);
}

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

.section {
    padding: 104px 0;
}

.section-kicker,
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--blue-600);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-kicker::before,
.hero-kicker::before {
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: var(--orange-500);
    content: "";
}

.section-kicker-light,
.section-kicker-light::before {
    color: #bce8fb;
}

.section-heading {
    margin-bottom: 50px;
}

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

.section-heading > p,
.split-heading > p {
    max-width: 610px;
    margin-bottom: 0;
    color: var(--ink-700);
}

.section-heading-centered {
    max-width: 790px;
    margin-inline: auto;
    text-align: center;
}

.section-heading-centered h2,
.section-heading-centered p {
    margin-inline: auto;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: end;
    gap: 60px;
}

.compact-heading {
    margin-bottom: 32px;
}

.compact-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--blue-600);
    box-shadow: 0 10px 22px rgba(22, 117, 185, 0.22);
}

.button-primary:hover {
    background: var(--navy-700);
}

.button-accent {
    color: var(--white);
    background: var(--orange-500);
    box-shadow: 0 12px 25px rgba(245, 124, 34, 0.27);
}

.button-accent:hover {
    background: var(--orange-400);
}

.button-whatsapp {
    color: var(--white);
    background: var(--green-500);
    box-shadow: 0 10px 22px rgba(25, 168, 98, 0.22);
}

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

.button-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.button-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}

.button-block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue-600);
    font-size: 0.86rem;
    font-weight: 800;
}

.text-link::after {
    content: "→";
    transition: transform 160ms ease;
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    transform: translateY(-150%);
    color: var(--white);
    border-radius: 6px;
    background: var(--navy-900);
}

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

.topbar {
    color: #dceaf3;
    background: var(--navy-950);
    font-size: 0.78rem;
}

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

.topbar p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
}

.topbar-inner > div {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    font-weight: 700;
}

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

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38d98c;
    box-shadow: 0 0 0 5px rgba(56, 217, 140, 0.12);
}

.site-header {
    position: relative;
    z-index: 1000;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy-900);
}

.site-header.is-sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 12px 30px rgba(0, 16, 30, 0.2);
}

.header-inner {
    display: grid;
    min-height: 88px;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand img {
    width: 178px;
    height: auto;
}

.main-nav {
    justify-self: center;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav > ul > li > a,
.main-nav > ul > li > button {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    color: #e8f2f8;
    border: 0;
    border-radius: 7px;
    background: transparent;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 700;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a[aria-current="page"],
.main-nav > ul > li > button:hover,
.has-dropdown.is-open > button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.has-dropdown {
    position: static;
}

.dropdown-menu {
    position: absolute;
    visibility: hidden;
    top: calc(100% - 8px);
    left: 50%;
    width: min(calc(100% - 40px), 1120px);
    max-height: min(68vh, 650px);
    padding: 20px;
    transform: translate(-50%, 10px);
    overflow-y: auto;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-md);
    background: var(--navy-900);
    box-shadow: var(--shadow-lg);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
    visibility: visible;
    transform: translate(-50%, 0);
    opacity: 1;
}

.dropdown-all {
    display: flex;
    margin-bottom: 14px;
    padding: 11px 14px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 8px;
    background: var(--blue-600);
    font-size: 0.82rem;
    font-weight: 800;
}

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

.dropdown-grid a {
    padding: 9px 11px;
    color: #cbdce8;
    border-radius: 6px;
    font-size: 0.78rem;
    line-height: 1.35;
}

.dropdown-grid a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

.header-cta {
    display: flex;
    min-width: 172px;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.25;
}

.header-cta small {
    color: #91afc4;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-cta strong {
    color: var(--white);
    font-size: 1rem;
}

.menu-toggle {
    display: none;
}

.breadcrumb-wrap {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.breadcrumbs ol {
    display: flex;
    min-height: 49px;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    font-size: 0.75rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
    color: #9aabb7;
    content: "/";
}

.breadcrumbs a {
    color: var(--blue-600);
    font-weight: 700;
}

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

.hero-slider {
    position: relative;
    height: min(725px, calc(100vh - 126px));
    min-height: 590px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.hero-slide {
    position: absolute;
    visibility: hidden;
    inset: 0;
    opacity: 0;
    transition: opacity 800ms ease, visibility 800ms ease;
}

.hero-slide.is-active {
    visibility: visible;
    opacity: 1;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    transition: transform 7s ease;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 20, 34, 0.89) 0%, rgba(6, 31, 51, 0.7) 50%, rgba(6, 31, 51, 0.52) 100%);
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: min(calc(100% - 40px), 1040px);
    align-items: center;
    flex-direction: column;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-slide-content .hero-kicker {
    color: #c2ecfb;
}

.hero-slide-content h1,
.hero-slide-content h2,
.hero-slide-content h3 {
    color: var(--white);
}

.hero-slide-content h1,
.hero-slide-content .hero-main-title {
    max-width: 980px;
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 5.6vw, 5.15rem);
    font-weight: 800;
    letter-spacing: -0.052em;
    line-height: 1.03;
}

.hero-slide-content h2:not(.hero-main-title),
.hero-slide-content h3 {
    max-width: 840px;
    margin-bottom: 17px;
    color: #d7e8f2;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-slide-content p {
    max-width: 800px;
    margin-bottom: 31px;
    color: #d8e7ef;
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.slider-controls {
    position: absolute;
    z-index: 3;
    bottom: 36px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transform: translateX(-50%);
}

.slider-controls > button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.16);
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 28px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.slider-dots button.is-active {
    background: var(--orange-500);
}

.trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    color: var(--white);
    background: var(--navy-900);
}

.trust-grid {
    display: grid;
    min-height: 108px;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.trust-grid > div {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong {
    color: var(--orange-400);
    font-size: 1.45rem;
}

.trust-grid span {
    max-width: 135px;
    color: #d5e4ee;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
}

.identity-section {
    overflow: hidden;
}

.identity-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 78px;
}

.identity-image {
    position: relative;
}

.identity-image::before {
    position: absolute;
    z-index: -1;
    top: -28px;
    left: -28px;
    width: 58%;
    height: 58%;
    border-radius: var(--radius-lg);
    background: #e7f5fb;
    content: "";
}

.identity-image img {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    right: -28px;
    bottom: 32px;
    display: flex;
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    border: 9px solid var(--white);
    border-radius: 50%;
    background: var(--orange-500);
    text-align: center;
}

.experience-badge strong {
    font-size: 2.15rem;
    line-height: 1;
}

.experience-badge span {
    max-width: 82px;
    margin-top: 7px;
    font-size: 0.67rem;
    font-weight: 700;
    line-height: 1.35;
}

.identity-content h2 {
    margin-bottom: 25px;
}

.identity-content > p {
    margin-bottom: 28px;
    color: var(--ink-700);
}

.identity-features {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.identity-features > div {
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.identity-features span {
    display: grid;
    width: 41px;
    height: 41px;
    place-items: center;
    color: var(--blue-600);
    border-radius: 50%;
    background: #e9f4fa;
    font-size: 0.72rem;
    font-weight: 800;
}

.identity-features p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.9rem;
}

.identity-features b {
    display: block;
    margin-bottom: 2px;
    color: var(--navy-900);
    font-size: 0.94rem;
}

.featured-services {
    background: var(--surface);
}

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

.featured-service-card {
    position: relative;
    min-height: 285px;
    padding: 29px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 7px 22px rgba(6, 31, 51, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.featured-service-card:hover {
    transform: translateY(-6px);
    border-color: #bad8e8;
    box-shadow: var(--shadow-sm);
}

.featured-service-card > span {
    display: block;
    margin-bottom: 29px;
    color: var(--orange-500);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.featured-service-card h3 {
    margin-bottom: 14px;
}

.featured-service-card h3 a:hover {
    color: var(--blue-600);
}

.featured-service-card p {
    color: var(--ink-700);
    font-size: 0.86rem;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.process-section {
    color: var(--white);
    background: var(--navy-900);
}

.process-section .section-kicker {
    color: #a8dbef;
}

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

.process-section .section-heading p {
    color: #b9cbd7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
}

.process-card {
    min-height: 355px;
    padding: 35px 29px;
    background: var(--navy-900);
    transition: background 180ms ease;
}

.process-card:hover {
    background: var(--navy-800);
}

.process-no {
    display: block;
    margin-bottom: 62px;
    color: var(--cyan-400);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.process-card h3 {
    margin-bottom: 11px;
    font-size: 1.38rem;
}

.process-card strong {
    display: block;
    margin-bottom: 12px;
    color: #d8e7f0;
    font-size: 0.83rem;
    line-height: 1.5;
}

.process-card p {
    margin-bottom: 0;
    color: #9eb4c4;
    font-size: 0.81rem;
}

.machines-section {
    background: var(--white);
}

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

.machine-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 7px 22px rgba(6, 31, 51, 0.045);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.machine-image-wrap {
    position: relative;
    overflow: hidden;
    background: #e9eef1;
}

.machine-image-wrap img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
    transition: transform 400ms ease;
}

.machine-card:hover img {
    transform: scale(1.035);
}

.machine-image-wrap span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    color: var(--white);
    border-radius: 5px;
    background: rgba(8, 31, 54, 0.86);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.machine-content {
    padding: 23px;
}

.machine-content h3 {
    margin-bottom: 8px;
    font-size: 1.06rem;
}

.machine-content > strong {
    display: block;
    margin-bottom: 11px;
    color: var(--blue-600);
    font-size: 0.77rem;
    line-height: 1.45;
}

.machine-content p {
    color: var(--ink-700);
    font-size: 0.79rem;
}

.machine-content .text-link {
    font-size: 0.72rem;
}

.safety-note {
    margin: 28px 0 0;
    padding: 19px 22px;
    color: #75441d;
    border: 1px solid #ffd0a8;
    border-radius: var(--radius-sm);
    background: #fff7f0;
    font-size: 0.82rem;
}

.quick-cta {
    display: grid;
    width: min(calc(100% - 40px), var(--container));
    min-height: 220px;
    margin: 0 auto;
    padding: 46px 56px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 42px;
    color: var(--white);
    border-radius: var(--radius-lg);
    background: linear-gradient(110deg, var(--blue-600), var(--navy-800));
    box-shadow: var(--shadow-lg);
}

.quick-cta h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.quick-cta p {
    margin-bottom: 0;
    color: #d9eaf3;
    font-size: 0.9rem;
}

.quick-cta p b {
    color: var(--orange-400);
}

.quick-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 82px;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    margin-bottom: 19px;
}

.faq-intro p {
    margin-bottom: 27px;
    color: var(--ink-700);
}

.accordion-list {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

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

.faq-item summary {
    display: grid;
    min-height: 74px;
    padding: 19px 50px 19px 20px;
    grid-template-columns: 33px 1fr;
    align-items: center;
    gap: 13px;
    color: var(--navy-900);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    right: 22px;
    color: var(--blue-600);
    content: "+";
    font-size: 1.45rem;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item summary {
    position: relative;
}

.faq-item summary span {
    color: var(--orange-500);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.faq-answer {
    padding: 0 50px 22px 66px;
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--ink-700);
    font-size: 0.84rem;
}

.regions-links-section {
    background: var(--white);
}

.link-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.link-cloud a {
    padding: 8px 11px;
    color: var(--ink-700);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    font-size: 0.71rem;
    font-weight: 600;
    transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.link-cloud a:hover {
    color: var(--white);
    border-color: var(--blue-600);
    background: var(--blue-600);
}

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

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

.service-link-grid > a {
    display: grid;
    min-height: 126px;
    padding: 20px;
    grid-template-columns: 28px 1fr;
    align-content: center;
    column-gap: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.service-link-grid > a:hover {
    transform: translateY(-3px);
    border-color: #a6d1e7;
    box-shadow: var(--shadow-sm);
}

.service-link-grid > a > span {
    grid-row: 1 / 3;
    color: var(--orange-500);
    font-size: 1.1rem;
}

.service-link-grid b {
    color: var(--navy-900);
    font-size: 0.88rem;
}

.service-link-grid small {
    margin-top: 5px;
    color: var(--ink-500);
    font-size: 0.7rem;
    line-height: 1.45;
}

.inner-hero {
    position: relative;
    display: flex;
    min-height: 530px;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.inner-hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 21, 36, 0.94) 0%, rgba(6, 34, 58, 0.78) 52%, rgba(6, 34, 58, 0.58) 100%);
    content: "";
}

.inner-hero-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.inner-hero::after {
    position: absolute;
    z-index: 1;
    right: -12vw;
    bottom: -28vw;
    width: 55vw;
    height: 55vw;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
    content: "";
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero .hero-kicker {
    color: #b8e4f5;
}

.inner-hero h1 {
    max-width: 1000px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.9rem);
}

.inner-hero p {
    max-width: 790px;
    margin-bottom: 29px;
    color: #d3e4ee;
    font-size: 1rem;
}

.simple-hero {
    min-height: 390px;
    background: url("../images/banner-kurutma.jpg") center/cover no-repeat;
}

.simple-hero h1 {
    max-width: 920px;
    font-size: clamp(2.5rem, 4.7vw, 4.2rem);
}

.article-section {
    background: var(--white);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 76px;
}

.technical-article {
    max-width: 820px;
}

.article-header {
    margin-bottom: 46px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}

.article-header h2 {
    margin-bottom: 18px;
}

.article-header > p {
    color: var(--ink-700);
    font-size: 1.05rem;
}

.technical-article > section {
    margin-bottom: 42px;
}

.technical-article > section h2 {
    margin-bottom: 15px;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    letter-spacing: -0.02em;
}

.technical-article > section p {
    margin-bottom: 0;
    color: #344758;
    font-size: 0.96rem;
}

.article-aside {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 16px;
}

.aside-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(6, 31, 51, 0.05);
}

.aside-card h3 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.aside-contact {
    color: var(--white);
    border-color: transparent;
    background: var(--navy-900);
}

.aside-contact > span {
    display: block;
    margin-bottom: 5px;
    color: #9ec9df;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.aside-contact > strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.aside-contact p {
    color: #bed0dc;
    font-size: 0.78rem;
}

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

.check-list li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-700);
    font-size: 0.78rem;
}

.check-list li::before {
    position: absolute;
    top: 6px;
    left: 0;
    display: grid;
    width: 14px;
    height: 14px;
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    background: var(--green-500);
    content: "✓";
    font-size: 0.55rem;
}

.aside-address p {
    margin-bottom: 13px;
    color: var(--ink-700);
    font-size: 0.75rem;
    line-height: 1.55;
}

.about-page {
    background: var(--white);
}

.about-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: start;
    gap: 78px;
}

.about-page article h2 {
    margin-bottom: 26px;
}

.about-page article p {
    color: #344758;
}

.about-page article p:first-of-type::first-letter {
    float: left;
    margin: 8px 9px 0 0;
    color: var(--blue-600);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 0.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.about-stats div {
    display: flex;
    min-height: 145px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--surface);
    text-align: center;
}

.about-stats strong {
    color: var(--blue-600);
    font-size: 2rem;
}

.about-stats span {
    color: var(--ink-700);
    font-size: 0.73rem;
}

.contact-page {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
}

.contact-primary {
    grid-row: 1 / 3;
    padding: 54px;
    color: var(--white);
    border-radius: var(--radius-lg);
    background: var(--navy-900);
}

.contact-primary h2 {
    margin-bottom: 20px;
    color: var(--white);
}

.contact-primary p {
    color: #bcd0dc;
}

.contact-phone {
    display: block;
    margin: 28px 0;
    color: var(--orange-400);
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.address-card {
    min-height: 230px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.address-card > span {
    color: var(--blue-600);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.address-card h3 {
    margin: 10px 0;
}

.address-card p {
    color: var(--ink-700);
    font-size: 0.84rem;
}

.not-found {
    display: grid;
    min-height: 65vh;
    place-items: center;
    padding: 100px 0;
    background: var(--surface);
    text-align: center;
}

.not-found span {
    display: block;
    color: var(--blue-600);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.not-found h1 {
    margin: 20px 0 12px;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.site-footer {
    margin-top: 104px;
    color: #b8cbd8;
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    padding: 74px 0 64px;
    grid-template-columns: 1.25fr 0.75fr 1fr 1.1fr;
    gap: 50px;
}

.footer-brand img {
    width: 178px;
    margin-bottom: 20px;
}

.footer-brand p,
.footer-grid > div > p {
    font-size: 0.78rem;
    line-height: 1.65;
}

.footer-phone {
    display: inline-block;
    margin-top: 8px;
    color: var(--orange-400);
    font-size: 1.28rem;
    font-weight: 800;
}

.footer-grid h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-grid ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li,
.footer-grid a,
.footer-grid p {
    font-size: 0.77rem;
}

.footer-grid li a:hover {
    color: var(--white);
}

.footer-grid b {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #849dad;
    font-size: 0.68rem;
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-bottom span {
    margin: 0 6px;
}

/* Bölge ve ekipman detayları */
.region-group + .region-group {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.region-group h3 {
    margin: 0 0 16px;
    color: var(--navy-950);
    font-size: 1.15rem;
}

.machine-card h3 a {
    color: inherit;
}

.machine-card h3 a:hover {
    color: var(--blue-600);
}

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

.machine-detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 64px;
    align-items: start;
}

.machine-detail-image {
    position: sticky;
    top: 150px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.machine-detail-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.machine-detail-content h2 {
    margin-top: 8px;
}

.machine-detail-content h3 {
    margin: 34px 0 10px;
    color: var(--navy-950);
}

.machine-detail-content p {
    color: var(--text-muted);
    line-height: 1.85;
}

.machine-spec {
    display: grid;
    gap: 6px;
    margin: 30px 0;
    padding: 24px;
    border-left: 4px solid var(--orange-500);
    border-radius: 0 16px 16px 0;
    background: var(--white);
}

.machine-spec span {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.machine-spec strong {
    color: var(--navy-950);
    font-size: 1.15rem;
}

.sticky-contact {
    position: fixed;
    z-index: 2500;
    bottom: max(15px, env(safe-area-inset-bottom));
    left: 50%;
    display: none;
    width: min(calc(100% - 30px), 510px);
    transform: translateX(-50%);
    overflow: hidden;
    border: 4px solid #ffd400;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    animation: sticky-border-glow 1.2s infinite, sticky-wiggle 2.5s infinite;
}

.sticky-contact-button {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease;
}

.sticky-contact-call {
    background: #f55b14;
}

.sticky-contact-call:hover,
.sticky-contact-call:focus-visible {
    color: var(--white);
    background: var(--navy-950);
}

.sticky-contact-whatsapp {
    background: #25d366;
}

.sticky-contact-whatsapp:hover,
.sticky-contact-whatsapp:focus-visible {
    color: var(--white);
    background: #073819;
}

.sticky-contact-button:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: -5px;
}

.sticky-contact-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: currentColor;
}

@keyframes sticky-border-glow {
    0%, 100% {
        border-color: #ffd400;
        box-shadow: 0 0 8px 2px rgba(255, 212, 0, 0.7);
    }

    50% {
        border-color: #ff3d3d;
        box-shadow: 0 0 18px 6px rgba(255, 61, 61, 0.85);
    }
}

@keyframes sticky-wiggle {
    0%, 90%, 100% {
        transform: translateX(-50%) scale(1);
    }

    92% {
        transform: translateX(-50%) scale(1.04);
    }

    94% {
        transform: translateX(-50%) scale(0.98);
    }

    96% {
        transform: translateX(-50%) scale(1.03);
    }

    98% {
        transform: translateX(-50%) scale(1);
    }
}
