/* ===== VARIABLES ===== */
:root {
    --orange: #d4521a;
    --orange-h: #c24415;
    --orange-glow: rgba(212, 82, 26, 0.25);
    --dark: #111110;
    --dark2: #1a1918;
    --dark3: #222120;
    --white: #ffffff;
    --off: #f7f5f2;
    --gray: #888580;
    --light: #efefed;
    --border: #e8e5e0;
    --font-display: 'Bebas Neue', sans-serif;
    --font-head: "Open Sans", sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 4px;
    --radius-lg: 10px;
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s var(--ease-smooth);
}

#navbar.scrolled .nav-main {
    box-shadow: 0 4px 40px rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
}

.nav-main {
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow .4s var(--ease-smooth), background .4s;
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 74px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-right: 44px;
    flex-shrink: 0;
    transition: opacity .2s;
    width: 50px;
    height: 60px;
}

.logo:hover {
    opacity: .85;
}

.nav-links {
    display: flex;
    gap: 2px;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #444;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: var(--radius);
    transition: color .25s var(--ease-smooth);
    white-space: nowrap;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .3s var(--ease-out);
    transform-origin: left;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--orange);
    color: #fff;
    padding: 14px 20px;
    flex-shrink: 0;
    transition: background .25s var(--ease-smooth);
    margin-right: -32px;
    font-family: var(--font-body);
}

.nav-cta:hover {
    background: var(--orange-h);
}

.cta-body strong {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.35s var(--ease-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.services-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 52px 0;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: scale(1.04);
    animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.services-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1.04) translateX(0px);
    }

    100% {
        transform: scale(1.10) translateX(-18px);
    }
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(10, 6, 2, 0.85) 0%, rgba(10, 6, 2, 0.58) 55%, rgba(10, 6, 2, 0.22) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
}

.services-hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(circle, rgba(255, 106, 0, 0.10) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.4;
}

.services-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    z-index: 3;
    background: linear-gradient(to top, rgba(255, 106, 0, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 5;
    padding: 0 32px;
    max-width: 900px;
}

.services-hero-h1 {
    font-family: var(--font-body);
    font-size: clamp(3.5rem, 6vw,5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 800;
}

.services-hero-h1 .line {
    display: block;
    overflow: hidden;
    animation: fadeSlideUp 0.8s var(--ease-out) both;
}

.services-hero-h1 .line:nth-child(2) {
    animation-delay: 0.15s;
}

.services-hero-h1 .line:nth-child(3) {
    animation-delay: 0.30s;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accent-orange {
    color: var(--orange);
    text-shadow: 0 0 60px rgba(255, 106, 0, 0.6), 0 0 120px rgba(255, 106, 0, 0.25);
    animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {

    0%,
    100% {
        text-shadow: 0 0 60px rgba(255, 106, 0, 0.6), 0 0 120px rgba(255, 106, 0, 0.25);
    }

    50% {
        text-shadow: 0 0 90px rgba(255, 106, 0, 0.9), 0 0 160px rgba(255, 106, 0, 0.4);
    }
}

.services-hero-p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 28px 0 24px;
    line-height: 1.75;
    animation: fadeSlideUp 0.8s 0.45s var(--ease-out) both;
}

.services-hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    animation: fadeSlideUp 0.8s 0.6s var(--ease-out) both;
}

/* ===== BUTTONS ===== */
.btn-fire {
    background: var(--orange-h);
    color: #fff;
    padding: 16px 38px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.35s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(255, 106, 0, 0.45);
    cursor: pointer;
    text-decoration: none;
}

.btn-fire::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-fire:hover::before {
    left: 100%;
}

.btn-fire:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 106, 0, 0.55);
    background: var(--orange);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s var(--ease-smooth);
    backdrop-filter: blur(8px);
    cursor: pointer;
    text-decoration: none;
    border-radius: var(--radius);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    text-decoration: none;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ===== SECTION HEADING ===== */
.section-h2 {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.section-h2.center {
    text-align: center;
}

.cat-title-accent {
    color: var(--orange);
}

.section-sub {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    max-width: 450px;
    font-weight: 300;
    margin-bottom: 0;
}

.section-sub.center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== EYEBROW TAG ===== */
.eyebrow-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.eyebrow-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--orange);
}

.eyebrow-tag.center {
    display: block;
    text-align: center;
    padding-left: 0;
}

.eyebrow-tag.center::before {
    display: none;
}

.eyebrow-tag.light {
    color: rgba(255, 255, 255, .6);
}

.eyebrow-tag.light::before {
    background: rgba(255, 255, 255, .4);
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.fade-up.in {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================================
   OVERVIEW SECTION
   ==================================================== */
.services-overview {
    padding: 72px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 82, 26, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.overview-content .section-h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.overview-item {
    padding: 44px 28px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    cursor: default;
    transition: background 0.3s var(--ease-smooth);
}

.overview-item:last-child {
    border-right: none;
}

.overview-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
    border-radius: 2px;
}

.overview-item:hover {
    background: rgba(212, 82, 26, 0.06);
}

.overview-item:hover::after {
    transform: scaleX(1);
}

.overview-number {
    font-family: var(--font-body);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 12px;
    transition: transform 0.3s var(--ease-spring);
}

.overview-item:hover .overview-number {
    transform: scale(1.08);
}

.overview-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-weight: 300;
    max-width: 140px;
    margin: 0 auto;
}

/* ====================================================
   SERVICES MAIN
   ==================================================== */
.services-main {
    padding: 100px 0 110px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.services-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 82, 26, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.6;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    outline: none;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth), border-color 0.3s;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.10);
    border-color: var(--orange);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card-inner {
    padding: 32px 28px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.service-num {
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: rgba(212, 82, 26, 0.06);
    position: absolute;
    top: 12px;
    right: 18px;
    line-height: 1;
    transition: color 0.4s;
    pointer-events: none;
}

.service-card:hover .service-num {
    color: rgba(212, 82, 26, 0.13);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 82, 26, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 6px;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-spring);
}

.service-card:hover .service-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(-6deg) scale(1.1);
}

.service-title {
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--dark);
    line-height: 1.3;
    transition: color 0.25s;
}

.service-card:hover .service-title {
    color: var(--orange);
}

.service-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.75;
    font-weight: 300;
    flex-grow: 1;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.highlight-tag {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(212, 82, 26, 0.08);
    border: 1px solid rgba(212, 82, 26, 0.2);
    padding: 3px 10px;
    border-radius: 100px;
    transition: background 0.3s, border-color 0.3s;
}

.service-card:hover .highlight-tag {
    background: rgba(212, 82, 26, 0.14);
    border-color: rgba(212, 82, 26, 0.35);
}

.service-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 8px;
    transition: border-color 0.3s;
}

.service-card:hover .service-bottom {
    border-color: rgba(212, 82, 26, 0.2);
}

.service-arrow {
    width: 34px;
    height: 34px;
    background: var(--off);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--dark);
    border: 1px solid var(--border);
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
    text-decoration: none;
    flex-shrink: 0;
    cursor: pointer;
}

.service-card:hover .service-arrow {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateX(5px);
}

/* ====================================================
   SERVICE MODAL
   ==================================================== */
.service-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.service-modal-content {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s var(--ease-spring);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--off);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-spring);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal-close:hover {
    background: var(--orange);
    color: #fff;
    transform: rotate(90deg);
}

.service-modal-inner {
    padding: 44px;
}

.service-modal-inner h2 {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.2;
    padding-right: 40px;
}

.service-modal-inner>p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 300;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.modal-section {
    margin-bottom: 28px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.modal-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.modal-list li {
    font-size: 0.86rem;
    color: #555;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    transition: color 0.2s;
}

.modal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.75rem;
    top: 2px;
}

.modal-list li:hover {
    color: var(--dark);
}

/* ====================================================
   ADDITIONAL SERVICES
   ==================================================== */
.additional-services {
    padding: 100px 0 110px;
    background: var(--off);
    position: relative;
    overflow: hidden;
}

.additional-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 82, 26, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.additional-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.additional-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.45s var(--ease-smooth), border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.additional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.additional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.09);
    border-color: rgba(212, 82, 26, 0.3);
}

.additional-card:hover::before {
    transform: scaleX(1);
}

.additional-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 82, 26, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--orange);
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: background 0.3s var(--ease-smooth), transform 0.4s var(--ease-spring), color 0.3s;
}

.additional-card:hover .additional-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
}

.additional-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    line-height: 1.35;
    transition: color 0.25s;
}

.additional-card:hover h3 {
    color: var(--orange);
}

.additional-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.75;
    font-weight: 300;
    flex-grow: 1;
    margin-bottom: 0;
}

.additional-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 20px;
    transition: gap 0.3s var(--ease-spring), border-color 0.3s;
}

.additional-card:hover .additional-link {
    gap: 14px;
    border-top-color: rgba(212, 82, 26, 0.25);
}

.additional-link i {
    transition: transform 0.3s var(--ease-spring);
}

.additional-card:hover .additional-link i {
    transform: translateX(4px);
}

/* ====================================================
   DELIVERY METHODS
   ==================================================== */
.delivery-methods {
    padding: 100px 0 110px;
    background: var(--dark2);
    position: relative;
    overflow: hidden;
}

.delivery-methods::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(212, 82, 26, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 90% 20%, rgba(212, 82, 26, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.delivery-header {
    text-align: center;
    margin-bottom: 56px;
}

.delivery-header .section-h2 {
    color: #fff;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.delivery-card {
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    cursor: default;
    transition: background 0.35s var(--ease-smooth);
}

.delivery-card:last-child {
    border-right: none;
}

.delivery-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.45s var(--ease-out);
    border-radius: 2px;
}

.delivery-card:hover {
    background: rgba(212, 82, 26, 0.06);
}

.delivery-card:hover::after {
    transform: scaleX(1);
}

.delivery-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 82, 26, 0.1);
    border: 1px solid rgba(212, 82, 26, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--orange);
    margin: 0 auto 22px;
    transition: background 0.3s, transform 0.4s var(--ease-spring), border-color 0.3s;
}

.delivery-card:hover .delivery-icon {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: scale(1.1) rotate(-8deg);
}

.delivery-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    transition: color 0.25s;
}

.delivery-card:hover h3 {
    color: var(--orange);
}

.delivery-card p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
    font-weight: 300;
}

/* ====================================================
   STANDARDS COVERAGE
   ==================================================== */
.standards-coverage {
    padding: 100px 0 110px;
    background: #fff;
}

.standards-header {
    text-align: center;
    margin-bottom: 56px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.standard-item {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth), border-color 0.3s;
}

.standard-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.standard-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(212, 82, 26, 0.1);
    border-color: var(--orange);
}

.standard-item:hover::before {
    transform: scaleX(1);
}

.standard-category {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 82, 26, 0.2);
}

.standard-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.standard-list li {
    font-size: 0.87rem;
    color: #666;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    transition: color 0.25s;
}

.standard-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.standard-item:hover .standard-list li {
    color: var(--dark);
}

/* ====================================================
   WHY CHOOSE US
   ==================================================== */
.services-why-us {
    padding: 100px 0 110px;
    background: var(--off);
    position: relative;
    overflow: hidden;
}

.services-why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 82, 26, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.why-us-header {
    text-align: center;
    margin-bottom: 64px;
}

.why-us-header .section-sub {
    margin-top: 12px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.why-us-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth), border-color 0.3s;
    cursor: default;
}

.why-us-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.10);
    border-color: rgba(212, 82, 26, 0.3);
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 82, 26, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    margin: 0 auto 20px;
    transition: background 0.3s, transform 0.4s var(--ease-spring), color 0.3s;
}

.why-us-card:hover .why-us-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1) rotate(-8deg);
}

.why-us-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    transition: color 0.25s;
    line-height: 1.3;
}

.why-us-card:hover h3 {
    color: var(--orange);
}

.why-us-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.75;
    font-weight: 300;
}

/* Stats bar below why-us cards */
.why-us-stats {
    background: var(--dark);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.stat-box {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    cursor: default;
    transition: background 0.35s var(--ease-smooth);
}

.stat-box:last-child {
    border-right: none;
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.45s var(--ease-out);
    border-radius: 2px;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.03);
}

.stat-box:hover::after {
    transform: scaleX(1);
}

.stat-big {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
    transition: transform 0.3s var(--ease-spring);
}

.stat-box:hover .stat-big {
    transform: scale(1.06);
}

.stat-small {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.5;
}

/* ====================================================
   PROCESS SECTION
   ==================================================== */
.services-process {
    padding: 100px 0 110px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.services-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 82, 26, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.6;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Connector line between steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(212, 82, 26, 0.2) 100%);
    z-index: 0;
}

.process-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 24px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 10px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth), border-color 0.3s;
    cursor: default;
}

.process-step:first-child {
    margin-left: 0;
}

.process-step:last-child {
    margin-right: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.10);
    border-color: rgba(212, 82, 26, 0.35);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    color: rgba(212, 82, 26, 0.08);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.4s;
}

.process-step:hover .step-number {
    color: rgba(212, 82, 26, 0.18);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 82, 26, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    margin: 0 auto 18px;
    transition: background 0.3s, transform 0.4s var(--ease-spring), color 0.3s;
}

.process-step:hover .step-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(-8deg) scale(1.1);
}

.process-step h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    transition: color 0.25s;
}

.process-step:hover h3 {
    color: var(--orange);
}

.process-step p {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.75;
    font-weight: 300;
}

/* ====================================================
   CTA BAND
   ==================================================== */
.cta-band {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 8, 0.84);
}

.cta-body {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 32px;
}

.cta-body h2 {
    font-family: var(--font-body);
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.cta-body h2 em {
    color: var(--orange);
    font-style: normal;
}

.cta-body p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.75;
    font-weight: 300;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
    background: var(--dark2);
}

.footer-top {
    padding: 76px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 52px;
}

.footer-logo {
    margin-bottom: 18px;
    width: 60px;
    height: 70px;
    display: block;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.87rem;
    line-height: 1.75;
    font-weight: 300;
}

.f-socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.f-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    transition: background 0.25s var(--ease-smooth), color 0.25s, border-color 0.25s, transform 0.3s var(--ease-spring);
}

.f-socials a:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-3px);
}

.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.87rem;
    transition: color 0.25s, padding-left 0.3s var(--ease-smooth);
    font-weight: 300;
}

.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 8px;
}

.f-emg {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(212, 82, 26, 0.1);
    border: 1px solid rgba(212, 82, 26, 0.25);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    margin-bottom: 22px;
    transition: background 0.3s, border-color 0.3s;
}

.f-emg:hover {
    background: rgba(212, 82, 26, 0.15);
    border-color: rgba(212, 82, 26, 0.4);
}

.f-emg i {
    font-size: 1.2rem;
    color: var(--orange);
}

.f-emg small {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.f-emg strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--orange);
    letter-spacing: 1px;
}

.f-news-lbl {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.f-news {
    display: flex;
}

.f-news input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    color: #fff;
    padding: 11px 14px;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.85rem;
    outline: none;
    font-family: var(--font-body);
    transition: border-color 0.3s, background 0.3s;
}

.f-news input:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.09);
}

.f-news input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.f-news button {
    background: var(--orange);
    border: none;
    color: #fff;
    padding: 11px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.25s;
}

.f-news button:hover {
    background: var(--orange-h);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
}

.f-bot-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.f-bot-inner p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* ====================================================
   SCROLL TOP
   ==================================================== */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-spring), background 0.25s;
    z-index: 999;
    box-shadow: 0 8px 24px var(--orange-glow);
    text-decoration: none;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--orange-h);
}

/* ====================================================
   RESPONSIVE — 1024px
   ==================================================== */
@media(max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .stat-box:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-card:nth-child(2) {
        border-right: none;
    }

    .delivery-card:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-steps::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-item:nth-child(2) {
        border-right: none;
    }

    .overview-item:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }
}

/* ====================================================
   RESPONSIVE — 768px
   ==================================================== */
@media(max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 32px;
        transform: translateX(-100%);
        transition: transform 0.4s var(--ease-smooth);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateX(0);
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .services-hero {
        padding: 80px 24px 0;
        height: auto;
        min-height: 100dvh;
        align-items: center;
    }

    .services-hero-content {
        padding: 0;
    }

    .services-hero-h1 {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
        line-height: 1;
    }

    .services-hero-actions {
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .standards-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .delivery-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .delivery-card:last-child {
        border-bottom: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step {
        margin: 0 !important;
    }

    .modal-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .f-bot-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-sub {
        max-width: 100%;
    }
}

/* ====================================================
   RESPONSIVE — 480px
   ==================================================== */
@media(max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-stats {
        grid-template-columns: 1fr;
    }

    .stat-box {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-modal-inner {
        padding: 28px 20px;
    }

    .service-modal-inner h2 {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 20px;
    }
}

/* Content size polish */
.services-hero-p,
.section-sub,
.overview-item p,
.service-modal-inner>p,
.additional-card p,
.delivery-card p,
.why-us-card p,
.process-step p,
.cta-body p {
    font-size: clamp(1.08rem, 1.05vw, 1.2rem);
    line-height: 1.85;
}

.service-desc,
.modal-list li,
.standard-list li {
    font-size: 1.05rem;
    line-height: 1.8;
}

.highlight-tag,
.footer-about p,
.footer-col ul li a {
    font-size: 1rem;
}

.f-emg small,
.f-news-lbl,
.f-news input,
.f-news button,
.f-bot-inner p {
    font-size: 0.95rem;
}
