:root {
    --navy: #0b2c53;
    --navy-deep: #071d38;
    --cyan: #12c2e9;
    --green: #18a875;
    --gold: #f4b84a;
    --bg: #f7fafd;
    --white: #ffffff;
    --text: #26313f;
    --muted: #5c6b7a;
    --border: #e3e9f0;
    --shadow-sm: 0 2px 10px rgba(11, 44, 83, 0.06);
    --shadow-md: 0 12px 30px rgba(11, 44, 83, 0.12);
    --shadow-lg: 0 26px 60px rgba(11, 44, 83, 0.18);
    --radius: 8px;
    --ff-head: "Poppins", sans-serif;
    --ff-body: "Inter", sans-serif;
    --transition: 0.25s ease;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    display: block;
    max-width: 100%;
}
button,
input,
select,
textarea {
    font: inherit;
}
button {
    border: 0;
    background: none;
    cursor: pointer;
}
h1,
h2,
h3,
h4 {
    font-family: var(--ff-head);
    color: var(--navy);
    line-height: 1.18;
}
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
}
.skip-link {
    position: absolute;
    left: 20px;
    top: -60px;
    background: var(--cyan);
    color: var(--navy-deep);
    padding: 10px 14px;
    border-radius: var(--radius);
    z-index: 3000;
    font-weight: 700;
}
.skip-link:focus {
    top: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--cyan);
}
.section {
    padding: 96px 0;
}
.section.alt {
    background: var(--white);
}
.section-head {
    max-width: 720px;
    margin-bottom: 44px;
}
.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    margin-bottom: 14px;
}
.section-head p {
    color: var(--muted);
    font-size: 1.03rem;
}
.lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    max-width: 660px;
}
.muted {
    color: var(--muted);
}
.grid {
    display: grid;
    gap: 24px;
}
.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));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--cyan);
    color: var(--navy-deep);
}
.btn-primary:hover {
    background: #0ea9cd;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 194, 233, 0.32);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.56);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

#scroll-progress {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 3px;
    background: var(--cyan);
    z-index: 2200;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.site-header.solid,
.site-header.inner {
    background: rgba(7, 29, 56, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16);
    padding: 12px 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 1.28rem;
}
.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan), var(--navy));
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 800;
}
.brand-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 46px;
    padding: 5px 10px;
    /* border-radius: 8px; */
    /* background: rgba(255, 255, 255, 0.96); */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    /* border: 1px solid rgba(255, 255, 255, 0.72); */
}
.brand-logo {
    width: auto;
    height: 200px;
    max-width: 190px;
    object-fit: contain;
}
.logo small {
    display: block;
    font: 500 0.62rem var(--ff-body);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 13px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}
.icon-btn:hover {
    background: var(--cyan);
    color: var(--navy-deep);
}
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
}
.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(7, 29, 56, 0.96);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.search-overlay.open {
    opacity: 1;
    visibility: visible;
}
.search-box {
    width: min(640px, 90%);
}
.search-box input {
    width: 100%;
    border: 0;
    border-bottom: 2px solid var(--cyan);
    background: transparent;
    color: var(--white);
    font: 700 1.35rem var(--ff-head);
    padding: 14px 4px;
}
.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}
.search-close {
    position: absolute;
    right: 32px;
    top: 28px;
    color: var(--white);
    font-size: 1.5rem;
}

.hero {
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 150px 0 96px;
    overflow: hidden;
    background: var(--navy-deep);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1920&auto=format&fit=crop")
        center/cover no-repeat;
    transform: scale(1.04);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(7, 20, 38, 0.96),
        rgba(11, 44, 83, 0.82) 55%,
        rgba(20, 91, 118, 0.54)
    );
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero h1 {
    max-width: 820px;
    color: var(--white);
    font-size: clamp(2.25rem, 5vw, 4rem);
    margin-bottom: 22px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 940px;
    margin-top: 66px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.stat strong {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: var(--white);
    font: 800 clamp(1.55rem, 3vw, 2.35rem) var(--ff-head);
}
.stat strong span {
    color: var(--cyan);
}
.stat p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
    margin-top: 4px;
}

.page-hero {
    position: relative;
    padding: 150px 0 86px;
    background: var(--navy-deep);
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--page-image) center/cover no-repeat;
    opacity: 0.34;
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(7, 29, 56, 0.94),
        rgba(11, 44, 83, 0.78)
    );
}
.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4.2vw, 3.35rem);
    margin-bottom: 16px;
}
.page-hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
    max-width: 700px;
}
.breadcrumb {
    display: flex;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    margin-bottom: 22px;
}
.breadcrumb a {
    color: var(--cyan);
    font-weight: 700;
}

.feature-card,
.solution-card,
.service-card,
.industry-card,
.news-card,
.value-card,
.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.feature-card,
.solution-card,
.value-card {
    padding: 28px;
}
.feature-card:hover,
.solution-card:hover,
.service-card:hover,
.industry-card:hover,
.news-card:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        rgba(11, 44, 83, 0.08),
        rgba(18, 194, 233, 0.14)
    );
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 1.35rem;
    margin-bottom: 18px;
}
.feature-card h3,
.solution-card h3,
.value-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
}
.feature-card p,
.solution-card p,
.value-card p,
.service-card p,
.news-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 58px;
    align-items: center;
}
.media-frame {
    position: relative;
}
.media-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.float-note {
    position: absolute;
    left: -20px;
    bottom: -22px;
    max-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 20px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.float-note i {
    color: var(--cyan);
    font-size: 1.45rem;
    margin-top: 2px;
}
.float-note strong {
    display: block;
    color: var(--navy);
    font-family: var(--ff-head);
    margin-bottom: 2px;
}
.float-note span {
    font-size: 0.82rem;
    color: var(--muted);
}
.copy-block p {
    color: var(--muted);
    margin-bottom: 16px;
}
.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}
.mini-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
}
.mini-card i {
    color: var(--cyan);
    margin-bottom: 8px;
}
.mini-card h3 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}
.mini-card p {
    font-size: 0.82rem;
    color: var(--muted);
}

.service-card {
    display: flex;
    gap: 18px;
    padding: 24px;
}
.service-card .num {
    min-width: 34px;
    color: var(--cyan);
    font: 800 1.05rem var(--ff-head);
}
.service-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}
.industry-card {
    padding: 24px;
    text-align: center;
}
.industry-card .card-icon {
    margin: 0 auto 14px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}
.industry-card h3 {
    font-size: 0.98rem;
}
.partner-card {
    padding: 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.72);
    box-shadow: none;
}
.partner-card i {
    font-size: 1.45rem;
    color: var(--cyan);
    margin-bottom: 14px;
}
.partner-card h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}
.dark-band {
    background: linear-gradient(
        150deg,
        var(--navy-deep),
        var(--navy) 62%,
        #123a68
    );
    color: var(--white);
}
.dark-band h2 {
    color: var(--white);
}
.dark-band .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.news-card {
    overflow: hidden;
}
.news-card img {
    width: 100%;
    height: 214px;
    object-fit: cover;
}
.news-body {
    padding: 22px;
}
.news-date {
    display: block;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.news-body h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 800;
    font-size: 0.88rem;
    margin-top: 12px;
}
.article-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 44px;
    align-items: start;
}
.article-main {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.article-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.article-content {
    padding: 36px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: var(--muted);
    font-size: 0.86rem;
    margin-bottom: 20px;
}
.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.article-content h2 {
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    margin: 28px 0 12px;
}
.article-content p {
    color: var(--muted);
    margin-bottom: 16px;
}
.article-content ul {
    list-style: disc;
    padding-left: 22px;
    color: var(--muted);
    margin: 0 0 20px;
}
.article-content li {
    margin-bottom: 8px;
}
.article-sidebar {
    display: grid;
    gap: 18px;
}
.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}
.sidebar-card h2 {
    font-size: 1rem;
    margin-bottom: 12px;
}
.sidebar-card p,
.sidebar-card a {
    font-size: 0.9rem;
}
.sidebar-card a {
    display: block;
    color: var(--navy);
    font-weight: 800;
    margin-top: 10px;
}

.cta-band {
    padding: 72px 0;
    background: var(--navy);
    color: var(--white);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.cta-inner h2 {
    color: var(--white);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    margin-bottom: 8px;
}
.cta-inner p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 52px;
}
.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-sm);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.field.full {
    grid-column: 1/-1;
}
.field label {
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 800;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    padding: 12px 14px;
    color: var(--text);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0;
    border-color: var(--cyan);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(18, 194, 233, 0.12);
}
.field textarea {
    min-height: 130px;
    resize: vertical;
}
.err {
    min-height: 16px;
    color: #d9455f;
    font-size: 0.75rem;
}
.invalid {
    border-color: #d9455f !important;
}
.form-status {
    margin-top: 12px;
    min-height: 22px;
    font-weight: 800;
    font-size: 0.9rem;
}
.form-status.success {
    color: #128a5c;
}
.info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 34px;
}
.info-card h2 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 18px;
}
.info-row {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}
.info-row i {
    color: var(--cyan);
    margin-top: 4px;
}
.info-row strong {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    margin-bottom: 2px;
}
.info-row span {
    font-size: 0.94rem;
}
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}
.social-row a:hover {
    background: var(--cyan);
    color: var(--navy-deep);
}
.map-frame {
    height: 220px;
    border-radius: var(--radius);
    margin-top: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, #dce6f0, #eef3f8);
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--muted);
}
.map-frame i {
    font-size: 1.8rem;
    color: var(--cyan);
    margin-bottom: 8px;
}

.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.68);
    padding: 78px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
    gap: 34px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p,
.footer-col p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.56);
    margin: 15px 0 18px;
}
.footer-col h2 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.62);
    transition: var(--transition);
}
.footer-col a:hover {
    color: var(--cyan);
}
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.newsletter-form input {
    min-width: 0;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    padding: 11px 12px;
}
.newsletter-form button {
    border-radius: var(--radius);
    background: var(--cyan);
    color: var(--navy-deep);
    padding: 0 15px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 24px 0;
    font-size: 0.82rem;
}
.legal {
    display: flex;
    gap: 18px;
}

#back-to-top,
#fab {
    position: fixed;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 900;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
#back-to-top {
    right: 26px;
    bottom: 26px;
    width: 46px;
    height: 46px;
    background: var(--navy);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover,
#fab:hover {
    background: var(--cyan);
    color: var(--navy-deep);
}
#fab {
    left: 26px;
    bottom: 26px;
    width: 54px;
    height: 54px;
    background: var(--cyan);
    color: var(--navy-deep);
    font-size: 1.2rem;
}

@media (max-width: 1080px) {
    .grid-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .split,
    .contact-grid,
    .article-wrap {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .media-frame img {
        height: 390px;
    }
}
@media (max-width: 920px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-actions .btn-primary {
        display: none;
    }
    .nav-menu.open {
        display: flex;
        position: fixed;
        right: 0;
        top: 0;
        width: min(330px, 84vw);
        height: 100vh;
        background: var(--navy-deep);
        flex-direction: column;
        align-items: stretch;
        padding: 96px 24px 24px;
        box-shadow: -10px 0 34px rgba(0, 0, 0, 0.28);
        overflow: auto;
    }
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }
    .section {
        padding: 72px 0;
    }
    .hero {
        min-height: auto;
        padding: 132px 0 76px;
    }
    .hero-stats,
    .grid-2,
    .grid-3,
    .grid-4,
    .mini-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding: 132px 0 70px;
    }
    .float-note {
        position: static;
        margin: 14px 0 0;
        max-width: none;
    }
    .article-main img {
        height: 240px;
    }
    .article-content {
        padding: 24px;
    }
    .contact-form {
        padding: 24px;
    }
    .footer-bottom,
    .legal {
        align-items: flex-start;
        flex-direction: column;
    }
    #fab {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
