@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
    --ink: #0F172A;
    --muted: #475569;
    --brand: #0B4A8B;
    --brand-dark: #072A52;
    --brand-light: #1D4ED8;
    --panel: #F8FAFC;
    --panel-light: #ffffff;
    --cyan: #E0F2FE;
    --pink: #DBEAFE;
    --paper: #ffffff;
    --surface: #ffffff;
    --line: rgba(11, 74, 139, 0.12);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(11, 74, 139, 0.08), 0 8px 10px -6px rgba(11, 74, 139, 0.04);
    --shadow-lg: 0 20px 35px -10px rgba(11, 74, 139, 0.12), 0 10px 12px -5px rgba(11, 74, 139, 0.06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-size: 1.05rem;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* Background Subtle Texture Shapes */
body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    pointer-events: none;
    width: 44vw;
    height: 75vh;
    opacity: 0.25;
    filter: blur(20px);
    background:
        repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0 12px, rgba(255, 255, 255, 0.38) 13px 16px),
        linear-gradient(130deg, rgba(224, 242, 254, 0.8), rgba(219, 234, 254, 0.85), rgba(186, 230, 253, 0.5));
    clip-path: polygon(0 0, 70% 0, 95% 12%, 72% 25%, 44% 41%, 63% 60%, 92% 78%, 64% 100%, 18% 74%, 0 58%);
}

body::before {
    left: -16vw;
    top: -9vh;
    transform: rotate(-8deg);
}

body::after {
    right: -18vw;
    bottom: -16vh;
    transform: rotate(185deg);
}

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

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

/* Layout Container */
.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

/* Sticky Header & Navbar Layout */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(14px);
    transition: all 0.25s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-family: "Poppins", Arial, sans-serif;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.12;
}

.logo-line1 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.logo-line2 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(11, 74, 139, 0.12);
    border: 1px solid rgba(11, 74, 139, 0.1);
    overflow: hidden;
    flex-shrink: 0;
}

.logo-mark img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 600;
    font-size: 0.92rem;
}

.nav-menu a {
    display: inline-block;
    padding: 8px 14px;
    color: var(--muted);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    color: var(--brand);
    background: rgba(11, 74, 139, 0.05);
}

.nav-menu a.active {
    color: var(--brand);
    background: rgba(11, 74, 139, 0.09);
    font-weight: 700;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid var(--brand);
    background: var(--surface);
    color: var(--brand);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(11, 74, 139, 0.08);
}

.menu-bars {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
}

.menu-bars .bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--brand);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.2s ease;
}

.menu-toggle.active {
    background: var(--brand);
    border-color: var(--brand);
}

.menu-toggle.active .menu-bars .bar {
    background-color: #ffffff;
}

.menu-toggle.active .menu-bars .bar:nth-child(1) {
    transform: translateY(5.75px) rotate(45deg);
}

.menu-toggle.active .menu-bars .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-bars .bar:nth-child(3) {
    transform: translateY(-5.75px) rotate(-45deg);
}

/* Button Layouts & Hierarchy */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    border: 2px solid var(--brand);
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-primary {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
    box-shadow: 0 4px 14px rgba(11, 74, 139, 0.22);
}

.btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(11, 74, 139, 0.32);
}

.btn-secondary {
    color: var(--brand);
    background: #ffffff;
    border-color: rgba(11, 74, 139, 0.25);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    color: var(--brand-dark);
    border-color: var(--brand);
    background: var(--panel);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section Layout */
.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 72px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border-bottom: 1px solid var(--line);
}

.hero-grid,
.split {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 52px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 5px 14px;
    background: rgba(11, 74, 139, 0.08);
    border: 1px solid rgba(11, 74, 139, 0.18);
    border-radius: 20px;
    color: var(--brand);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    color: var(--brand);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    color: var(--brand-dark);
}

h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    color: var(--brand);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    color: var(--brand);
}

p {
    margin: 0 0 18px;
    color: var(--ink);
    line-height: 1.62;
}

.hero p,
.section-head p {
    max-width: 760px;
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    color: var(--muted);
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

/* Visual Frame Layout */
.visual {
    position: relative;
    min-height: 280px;
    width: 100%;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(11, 74, 139, 0.15);
    background: var(--panel);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.visual:hover {
    transform: translateY(-4px);
}

.visual img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual:hover img {
    transform: scale(1.03);
}

.logo-visual {
    display: grid;
    place-items: center;
    min-height: 380px;
    border: 1px solid rgba(11, 74, 139, 0.12);
    background: #ffffff;
    box-shadow: var(--shadow-md);
    padding: 32px;
}

.logo-visual img {
    width: min(320px, 85%);
    min-height: auto;
    object-fit: contain;
}

/* Key Stats Layout */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(11, 74, 139, 0.12);
}

.stat {
    background: #ffffff;
    border: 1px solid rgba(11, 74, 139, 0.12);
    border-radius: 8px;
    padding: 20px 18px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat strong {
    display: block;
    color: var(--brand);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.stat span {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Sections & Rhythmic Spacing */
section {
    position: relative;
    padding: 84px 0;
}

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

.band {
    overflow: hidden;
    background: #F0F6FF;
    border-block: 1px solid rgba(11, 74, 139, 0.1);
}

/* Grid & Card Layout Systems */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-top: 4px solid var(--brand);
    border-radius: 10px;
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--brand-light);
}

.card h3 {
    font-size: 1.3rem;
    color: var(--brand);
    margin-bottom: 12px;
    font-weight: 700;
}

.card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 22px;
    flex-grow: 1;
}

.card .btn {
    margin-top: auto;
}

/* Gallery Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-item {
    margin: 0;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item figcaption {
    padding: 16px 20px;
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* Infrastructure & Workflow Grid Systems */
.text-center {
    text-align: center;
}

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

.infra-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(11, 74, 139, 0.12);
    border-radius: 10px;
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.infra-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 74, 139, 0.3);
}

.infra-card h3 {
    color: var(--brand);
    margin-bottom: 18px;
    font-size: 1.25rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.workflow-card {
    background: #ffffff;
    border: 1px solid rgba(11, 74, 139, 0.15);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.workflow-card h3 {
    color: var(--brand);
    margin-bottom: 22px;
    font-size: 1.3rem;
    border-bottom: 2px solid rgba(11, 74, 139, 0.1);
    padding-bottom: 12px;
}

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

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--ink);
    overflow-wrap: anywhere;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(11, 74, 139, 0.12);
}

.workflow-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 10px rgba(11, 74, 139, 0.22);
}

/* Bullet Lists Layout */
.list,
.equipment-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
}

.list li,
.equipment-list li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    line-height: 1.55;
}

.list li::before,
.equipment-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: var(--brand);
}

/* FAQ Layout */
.faq-item {
    margin-bottom: 14px;
    border: 1px solid rgba(11, 74, 139, 0.14);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    border: 0;
    border-left: 6px solid var(--brand);
    background: #ffffff;
    color: var(--brand-dark);
    font: inherit;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--panel);
}

.faq-answer {
    display: none;
    padding: 16px 24px 22px 30px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
    border-top: 1px solid rgba(11, 74, 139, 0.08);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Forms & Input Layout */
.form-card {
    background: #ffffff;
    border: 1px solid rgba(11, 74, 139, 0.15);
    border-radius: 12px;
    padding: 34px 30px;
    box-shadow: var(--shadow-md);
}

form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 6px;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

input,
select,
textarea {
    width: 100%;
    border: 1.5px solid rgba(15, 23, 42, 0.16);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--ink);
    font: inherit;
    font-size: 0.98rem;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(11, 74, 139, 0.14);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.is-invalid {
    border-color: #DC2626;
}

.form-status {
    margin: 0;
    color: var(--brand);
    font-weight: 700;
}

/* Contact Strip Layout */
.contact-strip {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.contact-visual {
    display: grid;
    place-items: center;
    min-height: clamp(280px, 34vw, 420px);
    padding: 12px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: auto;
    max-height: min(64vh, 420px);
    object-fit: contain;
}

.contact-list {
    display: grid;
    gap: 24px;
    margin-top: 22px;
}

.contact-line {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
    font-size: clamp(0.98rem, 1.5vw, 1.15rem);
}

.contact-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 2px solid var(--brand);
    border-radius: 8px;
    color: var(--brand);
    background: rgba(11, 74, 139, 0.05);
    font-weight: 800;
    font-size: 0.85rem;
}

.contact-line a {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.contact-line a:hover {
    opacity: 0.8;
}

/* Site Footer Layout */
.site-footer {
    padding: 56px 0 32px;
    background: var(--brand-dark);
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.site-footer h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
    display: inline-block;
}

.site-footer p,
.site-footer a {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.7;
}

.site-footer p a {
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
}

/* Floating Back to Top Button */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99;
    display: none;
    width: 48px;
    height: 48px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background: var(--brand);
    place-items: center;
    box-shadow: 0 8px 20px rgba(11, 74, 139, 0.35);
    cursor: pointer;
    font-weight: 800;
    font-size: 1.2rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.back-to-top:hover {
    background: var(--brand-dark);
    transform: translateY(-3px);
}

.back-to-top.visible {
    display: grid;
}

@keyframes slideDownMobile {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Layout Breakpoint (<= 980px) */
@media (max-width: 980px) {
    .grid,
    .gallery-grid,
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* Tablet & Mobile Navigation & Split Layouts (<= 860px) */
@media (max-width: 860px) {
    body {
        font-size: 1rem;
    }

    section {
        padding: 56px 0;
    }

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

    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        align-items: center;
        min-height: 68px;
        padding: 8px 0;
        gap: 12px;
    }

    .logo {
        gap: 10px;
        max-width: none;
        overflow: visible;
        flex-shrink: 1;
    }

    .logo-mark {
        width: 42px;
        height: 42px;
    }

    .logo-mark img {
        width: 28px;
        height: 28px;
    }

    .logo-line1 {
        font-size: 0.96rem;
        line-height: 1.1;
    }

    .logo-line2 {
        font-size: 0.8rem;
        line-height: 1.1;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin-top: 10px;
        padding: 12px;
        background: #ffffff;
        border: 1px solid var(--line);
        border-top: 4px solid var(--brand);
        box-shadow: 0 16px 32px rgba(11, 74, 139, 0.15);
        border-radius: 0 0 10px 10px;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDownMobile 0.22s ease-out forwards;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.94rem;
        color: var(--ink);
        border-radius: 6px;
        transition: background 0.15s ease, color 0.15s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: var(--panel);
        color: var(--brand);
        font-weight: 700;
        border-left: 4px solid var(--brand);
        padding-left: 12px;
    }

    .hero-grid,
    .split,
    .contact-strip {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-grid .logo-visual {
        order: -1;
        min-height: 200px;
        padding: 24px 18px;
        background: #ffffff;
        border: 1px solid rgba(11, 74, 139, 0.15);
        box-shadow: var(--shadow-sm);
        border-radius: 10px;
    }

    .hero-grid .logo-visual img {
        width: min(250px, 75%);
        max-height: 160px;
        object-fit: contain;
    }

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

    .visual,
    .visual img {
        min-height: 260px;
    }

    .contact-strip {
        gap: 28px;
    }

    .contact-visual {
        order: -1;
    }
}

/* Mobile Small Devices Breakpoint (<= 580px) */
@media (max-width: 580px) {
    section {
        padding: 42px 0;
    }

    .container {
        width: min(100% - 24px, 1120px);
    }

    .nav {
        gap: 8px;
        min-height: 60px;
    }

    .logo {
        gap: 8px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .logo-mark img {
        width: 25px;
        height: 25px;
    }

    .logo-line1 {
        font-size: 0.88rem;
        line-height: 1.1;
    }

    .logo-line2 {
        font-size: 0.74rem;
        line-height: 1.1;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .menu-bars {
        width: 18px;
        height: 12px;
    }

    .menu-toggle.active .menu-bars .bar:nth-child(1) {
        transform: translateY(4.75px) rotate(45deg);
    }

    .menu-toggle.active .menu-bars .bar:nth-child(3) {
        transform: translateY(-4.75px) rotate(-45deg);
    }

    .nav > .btn {
        margin-top: 0;
        min-height: 38px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .hero {
        padding: 38px 0;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 22px;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
        min-height: 48px;
        font-size: 0.95rem;
    }

    h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
        word-break: break-word;
        overflow-wrap: break-word;
    }

    h2 {
        font-size: clamp(1.4rem, 6.5vw, 1.85rem);
        word-break: break-word;
        overflow-wrap: break-word;
    }

    h3 {
        font-size: clamp(1.15rem, 4.5vw, 1.4rem);
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .stats,
    .grid,
    .gallery-grid,
    .infra-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat,
    .card,
    .form-card,
    .workflow-card,
    .infra-card {
        padding: 22px 18px;
    }

    .contact-line p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    input,
    select,
    textarea {
        font-size: 16px; /* Prevents auto-zoom on iOS */
        padding: 12px 14px;
    }

    form button[type="submit"] {
        width: 100%;
        min-height: 48px;
        font-size: 0.98rem;
    }

    .site-footer {
        padding: 36px 0 24px;
    }
}
