/* ========================================================================
   ET M - Bearing Exporter Website
   Design System inspired by SKF (skf.com)
   ======================================================================== */

/* ===================== SKF DESIGN TOKENS ===================== */
:root {
    /* SKF Colors */
    --skf-blue: #0000fe;
    --skf-blue-dark: #02115c;
    --skf-blue-hover: #0000fe;
    --skf-green: #46962b;
    --skf-red: #eb202a;
    --skf-body: rgba(0, 0, 0, 0.87);
    --skf-body-secondary: rgba(0, 0, 0, 0.75);
    --skf-body-tertiary: rgba(0, 0, 0, 0.5);
    --skf-bg-light: #f5f5f5;
    --skf-border: #dee2e6;
    --skf-white: #ffffff;

    /* Aliases */
    --primary: var(--skf-blue);
    --primary-dark: var(--skf-blue-dark);
    --primary-light: #4f84e0;
    --text: var(--skf-body);
    --text-light: var(--skf-body-secondary);
    --text-muted: var(--skf-body-tertiary);
    --bg: #ffffff;
    --bg-light: var(--skf-bg-light);
    --dark: #1a1a1a;
    --dark-2: #2d2d2d;
    --border: #e0e0e0;
    --border-light: #e9ecef;
    --gradient: linear-gradient(135deg, #0000fe 0%, #02115c 100%);
    --shadow: 0 2px 2px rgba(0, 0, 0, 0.24), 0 0 2px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px -1px rgba(0, 0, 0, 0.14), 0 3px 14px -2px rgba(0, 0, 0, 0.12);
    --radius: 4px;
    --radius-sm: 2px;
    --radius-lg: 8px;
    --transition: all 0.2s ease;
    --header-height: 72px;
    --topbar-height: 40px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --font-medium: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --font-bold: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-family);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    padding-top: 0;
}

body.homepage,
body.etm-contact-page,
body.etm-banner-overlap-page,
body.page-template-page-contact {
    padding-top: 0;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-padding { padding: 80px 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }

/* ===================== BUTTONS (SKF Style) ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 1rem;
    height: 2.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-medium);
    text-transform: uppercase;
    letter-spacing: 0.025rem;
    line-height: 1.125rem;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-lg { height: 3.5rem; padding: 0 1.5rem; font-size: 1rem; }

.btn-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    text-transform: none;
    height: auto;
    padding: 0;
    border: none;
}

.btn-link:hover { gap: 12px; color: var(--primary-dark); }

/* ========================================================================
   TOP BAR
   ======================================================================== */
.top-bar {
    background: #1a1a1a;
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    height: var(--topbar-height);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}

.top-bar-info i {
    color: var(--skf-blue);
    font-size: 0.7rem;
}

/* ========================================================================
   HEADER - Fixed position
   ======================================================================== */

/* --- Base Header (always fixed) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

/* --- Transparent Mode (homepage only) --- */
.header-transparent { }

.header-transparent .top-bar {
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-transparent .navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* --- Solid Mode (scrolled / other pages) --- */
.header-transparent.scrolled .navbar,
.header:not(.header-transparent) .navbar {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 2px rgba(0,0,0,0.24), 0 0 2px rgba(0,0,0,0.12);
}

.header-transparent.scrolled .top-bar,
.header:not(.header-transparent) .top-bar {
    background: #1a1a1a;
}

/* --- Navbar --- */
.navbar {
    height: var(--header-height);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* --- ET M Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo:hover { text-decoration: none; }

.logo-icon {
    display: flex;
    align-items: baseline;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-abbr { color: #fff; transition: var(--transition); }
.logo-highlight { color: var(--skf-blue); font-weight: 700; transition: var(--transition); }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.logo-sub {
    font-size: 0.52rem;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: var(--transition);
}

/* Logo colors - Solid mode */
.header-transparent.scrolled .logo-abbr,
.header:not(.header-transparent) .logo-abbr { color: #1a1a1a; }

.header-transparent.scrolled .logo-highlight,
.header:not(.header-transparent) .logo-highlight { color: var(--primary); }

.header-transparent.scrolled .logo-title,
.header:not(.header-transparent) .logo-title { color: #333; }

.header-transparent.scrolled .logo-sub,
.header:not(.header-transparent) .logo-sub { color: var(--text-muted); }

/* --- Navigation Menu --- */
.nav-menu {
    display: flex;
    gap: 2px;
    align-items: center;
    height: 100%;
}

.nav-menu > li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-menu > li > a {
    padding: 0 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav-menu > li > a:hover { text-decoration: none; }

/* Transparent mode nav links */
.header-transparent .nav-menu > li > a {
    color: rgba(255,255,255,0.85);
}

.header-transparent.scrolled .nav-menu > li > a {
    color: #333;
}

/* Underline indicator (SKF style) */
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); }

.header-transparent .nav-menu > li > a:hover,
.header-transparent .nav-menu > li > a.active { color: #fff; }

.header-transparent.scrolled .nav-menu > li > a:hover,
.header-transparent.scrolled .nav-menu > li > a.active { color: var(--primary); }

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { width: 70%; }

.header-transparent .nav-menu > li > a:hover::after,
.header-transparent .nav-menu > li > a.active::after { background: #fff; }

.header-transparent.scrolled .nav-menu > li > a:hover::after,
.header-transparent.scrolled .nav-menu > li > a.active::after { background: var(--primary); }

.nav-menu > li > a i.fa-chevron-down {
    font-size: 0.55rem;
    margin-left: 5px;
    color: var(--text-muted);
}

.header-transparent .nav-menu > li > a i.fa-chevron-down { color: rgba(255,255,255,0.5); }
.header-transparent.scrolled .nav-menu > li > a i.fa-chevron-down { color: var(--text-muted); }

/* --- Dropdown --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    min-width: 240px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--border-light);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: #333;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    text-decoration: none;
}

/* --- Nav CTA Button --- */
.nav-cta {
    font-size: 0.82rem;
    padding: 0 1rem;
    height: 2.5rem;
    margin-left: 16px;
    border-radius: var(--radius);
}

.header-transparent .nav-cta {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.header-transparent .nav-cta:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary);
}

.header-transparent.scrolled .nav-cta,
.header:not(.header-transparent) .nav-cta {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.header-transparent.scrolled .nav-cta:hover,
.header:not(.header-transparent) .nav-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

/* --- Mobile Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    transition: var(--transition);
    border-radius: 1px;
}

.header-transparent .nav-toggle span { background: #fff; }
.header-transparent.scrolled .nav-toggle span { background: #333; }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; }

.hero-slider {
    min-height: 85vh;
    display: flex;
    position: relative;
}

.hero-slide {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(20,40,64,0.7) 50%, rgba(26,52,76,0.6) 100%);
}

.hero-content {
    max-width: 620px;
    padding: 160px 0 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Stats */
.hero-stats {
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border-light);
}

.stat-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid var(--border-light);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary);
    display: inline;
    letter-spacing: -0.02em;
}

.stat-plus {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* ===================== FEATURES ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,0,254,0.06);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-icon i { font-size: 1.3rem; color: var(--primary); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; }
.feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ===================== PRODUCTS PREVIEW ===================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    display: flex;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.product-image {
    width: 140px;
    min-height: 100%;
    background: var(--dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.product-image i { font-size: 2.5rem; color: rgba(255,255,255,0.15); }

.product-info { padding: 22px; flex: 1; }
.product-info h3 { font-size: 1rem; margin-bottom: 6px; }
.product-info p { color: var(--text-light); font-size: 0.85rem; margin-bottom: 8px; }

.product-models {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    background: rgba(0,0,254,0.06);
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

/* ===================== COVERAGE ===================== */
.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.coverage-map { text-align: center; }
.coverage-map i { font-size: 10rem; color: var(--primary); opacity: 0.08; }

.coverage-regions { display: flex; flex-direction: column; gap: 16px; }

.region-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.region-item:hover { border-color: var(--primary); }

.region-flag i { font-size: 1.5rem; color: var(--primary); }
.region-item h4 { font-size: 0.92rem; margin-bottom: 2px; }
.region-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow); }

.testimonial-stars { color: #f5a623; margin-bottom: 12px; font-size: 0.85rem; letter-spacing: 2px; }

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar i { font-size: 2.2rem; color: var(--border); }
.testimonial-author h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 1px; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ===================== CTA ===================== */
.cta { background: var(--gradient); text-align: center; }
.cta-content h2 { font-size: 2rem; color: #fff; margin-bottom: 12px; }
.cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========================================================================
   FOOTER (SKF Inspired)
   ======================================================================== */
.footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
    font-size: 0.88rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-about p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 18px; color: rgba(255,255,255,0.45); }

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--skf-blue);
    border-color: var(--skf-blue);
    color: #fff;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 0.88rem;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links ul li { margin-bottom: 10px; }

.footer-links ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    transition: var(--transition);
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 4px;
    text-decoration: none;
}

.footer-contact ul li {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

.footer-contact ul li i {
    color: var(--skf-blue);
    margin-top: 3px;
    min-width: 14px;
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
}

/* ===================== FLOATING ELEMENTS ===================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); }

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ===================== PAGE HEADER ===================== */
.page-header {
    background: var(--gradient);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.page-header p { font-size: 1rem; color: rgba(255,255,255,0.7); }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ===================== PRODUCT CATEGORY PAGE (SKF Style) ===================== */
.product-cat-hero {
    background: var(--gradient);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.product-cat-hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.product-cat-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-cat-hero-content h1 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.product-cat-hero-content .hero-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 500;
}

.product-cat-hero-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-cat-hero-content .hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-cat-hero-content .hero-tags span {
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.product-cat-hero-image {
    border-radius: var(--radius);
    min-height: 320px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Product Cat Nav Tabs */
.product-cat-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: calc(var(--header-height) + var(--topbar-height));
    z-index: 50;
}

.product-cat-nav ul {
    display: flex;
    gap: 0;
    justify-content: center;
}

.product-cat-nav ul li a {
    display: block;
    padding: 16px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.product-cat-nav ul li a:hover,
.product-cat-nav ul li a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Product Cat Section */
.product-cat-section {
    padding: 60px 0;
}

.product-cat-section.bg-light {
    background: var(--bg-light);
}

.product-cat-section-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.product-cat-section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-cat-section-header p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.features-list-item {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.features-list-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.features-list-item .fl-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,0,254,0.06);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features-list-item .fl-icon i {
    font-size: 1rem;
    color: var(--primary);
}

.features-list-item h4 {
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.features-list-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Spec Table (Full) */
.spec-table-full {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.spec-table-full thead {
    background: var(--dark);
    color: #fff;
}

.spec-table-full thead th {
    padding: 14px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.spec-table-full tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.spec-table-full tbody tr:hover {
    background: var(--bg-light);
}

.spec-table-full tbody tr:last-child {
    border-bottom: none;
}

.spec-table-full tbody td {
    padding: 12px 18px;
    font-size: 0.85rem;
    color: var(--text);
}

.spec-table-full tbody td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 40%;
}

/* Applications Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.app-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.app-card .app-icon {
    width: 38px;
    height: 38px;
    background: rgba(0,0,254,0.06);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-card .app-icon i {
    font-size: 0.95rem;
    color: var(--primary);
}

.app-card h4 {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Series Table (variants) */
.series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.series-card {
    padding: 22px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.series-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.series-card .series-code {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.series-card .series-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.series-card .series-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Product Model Cards (SKF Style) */
.model-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.model-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
}

.model-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.model-card .model-image {
    height: 150px;
    background: var(--bg-light);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border-light);
}

.model-card .model-body {
    padding: 16px 18px;
}

.model-card .model-body .model-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.model-card .model-body .model-type {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.model-card .model-body .model-specs {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--text-light);
}

.model-card .model-body .model-specs span {
    display: flex;
    flex-direction: column;
}

.model-card .model-body .model-specs span strong {
    color: var(--dark);
    font-size: 0.82rem;
}

@media (max-width: 1024px) {
    .model-card-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .model-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .model-card-grid { grid-template-columns: 1fr; }
}

/* Product Cat CTA */
.product-cat-cta {
    background: var(--gradient);
    text-align: center;
    padding: 60px 0;
}

.product-cat-cta h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
}

.product-cat-cta p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    max-width: 550px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.product-cat-cta .cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-cat-hero .container { grid-template-columns: 1fr; }
    .product-cat-hero-image { min-height: 240px; }
    .features-list { grid-template-columns: 1fr; }
    .series-grid { grid-template-columns: repeat(2, 1fr); }
    .apps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .product-cat-hero { padding: 80px 0 40px; }
    .product-cat-hero-content h1 { font-size: 1.6rem; }
    .product-cat-nav ul { overflow-x: auto; justify-content: flex-start; }
    .product-cat-nav ul li a { padding: 12px 16px; font-size: 0.78rem; white-space: nowrap; }
    .series-grid { grid-template-columns: 1fr; }
    .apps-grid { grid-template-columns: 1fr; }
    .product-cat-section { padding: 40px 0; }
    .product-cat-section-header h2 { font-size: 1.3rem; }
}

/* ===================== PRODUCT DETAIL ===================== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-detail-image {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.product-detail-image i { font-size: 6rem; color: var(--primary); opacity: 0.15; }

.product-detail-info h2 { font-size: 1.6rem; margin-bottom: 12px; }

.product-detail-info .product-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.product-detail-info .product-meta span {
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 2px;
    font-size: 0.75rem;
    color: var(--text-light);
    border: 1px solid var(--border-light);
}

.product-detail-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.92rem;
}

.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.spec-table tr { border-bottom: 1px solid var(--border-light); }
.spec-table td { padding: 10px 14px; font-size: 0.85rem; }
.spec-table td:first-child { font-weight: 600; color: var(--dark); width: 35%; }
.spec-table td:last-child { color: var(--text-light); }

/* ===================== ABOUT ===================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 70px 40px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.about-image i { font-size: 8rem; color: var(--primary); opacity: 0.12; }
.about-content h2 { font-size: 1.6rem; margin-bottom: 12px; }
.about-content p { color: var(--text-light); line-height: 1.7; margin-bottom: 14px; font-size: 0.92rem; }

.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.about-stat { text-align: center; padding: 18px; background: var(--bg-light); border-radius: var(--radius); border: 1px solid var(--border-light); }
.about-stat h3 { font-size: 1.5rem; color: var(--primary); }
.about-stat p { font-size: 0.8rem; margin-bottom: 0; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--border-light); border-radius: var(--radius); transition: var(--transition); }
.contact-info-card:hover { border-color: var(--primary); }
.contact-info-card .contact-icon { width: 44px; height: 44px; background: rgba(0,0,254,0.06); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .contact-icon i { font-size: 1.1rem; color: var(--primary); }
.contact-info-card h4 { font-size: 0.9rem; margin-bottom: 3px; }
.contact-info-card p { font-size: 0.85rem; color: var(--text-light); }

.contact-form { background: #fff; padding: 36px; border-radius: var(--radius); border: 1px solid var(--border-light); }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: #333; margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.9rem; font-family: inherit; transition: var(--transition); background: var(--bg); color: var(--text); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(0,0,254,0.08); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23666' d='M5 7L1 3h8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ===================== FAQ ===================== */
.faq-question { padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; color: #333; font-size: 0.9rem; transition: var(--transition); }
.faq-question i { transition: transform 0.3s ease; font-size: 0.75rem; color: var(--text-muted); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 18px; color: var(--text-light); font-size: 0.85rem; line-height: 1.7; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.4rem; }
    .section-header h2 { font-size: 1.6rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body { padding-top: var(--header-height); }
    body.homepage,

    body.etm-contact-page,

    body.etm-banner-overlap-page,

    body.page-template-page-contact { padding-top: 0; }

    .top-bar { display: none; }
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        height: auto;
        border-bottom: 2px solid var(--border-light);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu > li { height: auto; }
    .nav-menu > li > a { padding: 12px 16px; height: auto; }
    .nav-menu > li > a::after { display: none; }

    .header-transparent .nav-menu {
        background: rgba(0,0,0,0.95);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .header-transparent .nav-menu > li > a { color: rgba(255,255,255,0.85); }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        border: none;
        padding-left: 16px;
        display: none;
    }
    .header-transparent .dropdown-menu { background: rgba(255,255,255,0.05); }
    .dropdown.active .dropdown-menu { display: block; }
    .dropdown:hover .dropdown-menu { transform: none; }
    .nav-cta { display: none; }

    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.9rem; }
    .hero-slider { min-height: 60vh; }
    .hero-content { padding: 120px 0 40px; }
    .page-header { padding: 100px 0 40px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); }
    .stat-item:nth-child(2) { border-right: 1px solid var(--border-light); }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { flex-direction: column; }
    .product-image { width: 100%; height: 100px; }

    .coverage-content { grid-template-columns: 1fr; gap: 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    .section-padding { padding: 50px 0; }
    .section-header h2 { font-size: 1.4rem; }
    .cta-content h2 { font-size: 1.4rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }

    .whatsapp-float { width: 44px; height: 44px; font-size: 1.3rem; bottom: 20px; left: 16px; }
    .back-to-top { width: 38px; height: 38px; bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.5rem; }
    .hero-buttons { flex-direction: column; }
    .btn-lg { padding: 0 1rem; font-size: 0.85rem; width: 100%; justify-content: center; }
    .stat-number { font-size: 1.6rem; }
    .section-header h2 { font-size: 1.2rem; }
    .logo-text { display: none; }
}

/* ========================================================================
   BLOG STYLES
   ======================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.blog-image {
    height: 200px;
    background: var(--dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-image i {
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
}

.blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary);
    background: rgba(0,0,254,0.06);
    padding: 2px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.35;
}

.blog-body h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-body h3 a:hover {
    color: var(--primary);
    text-decoration: none;
}

.blog-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}

.pagination .page-numbers:hover {
    border-color: var(--primary);
    color: var(--primary);
    text-decoration: none;
}

.pagination .page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-size: 0.75rem;
}

/* Blog empty state */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
}

.blog-empty i {
    font-size: 4rem;
    color: var(--border);
    margin-bottom: 20px;
}

.blog-empty h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
}

.blog-empty p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ========================================================================
   SINGLE POST STYLES
   ======================================================================== */
.single-post-article {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.single-post-meta i {
    margin-right: 5px;
    color: var(--primary);
    font-size: 0.8rem;
}

.single-post-meta a {
    color: var(--text-muted);
    text-decoration: none;
}

.single-post-meta a:hover {
    color: var(--primary);
}

.single-post-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.single-post-featured-image {
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}

.single-post-featured-image .featured-img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 40px;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.single-post-content p {
    margin-bottom: 18px;
}

.single-post-content ul,
.single-post-content ol {
    margin: 0 0 18px 24px;
}

.single-post-content li {
    margin-bottom: 6px;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 16px 0;
}

.single-post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 12px 20px;
    margin: 20px 0;
    background: var(--bg-light);
    font-style: italic;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.single-post-content a {
    color: var(--primary);
    text-decoration: underline;
}

.single-post-content a:hover {
    color: var(--primary-dark);
}

/* Post footer & navigation */
.single-post-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
    margin-top: 8px;
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.post-nav-prev a,
.post-nav-next a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
}

.post-nav-prev a:hover,
.post-nav-next a:hover {
    border-color: var(--primary);
    color: var(--primary);
    text-decoration: none;
}

.post-nav-prev a i,
.post-nav-next a i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.post-nav-next a {
    text-align: right;
}

.post-back-to-blog {
    text-align: center;
}

/* Responsive blog */
@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .single-post-title { font-size: 1.7rem; }
}

@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
    .post-navigation { grid-template-columns: 1fr; }
    .single-post-title { font-size: 1.4rem; }
    .single-post-content { font-size: 0.92rem; }
}

/* Final override for partner marquee after all older grid rules. */
body.page-id-126:not(.elementor-editor-active) .etm-partner-marquee-track,
body.page-id-126:not(.elementor-editor-active) .etm-partner-marquee-track.e-con,
body.page-id-146:not(.elementor-editor-active) .etm-partner-marquee-track,
body.page-id-146:not(.elementor-editor-active) .etm-partner-marquee-track.e-con {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: max-content !important;
    max-width: none !important;
    gap: 48px !important;
    overflow: visible !important;
    animation-name: etm-partner-marquee-loop !important;
    animation-duration: 22s !important;
    animation-timing-function: linear !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
    animation-direction: normal !important;
    animation-fill-mode: none !important;
    animation-play-state: running !important;
    will-change: transform;
}

body.page-id-126:not(.elementor-editor-active) .etm-partner-marquee-track:hover,
body.page-id-146:not(.elementor-editor-active) .etm-partner-marquee-track:hover {
    animation-play-state: paused !important;
}

/* True final Blog page spacing override. */
body.page-id-32 .site-content,
body.page-id-32 #content,
body.page-id-32 #primary,
body.page-id-32 .content-area,
body.page-id-32 .site-content > .ast-container,
body.page-id-32 .entry-content,
body.page-id-32 .elementor.elementor-32 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-id-32 .site-content > .ast-container,
body.page-id-32 .ast-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 .etm-blog-hero-section {
    margin-top: 0 !important;
}

/* Definitive Blog layout repair after all legacy overrides. */
body.page-id-32 #masthead .ast-container {
    width: auto !important;
    max-width: 1200px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body.page-id-32 .site-content > .ast-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 .etm-blog-layout-section > .e-con-inner {
    width: min(100% - 48px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con {
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    display: grid !important;
    grid-template-columns: 240px minmax(0, 1fr) !important;
    gap: 44px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-sidebar,
body.page-id-32 .etm-blog-posts-shell {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.page-id-32 .etm-blog-archive-placeholder-widget,
body.page-id-32 .etm-blog-archive-placeholder-widget .elementor-widget-container,
body.page-id-32 .etm-blog-posts-panel {
    width: 100% !important;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Absolute final Industry Blog cleanup: keep this block last. */
body.page-id-32 .site-content,
body.page-id-32 #content,
body.page-id-32 #primary,
body.page-id-32 .content-area,
body.page-id-32 .site-content > .ast-container,
body.page-id-32 .entry-content,
body.page-id-32 .elementor.elementor-32 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-id-32 .site-content > .ast-container,
body.page-id-32 .ast-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 #masthead .ast-container {
    width: auto !important;
    max-width: 1200px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body.page-id-32 .etm-blog-layout-section > .e-con-inner {
    width: min(100% - 48px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con,
body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    overflow: visible !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    display: grid !important;
    grid-template-columns: minmax(220px, 240px) minmax(0, 1fr) !important;
    gap: 44px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-sidebar,
body.page-id-32 .etm-blog-posts-shell,
body.page-id-32 .etm-blog-posts-shell.e-con {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.page-id-32 .etm-blog-results-heading,
body.page-id-32 .etm-blog-results-copy,
body.page-id-32 .etm-blog-archive-placeholder-widget,
body.page-id-32 .etm-blog-posts-panel {
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-results-copy,
body.page-id-32 .etm-blog-results-copy p {
    max-width: 640px !important;
    white-space: normal !important;
}

body.page-id-32 .etm-blog-category-list,
body.page-id-32 .etm-blog-category-list.e-con,
body.page-id-32 .etm-blog-category-list > .e-con-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button,
body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 10px 0 10px 16px !important;
    background: transparent !important;
    color: #526174 !important;
    border: 0 !important;
    border-left: 2px solid transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-align: left !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button:hover,
body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button:focus {
    background: transparent !important;
    color: #0b5cab !important;
    border-left-color: #0b5cab !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button-text {
    color: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: left !important;
}

.etm-blog-editor-archive-placeholder {
    width: 100%;
    border: 1px dashed #b8c3d3;
    border-radius: 8px;
    background: #f8fafc;
    padding: 28px;
    color: #526174;
}

.etm-blog-editor-archive-placeholder strong {
    display: block;
    margin-bottom: 6px;
    color: #071a56;
    font-size: 18px;
    line-height: 1.35;
}

.etm-blog-editor-archive-placeholder span {
    display: block;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-blog-layout-section > .e-con-inner {
        width: min(100% - 32px, 680px) !important;
    }

    body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Gutenberg Industry Blog page. */
body.page-id-32 .etm-block-page-template,
body.page-id-32 .etm-block-page-template .entry-content,
body.page-id-32 .wp-site-blocks {
    margin-top: 0;
    padding-top: 0;
}

body.page-id-32 .etm-block-blog-hero {
    margin-top: 0;
}

body.page-id-32 .etm-block-blog-columns {
    align-items: flex-start !important;
    gap: 48px;
}

body.page-id-32 .etm-block-blog-sidebar {
    border-right: 1px solid #e4e9f1;
    padding-right: 28px;
}

body.page-id-32 .etm-block-blog-search .wp-block-search__input {
    min-height: 48px;
    border: 1px solid #d7deea;
    border-radius: 6px;
    padding: 0 14px;
}

body.page-id-32 .etm-block-blog-search .wp-block-search__button {
    min-height: 48px;
    border: 0;
    border-radius: 6px;
    background: #0b5cab;
    color: #fff;
    font-weight: 700;
}

body.page-id-32 .etm-block-blog-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.page-id-32 .etm-block-blog-categories li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-left: 2px solid transparent;
    padding: 9px 0 9px 14px;
    color: #6a7688;
    font-size: 15px;
    font-weight: 700;
}

body.page-id-32 .etm-block-blog-categories a {
    color: #526174;
    text-decoration: none;
}

body.page-id-32 .etm-block-blog-categories li:hover {
    border-left-color: #0b5cab;
}

body.page-id-32 .etm-block-blog-categories li:hover a {
    color: #0b5cab;
}

body.page-id-32 .etm-block-author-card {
    border: 1px solid #e5ebf3;
    border-radius: 8px;
    padding: 18px;
    background: #f8fafc;
}

body.page-id-32 .etm-block-post-query .wp-block-post-template {
    gap: 28px;
}

body.page-id-32 .etm-block-post-card {
    height: 100%;
    border: 1px solid #e5ebf3;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

body.page-id-32 .etm-block-post-card > *:not(.wp-block-post-featured-image) {
    padding-left: 22px;
    padding-right: 22px;
}

body.page-id-32 .etm-block-post-card .wp-block-post-featured-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

body.page-id-32 .etm-block-post-card a {
    text-decoration: none;
}

body.page-id-32 .wp-block-query-pagination {
    margin-top: 42px;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-block-blog-columns {
        gap: 34px;
    }

    body.page-id-32 .etm-block-blog-sidebar {
        border-right: 0;
        border-bottom: 1px solid #e4e9f1;
        padding-right: 0;
        padding-bottom: 24px;
    }
}

/* Absolute final Industry Blog cleanup: keep this block last. */
body.page-id-32 .site-content,
body.page-id-32 #content,
body.page-id-32 #primary,
body.page-id-32 .content-area,
body.page-id-32 .site-content > .ast-container,
body.page-id-32 .entry-content,
body.page-id-32 .elementor.elementor-32 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-id-32 .site-content > .ast-container,
body.page-id-32 .ast-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 #masthead .ast-container {
    width: auto !important;
    max-width: 1200px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body.page-id-32 .etm-blog-layout-section > .e-con-inner {
    width: min(100% - 48px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con,
body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    overflow: visible !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    display: grid !important;
    grid-template-columns: minmax(220px, 240px) minmax(0, 1fr) !important;
    gap: 44px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-sidebar,
body.page-id-32 .etm-blog-posts-shell,
body.page-id-32 .etm-blog-posts-shell.e-con {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.page-id-32 .etm-blog-results-heading,
body.page-id-32 .etm-blog-results-copy,
body.page-id-32 .etm-blog-archive-placeholder-widget,
body.page-id-32 .etm-blog-posts-panel {
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-results-copy,
body.page-id-32 .etm-blog-results-copy p {
    max-width: 640px !important;
    white-space: normal !important;
}

body.page-id-32 .etm-blog-category-list,
body.page-id-32 .etm-blog-category-list.e-con,
body.page-id-32 .etm-blog-category-list > .e-con-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button,
body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 10px 0 10px 16px !important;
    background: transparent !important;
    color: #526174 !important;
    border: 0 !important;
    border-left: 2px solid transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-align: left !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button:hover,
body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button:focus {
    background: transparent !important;
    color: #0b5cab !important;
    border-left-color: #0b5cab !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button-text {
    color: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: left !important;
}

.etm-blog-editor-archive-placeholder {
    width: 100%;
    border: 1px dashed #b8c3d3;
    border-radius: 8px;
    background: #f8fafc;
    padding: 28px;
    color: #526174;
}

.etm-blog-editor-archive-placeholder strong {
    display: block;
    margin-bottom: 6px;
    color: #071a56;
    font-size: 18px;
    line-height: 1.35;
}

.etm-blog-editor-archive-placeholder span {
    display: block;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-blog-layout-section > .e-con-inner {
        width: min(100% - 32px, 680px) !important;
    }

    body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Final Industry Blog editor/front-end cleanup. */
body.page-id-32 .etm-blog-layout-section,
body.page-id-32 .etm-blog-layout-section.e-con {
    overflow: visible !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con,
body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    overflow: visible !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    display: grid !important;
    grid-template-columns: minmax(220px, 240px) minmax(0, 1fr) !important;
    gap: 44px !important;
    align-items: start !important;
}

body.page-id-32 .etm-blog-sidebar,
body.page-id-32 .etm-blog-posts-shell,
body.page-id-32 .etm-blog-posts-shell.e-con {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.page-id-32 .etm-blog-results-heading,
body.page-id-32 .etm-blog-results-copy,
body.page-id-32 .etm-blog-archive-placeholder-widget,
body.page-id-32 .etm-blog-posts-panel {
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-results-copy,
body.page-id-32 .etm-blog-results-copy p {
    max-width: 640px !important;
    white-space: normal !important;
}

body.page-id-32 .etm-blog-category-list,
body.page-id-32 .etm-blog-category-list.e-con,
body.page-id-32 .etm-blog-category-list > .e-con-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button,
body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 10px 0 10px 16px !important;
    background: transparent !important;
    color: #526174 !important;
    border: 0 !important;
    border-left: 2px solid transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-align: left !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button:hover,
body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button:focus {
    background: transparent !important;
    color: #0b5cab !important;
    border-left-color: #0b5cab !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button-text {
    color: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: left !important;
}

.etm-blog-editor-archive-placeholder {
    width: 100%;
    border: 1px dashed #b8c3d3;
    border-radius: 8px;
    background: #f8fafc;
    padding: 28px;
    color: #526174;
}

.etm-blog-editor-archive-placeholder strong {
    display: block;
    margin-bottom: 6px;
    color: #071a56;
    font-size: 18px;
    line-height: 1.35;
}

.etm-blog-editor-archive-placeholder span {
    display: block;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Final Blog layout repair: Elementor boxed containers wrap children in .e-con-inner. */
body.page-id-32 #masthead .ast-container {
    width: auto !important;
    max-width: 1200px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body.page-id-32 .site-content > .ast-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 .etm-blog-layout-section > .e-con-inner {
    width: min(100% - 48px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con {
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    display: grid !important;
    grid-template-columns: 240px minmax(0, 1fr) !important;
    gap: 44px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-sidebar,
body.page-id-32 .etm-blog-posts-shell {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.page-id-32 .etm-blog-archive-placeholder-widget,
body.page-id-32 .etm-blog-archive-placeholder-widget .elementor-widget-container,
body.page-id-32 .etm-blog-posts-panel {
    width: 100% !important;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Final Blog page spacing override. Keep at true file end. */
body.page-id-32 .site-content,
body.page-id-32 #content,
body.page-id-32 #primary,
body.page-id-32 .content-area,
body.page-id-32 .site-content > .ast-container,
body.page-id-32 .entry-content,
body.page-id-32 .elementor.elementor-32 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-id-32 .site-content > .ast-container,
body.page-id-32 .ast-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 .etm-blog-hero-section {
    margin-top: 0 !important;
}

.etm-partner-marquee-shell {
    width: 100%;
    overflow: hidden;
    padding: 26px 0 18px;
}

.etm-partner-native-marquee {
    display: block;
    width: 100%;
}

.etm-marquee-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 132px;
    margin-right: 70px;
    vertical-align: middle;
}

.etm-marquee-logo img {
    display: block;
    max-width: 230px;
    max-height: 120px;
    object-fit: contain;
    box-shadow: none !important;
    filter: none !important;
}

.etm-latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: min(100%, 1180px);
    margin: 0 auto;
}

.etm-latest-post-card {
    overflow: hidden;
    border: 1px solid #e5eaf2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.etm-latest-post-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #eef4ff, #f8fafc);
    text-decoration: none;
}

.etm-latest-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.etm-latest-post-placeholder {
    color: #0b5cab;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 0;
}

.etm-latest-post-body {
    padding: 24px 24px 26px;
}

.etm-latest-post-body time {
    display: block;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.etm-latest-post-body h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.32;
    font-weight: 800;
}

.etm-latest-post-body h3 a {
    color: #071a56;
    text-decoration: none;
}

.etm-latest-post-body h3 a:hover {
    color: #0b5cab;
}

.etm-latest-post-body p {
    margin: 0 0 18px;
    color: #526174;
    font-size: 15px;
    line-height: 1.7;
}

.etm-latest-post-link {
    color: #0b5cab;
    font-weight: 800;
    text-decoration: none;
}

.etm-latest-post-link:hover {
    color: #063f82;
}

.etm-latest-posts-empty {
    padding: 34px;
    text-align: center;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e5eaf2;
    border-radius: 8px;
}

.etm-blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: min(100%, 1180px);
    margin: 0 auto;
}

.etm-blog-archive-card {
    overflow: hidden;
    border: 1px solid #e5eaf2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.etm-blog-archive-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #eef4ff, #f8fafc);
    text-decoration: none;
}

.etm-blog-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.etm-blog-archive-placeholder {
    color: #0b5cab;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 0;
}

.etm-blog-archive-body {
    padding: 24px 24px 26px;
}

.etm-blog-archive-body time {
    display: block;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.etm-blog-archive-body h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.32;
    font-weight: 800;
}

.etm-blog-archive-body h3 a {
    color: #071a56;
    text-decoration: none;
}

.etm-blog-archive-body h3 a:hover {
    color: #0b5cab;
}

.etm-blog-archive-body p {
    margin: 0 0 18px;
    color: #526174;
    font-size: 15px;
    line-height: 1.7;
}

.etm-blog-archive-link {
    color: #0b5cab;
    font-weight: 800;
    text-decoration: none;
}

.etm-blog-archive-link:hover {
    color: #063f82;
}

.etm-blog-archive-empty,
.etm-blog-archive-editor-placeholder {
    padding: 34px;
    text-align: center;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e5eaf2;
    border-radius: 8px;
}

.etm-blog-archive-editor-placeholder strong,
.etm-blog-archive-editor-placeholder span,
.etm-blog-archive-editor-placeholder code {
    display: block;
    margin: 6px 0;
}

.etm-elementor-page-template {
    margin-top: 0;
}

.etm-blog-hero-section {
    margin-top: 0;
}

.etm-blog-hero-title .elementor-heading-title {
    color: #fff;
    font-size: 54px;
    line-height: 1.08;
    font-weight: 800;
}

.etm-blog-hero-text {
    max-width: 720px;
}

.etm-blog-hero-text p {
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.75;
}

.etm-blog-section-title .elementor-heading-title {
    color: #071a56;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.etm-blog-section-copy p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: #526174;
    font-size: 16px;
    line-height: 1.7;
}

.etm-blog-cat-button .elementor-button {
    background: #fff;
    color: #071a56;
    border: 1px solid #d7dfeb;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
}

.etm-blog-cat-active .elementor-button,
.etm-blog-cat-button .elementor-button:hover {
    background: #0b5cab;
    color: #fff;
    border-color: #0b5cab;
}

.etm-blog-archive-section {
    padding: 56px 24px 76px;
    background: #fff;
}

.etm-blog-layout-section {
    padding-top: 56px;
    padding-bottom: 76px;
}

.etm-blog-archive-wrap {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
    width: min(100%, 1180px);
    margin: 0 auto;
}

.etm-blog-archive-wrap.e-con {
    display: grid !important;
    grid-template-columns: 220px minmax(0, 1fr) !important;
    align-items: start !important;
}

.etm-blog-sidebar {
    position: sticky;
    top: 104px;
}

.etm-blog-sidebar-block {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #e4ebf5;
}

.etm-blog-sidebar-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.etm-blog-sidebar h2 {
    margin: 0 0 16px;
    color: #071a56;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.etm-blog-search-form {
    display: grid;
    gap: 10px;
}

.etm-blog-search-form input[type="search"] {
    width: 100%;
    height: 44px;
    padding: 0 13px;
    border: 1px solid #d7dfeb;
    border-radius: 6px;
    background: #fff;
    color: #071a56;
    font-size: 14px;
    box-shadow: none;
}

.etm-blog-search-form button {
    height: 42px;
    border: 0;
    border-radius: 6px;
    background: #0b5cab;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.etm-blog-clear-search {
    display: inline-block;
    margin-top: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.etm-blog-clear-search:hover {
    color: #0b5cab;
}

.etm-blog-category-list {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #dce4ef;
}

.etm-blog-category-list a,
.etm-blog-category-list .elementor-button {
    display: block;
    padding: 10px 0 10px 16px;
    color: #526174;
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
    border-left: 2px solid transparent;
    transform: translateX(-1px);
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    text-align: left;
}

.etm-blog-category-list .elementor-button-content-wrapper {
    justify-content: flex-start;
}

.etm-blog-category-list .elementor-button-icon {
    display: none;
}

.etm-blog-category-list a:hover,
.etm-blog-category-list a.is-active,
.etm-blog-category-list .elementor-button:hover {
    color: #0b5cab;
    border-left-color: #0b5cab;
    font-weight: 800;
    background: transparent;
}

.etm-blog-posts-panel {
    min-width: 0;
}

.etm-blog-posts-shell {
    min-width: 0;
}

.etm-blog-author-card {
    color: #526174;
}

.etm-blog-author-avatar,
.etm-blog-author-avatar .elementor-heading-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 50%;
    background: #eef4ff;
    color: #0b5cab;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.etm-blog-author-avatar img {
    display: block;
    width: 64px;
    height: 64px;
}

.etm-blog-author-card strong {
    display: block;
    margin-bottom: 8px;
    color: #071a56;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.etm-blog-author-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.etm-blog-results-head {
    margin-bottom: 24px;
}

.etm-blog-results-title .elementor-heading-title {
    color: #071a56;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.etm-blog-results-copy p {
    margin: 0 0 22px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.etm-blog-results-head h2 {
    margin: 0 0 6px;
    color: #071a56;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.etm-blog-results-head p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
}

.etm-blog-archive-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.etm-blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.etm-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d7dfeb;
    border-radius: 6px;
    color: #071a56;
    text-decoration: none;
    font-weight: 700;
}

.etm-blog-pagination .page-numbers.current,
.etm-blog-pagination .page-numbers:hover {
    background: #0b5cab;
    color: #fff;
    border-color: #0b5cab;
}

.etm-blog-primary-button .elementor-button,
.etm-blog-hero-button .elementor-button {
    background: #0b5cab;
    color: #fff;
    border-radius: 6px;
    padding: 14px 24px;
    font-weight: 800;
}

.etm-blog-outline-button .elementor-button {
    background: transparent;
    color: #071a56;
    border: 1px solid #b9c6d8;
    border-radius: 6px;
    padding: 14px 24px;
    font-weight: 800;
}

.etm-blog-newsletter-section {
    padding: 62px 24px 68px;
    background: #f5f7fb;
}

.etm-blog-newsletter-inner {
    width: min(100%, 780px);
    margin: 0 auto;
    text-align: center;
}

.etm-blog-newsletter-inner h2 {
    margin: 0 0 12px;
    color: #071a56;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.etm-blog-newsletter-inner p {
    margin: 0 auto 22px;
    color: #526174;
    font-size: 16px;
    line-height: 1.7;
}

.etm-blog-newsletter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.etm-blog-primary-link,
.etm-blog-outline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
}

.etm-blog-primary-link {
    background: #0b5cab;
    color: #fff;
}

.etm-blog-outline-link {
    background: transparent;
    color: #071a56;
    border: 1px solid #b9c6d8;
}

body.page-id-32 .entry-content,
body.page-id-32 .elementor {
    margin-top: 0;
}

body.page-id-32 #content,
body.page-id-32 .site-content,
body.page-id-32 #primary,
body.page-id-32 .ast-container,
body.page-id-32 .entry-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-id-32 .site-content > .ast-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 921px) {
    .etm-latest-posts-grid,
    .etm-blog-archive-grid {
        grid-template-columns: 1fr;
    }

    .etm-blog-archive-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .etm-blog-archive-wrap.e-con {
        grid-template-columns: 1fr !important;
    }

    .etm-blog-sidebar {
        position: static;
    }

    .etm-blog-hero-title .elementor-heading-title {
        font-size: 38px;
    }
}

/* Final Blog page spacing override. Keep at file end so global non-home spacing cannot push the banner down. */
body.page-id-32 .site-content,
body.page-id-32 #content,
body.page-id-32 #primary,
body.page-id-32 .content-area,
body.page-id-32 .site-content > .ast-container,
body.page-id-32 .entry-content,
body.page-id-32 .elementor.elementor-32 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-id-32 .site-content > .ast-container,
body.page-id-32 .ast-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 .etm-blog-hero-section {
    margin-top: 0 !important;
}


/* Coverage overflow fix: grid-based, contained layout. */
body.home .elementor-8 .etm-coverage-section,
body.home .elementor-8 .etm-coverage-section * {
    box-sizing: border-box;
}

body.home .elementor-8 .etm-coverage-section {
    overflow: hidden !important;
}

body.home .elementor-8 .etm-coverage-section > .elementor-container {
    display: grid !important;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 30px !important;
    align-items: stretch;
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
}

body.home .elementor-8 .etm-coverage-section .elementor-column,
body.home .elementor-8 .etm-coverage-section .elementor-column:first-child,
body.home .elementor-8 .etm-coverage-section .elementor-column:last-child {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

body.home .elementor-8 .etm-coverage-section .elementor-widget-wrap {
    min-width: 0;
    max-width: 100%;
}

body.home .elementor-8 .etm-coverage-map,
body.home .elementor-8 .etm-region-card {
    max-width: 100%;
    overflow: hidden;
}

body.home .elementor-8 .etm-coverage-map::before {
    width: min(300px, 78%);
    height: auto;
    aspect-ratio: 1;
}

body.home .elementor-8 .etm-coverage-map::after {
    width: min(420px, 104%);
    height: auto;
    aspect-ratio: 1;
}

body.home .elementor-8 .etm-coverage-map .elementor-icon-box-content,
body.home .elementor-8 .etm-region-card .elementor-icon-box-content {
    min-width: 0;
    max-width: 100%;
}

body.home .elementor-8 .etm-coverage-map .elementor-icon-box-title,
body.home .elementor-8 .etm-coverage-map .elementor-icon-box-description,
body.home .elementor-8 .etm-region-card .elementor-icon-box-title,
body.home .elementor-8 .etm-region-card .elementor-icon-box-description {
    overflow-wrap: anywhere;
    word-break: normal;
}

body.home .elementor-8 .etm-region-card .elementor-icon-box-wrapper {
    width: 100%;
    min-width: 0;
}

body.home .elementor-8 .etm-region-card .elementor-icon-box-icon {
    width: 46px;
    min-width: 46px;
}

@media (max-width: 921px) {
    body.home .elementor-8 .etm-coverage-section > .elementor-container {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 680px) !important;
        gap: 18px !important;
    }
}


/* Contact page Elementor component layout. */
body.page-id-16 .etm-contact-page-header {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

body.page-id-16 .etm-contact-page-header .elementor-heading-title,
body.page-id-16 .etm-contact-page-header p,
body.page-id-16 .etm-contact-page-header a,
body.page-id-16 .etm-contact-page-header span {
    color: #fff;
}

body.page-id-16 .etm-contact-page-header h1.elementor-heading-title {
    font-size: 3rem;
    line-height: 1.16;
    font-weight: 800;
}

body.page-id-16 .etm-contact-main,
body.page-id-16 .etm-contact-faq {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

body.page-id-16 .etm-contact-main > .elementor-container,
body.page-id-16 .etm-contact-faq > .elementor-container {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px !important;
    margin-left: auto;
    margin-right: auto;
}

body.page-id-16 .etm-contact-main .elementor-container {
    gap: 34px;
}

body.page-id-16 .etm-contact-main .elementor-column {
    min-width: 0;
}

body.page-id-16 .etm-contact-main .elementor-widget-heading.section-header .elementor-heading-title,
body.page-id-16 .etm-contact-faq .elementor-widget-heading.section-header .elementor-heading-title {
    color: #111827;
    font-size: 2rem;
    line-height: 1.24;
    font-weight: 800;
}

body.page-id-16 .contact-info-card {
    width: 100%;
    margin-top: 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

body.page-id-16 .contact-info-card .elementor-widget-container {
    padding: 22px 24px;
}

body.page-id-16 .contact-info-card .elementor-icon-box-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

body.page-id-16 .contact-info-card .elementor-icon-box-icon {
    flex: 0 0 auto;
    margin: 0;
}

body.page-id-16 .contact-info-card .elementor-icon {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: rgba(11, 99, 206, 0.09);
    color: #0b63ce;
}

body.page-id-16 .contact-info-card .elementor-icon-box-title {
    margin: 0 0 6px;
    color: #111827;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
}

body.page-id-16 .contact-info-card .elementor-icon-box-description {
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.68;
}

body.page-id-16 .etm-contact-form-widget .elementor-shortcode,
body.page-id-16 .contact-form {
    width: 100%;
}

body.page-id-16 .contact-form {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    padding: 34px;
}

body.page-id-16 .contact-form h3 {
    margin: 0 0 24px;
    color: #111827;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 800;
}

body.page-id-16 .contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

body.page-id-16 .contact-form .form-group {
    margin-bottom: 18px;
}

body.page-id-16 .contact-form label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 700;
}

body.page-id-16 .contact-form input,
body.page-id-16 .contact-form select,
body.page-id-16 .contact-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 6px;
    box-shadow: none;
    color: #111827;
}

body.page-id-16 .contact-form textarea {
    min-height: 132px;
}

body.page-id-16 .contact-form .btn {
    width: 100%;
    justify-content: center;
    border-radius: 6px;
    background: #0b63ce;
    border-color: #0b63ce;
    color: #fff;
    font-weight: 800;
}

body.page-id-16 .etm-contact-toggle {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

body.page-id-16 .etm-contact-toggle .elementor-toggle-item {
    margin-bottom: 12px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

body.page-id-16 .etm-contact-toggle .elementor-tab-title {
    color: #111827;
    font-weight: 800;
}

body.page-id-16 .etm-contact-toggle .elementor-tab-content {
    color: #64748b;
    line-height: 1.68;
}

@media (max-width: 921px) {
    body.page-id-16 .etm-contact-main > .elementor-container,
    body.page-id-16 .etm-contact-faq > .elementor-container {
        width: min(100% - 32px, 680px);
    }

    body.page-id-16 .etm-contact-main .elementor-column {
        width: 100% !important;
    }

    body.page-id-16 .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* Home typography, links, and coverage refinement. */
body.home .elementor-8 {
    color: #334155;
    font-size: 16px;
    line-height: 1.65;
}

body.home .elementor-8 a {
    color: #0b63ce;
    text-decoration: none;
}

body.home .elementor-8 a:hover {
    color: #073f86;
}

body.home .elementor-8 p {
    margin-bottom: 0;
}

body.home .elementor-8 .etm-section-eyebrow .elementor-heading-title {
    margin-bottom: 8px;
    color: #0b63ce !important;
    font-size: 0.78rem !important;
    line-height: 1.2;
}

body.home .elementor-8 .etm-section-title .elementor-heading-title {
    margin-bottom: 12px;
    font-size: 2.18rem !important;
    line-height: 1.22 !important;
}

body.home .elementor-8 .etm-section-intro p {
    font-size: 0.98rem;
    line-height: 1.7;
}

body.home .elementor-8 .etm-card .elementor-icon-box-title,
body.home .elementor-8 .etm-product-card .elementor-image-box-title,
body.home .elementor-8 .etm-region-card .elementor-icon-box-title {
    font-size: 1.02rem !important;
    line-height: 1.35;
}

body.home .elementor-8 .etm-card .elementor-icon-box-description,
body.home .elementor-8 .etm-product-card .elementor-image-box-description,
body.home .elementor-8 .etm-region-card .elementor-icon-box-description,
body.home .elementor-8 .etm-testimonial-card .elementor-testimonial-content {
    font-size: 0.94rem;
    line-height: 1.68;
}

body.home .elementor-8 .etm-products-grid a,
body.home .elementor-8 .etm-products-grid .elementor-image-box-title a {
    color: #111827;
}

body.home .elementor-8 .etm-products-grid a:hover,
body.home .elementor-8 .etm-products-grid .elementor-image-box-title a:hover {
    color: #0b63ce;
}

body.home .elementor-8 .etm-coverage-section {
    background: #fff;
}

body.home .elementor-8 .etm-coverage-section > .elementor-container {
    gap: 36px;
    align-items: stretch;
}

body.home .elementor-8 .etm-coverage-section .elementor-column:first-child {
    width: calc(45% - 18px) !important;
}

body.home .elementor-8 .etm-coverage-section .elementor-column:last-child {
    width: calc(55% - 18px) !important;
}

body.home .elementor-8 .etm-coverage-map {
    min-height: 380px;
    border: 0;
    box-shadow: none;
    background:
        radial-gradient(circle at 50% 46%, rgba(11, 99, 206, 0.16), rgba(11, 99, 206, 0.04) 44%, transparent 45%),
        linear-gradient(135deg, #eef5ff, #f8fbff);
    position: relative;
    overflow: hidden;
}

body.home .elementor-8 .etm-coverage-map::before,
body.home .elementor-8 .etm-coverage-map::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(11, 99, 206, 0.16);
    pointer-events: none;
}

body.home .elementor-8 .etm-coverage-map::before {
    width: 300px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

body.home .elementor-8 .etm-coverage-map::after {
    width: 420px;
    height: 420px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

body.home .elementor-8 .etm-coverage-map .elementor-widget-container {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 42px 36px;
}

body.home .elementor-8 .etm-coverage-map .elementor-icon-box-wrapper {
    text-align: center;
}

body.home .elementor-8 .etm-coverage-map .elementor-icon {
    width: 118px;
    height: 118px;
    margin-bottom: 18px;
    background: #0b63ce;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(11, 99, 206, 0.28);
}

body.home .elementor-8 .etm-coverage-map .elementor-icon svg {
    width: 58px;
    height: 58px;
    fill: currentColor;
}

body.home .elementor-8 .etm-coverage-map .elementor-icon-box-title {
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 1.34rem !important;
    line-height: 1.25;
    font-weight: 800;
}

body.home .elementor-8 .etm-coverage-map .elementor-icon-box-description {
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.72;
}

body.home .elementor-8 .etm-region-list .elementor-widget-wrap {
    gap: 14px;
}

body.home .elementor-8 .etm-region-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
    background: #fff;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.home .elementor-8 .etm-region-card:hover {
    border-color: rgba(11, 99, 206, 0.28);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

body.home .elementor-8 .etm-region-card .elementor-widget-container {
    padding: 22px 24px;
}

body.home .elementor-8 .etm-region-card .elementor-icon-box-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

body.home .elementor-8 .etm-region-card .elementor-icon-box-icon {
    flex: 0 0 auto;
    margin: 0;
}

body.home .elementor-8 .etm-region-card .elementor-icon {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: rgba(11, 99, 206, 0.09);
    color: #0b63ce;
}

body.home .elementor-8 .etm-region-card .elementor-icon i,
body.home .elementor-8 .etm-region-card .elementor-icon svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

body.home .elementor-8 .etm-region-card .elementor-icon-box-title {
    margin: 0 0 6px;
    color: #0f172a;
    font-weight: 800;
}

body.home .elementor-8 .etm-region-card .elementor-icon-box-description {
    color: #64748b;
}

@media (max-width: 921px) {
    body.home .elementor-8 .etm-section-title .elementor-heading-title {
        font-size: 1.82rem !important;
    }

    body.home .elementor-8 .etm-coverage-section .elementor-column:first-child,
    body.home .elementor-8 .etm-coverage-section .elementor-column:last-child {
        width: 100% !important;
    }

    body.home .elementor-8 .etm-coverage-map {
        min-height: 300px;
    }

    body.home .elementor-8 .etm-region-card .elementor-icon-box-wrapper {
        gap: 13px;
    }
}


.etm-topbar {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
}

.etm-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.etm-topbar-item b {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-transform: uppercase;
}

.etm-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 921px) {
    .ast-header-html-1 .ast-builder-html-element,
    .ast-header-html-2 .ast-builder-html-element,
    .ast-header-html-1 .ast-builder-html-element p,
    .ast-header-html-2 .ast-builder-html-element p {
        flex-wrap: nowrap;
    }
}


/* Astra native social icons and separate language row. */
.ast-below-header-bar {
    min-height: 28px;
}

.ast-below-header-bar .site-header-section,
.ast-below-header-bar .ast-builder-grid-row {
    min-height: 28px;
}

.etm-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    white-space: nowrap;
    font-size: 0.78rem;
}

.etm-lang-switch a,
.etm-lang-switch span {
    color: inherit;
    text-decoration: none;
}

.etm-lang-switch-pending span[title] {
    cursor: help;
    opacity: 0.68;
}

.ast-primary-header-bar .etm-lang-switch {
    font-size: 0.82rem;
    margin-left: 4px;
}

.ast-primary-header-bar .etm-lang-switch a,
.ast-primary-header-bar .etm-lang-switch span {
    color: inherit;
}

/* Home page Elementor-native layout polish. */
body.home .site-content .ast-container,
body.home .entry-content,
body.home .elementor.elementor-8 {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

body.home .elementor-8 .elementor-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

body.home .elementor-8 .elementor-container {
    max-width: 1180px;
}

body.home .elementor-8 .elementor-heading-title {
    letter-spacing: 0;
}

body.home .elementor-8 .elementor-section:first-child {
    min-height: 760px;
    display: flex;
    align-items: center;
    position: relative;
}

body.home .elementor-8 .elementor-section:first-child::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 15, 28, 0.78), rgba(8, 15, 28, 0.48) 54%, rgba(8, 15, 28, 0.18));
    pointer-events: none;
    z-index: 0;
}

body.home .elementor-8 .elementor-section:first-child > .elementor-container {
    position: relative;
    z-index: 1;
}

body.home .elementor-8 .elementor-section:first-child .elementor-widget-heading:first-child .elementor-heading-title {
    display: inline-flex;
    width: auto;
    padding: 9px 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #dbeafe;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

body.home .elementor-8 .elementor-section:first-child h1.elementor-heading-title {
    max-width: 720px;
    color: #fff;
    font-size: clamp(2.7rem, 5vw, 4.9rem);
    line-height: 1.05;
    font-weight: 800;
    margin-top: 20px;
}

body.home .elementor-8 .elementor-section:first-child .elementor-widget-text-editor {
    max-width: 620px;
    color: #eef4ff;
    font-size: 1.12rem;
    line-height: 1.75;
}

body.home .elementor-8 .elementor-section:first-child .elementor-widget-button {
    display: inline-block;
    width: auto;
    margin-right: 14px;
}

body.home .elementor-8 .elementor-button {
    min-height: 48px;
    padding: 15px 26px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: none;
}

body.home .elementor-8 .elementor-button-primary .elementor-button {
    background: #0b63ce;
    border: 1px solid #0b63ce;
}

body.home .elementor-8 .elementor-button-secondary .elementor-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

body.home .elementor-8 .elementor-section:nth-child(2) {
    background: #071a56;
    margin-top: 0;
}

body.home .elementor-8 .elementor-section:nth-child(2) .elementor-counter-number-wrapper {
    justify-content: center;
    color: #fff;
    font-size: 2.3rem;
    font-weight: 800;
}

body.home .elementor-8 .elementor-section:nth-child(2) .elementor-counter-title {
    color: #dbeafe;
    font-weight: 600;
}

body.home .elementor-8 .elementor-section:nth-child(n+3) h2.elementor-heading-title {
    color: #111827;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
}

body.home .elementor-8 .elementor-section:nth-child(n+3) .elementor-widget-text-editor {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.75;
}

body.home .elementor-8 .elementor-widget-icon-box,
body.home .elementor-8 .elementor-widget-image-box,
body.home .elementor-8 .elementor-widget-testimonial {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

body.home .elementor-8 .elementor-widget-icon-box .elementor-widget-container,
body.home .elementor-8 .elementor-widget-testimonial .elementor-widget-container {
    padding: 30px;
}

body.home .elementor-8 .elementor-icon-box-icon .elementor-icon {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: rgba(11, 79, 156, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.home .elementor-8 .elementor-icon-box-title {
    margin-top: 18px;
    margin-bottom: 10px;
    color: #111827;
    font-size: 1.08rem;
    font-weight: 800;
}

body.home .elementor-8 .elementor-icon-box-description,
body.home .elementor-8 .elementor-image-box-description,
body.home .elementor-8 .elementor-testimonial-content {
    color: #64748b;
    line-height: 1.7;
}

body.home .elementor-8 .elementor-widget-image-box .elementor-widget-container {
    padding: 0 0 26px;
}

body.home .elementor-8 .elementor-image-box-img {
    width: 100% !important;
    margin: 0 0 22px !important;
}

body.home .elementor-8 .elementor-image-box-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    background: #eef2f7;
}

body.home .elementor-8 .elementor-image-box-title,
body.home .elementor-8 .elementor-image-box-description {
    padding-left: 22px;
    padding-right: 22px;
}

body.home .elementor-8 .elementor-image-box-title {
    color: #111827;
    font-size: 1.05rem;
    font-weight: 800;
}

body.home .elementor-8 .elementor-testimonial-wrapper {
    text-align: left;
}

body.home .elementor-8 .elementor-testimonial-name {
    color: #111827;
    font-weight: 800;
}

body.home .elementor-8 .elementor-testimonial-job {
    color: #0b4f9c;
    font-weight: 600;
}

body.home .elementor-8 .elementor-section:last-child {
    background: #071a56;
}

body.home .elementor-8 .elementor-section:last-child h2.elementor-heading-title {
    color: #fff;
}

body.home .elementor-8 .elementor-section:last-child .elementor-widget-text-editor {
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 921px) {
    body.home .elementor-8 .elementor-section:first-child {
        min-height: 680px;
        padding-top: 118px !important;
    }

    body.home .elementor-8 .elementor-section:first-child h1.elementor-heading-title {
        font-size: 2.55rem;
    }

    body.home .elementor-8 .elementor-section:first-child .elementor-widget-button {
        display: block;
        margin-right: 0;
    }

    body.home .elementor-8 .elementor-button {
        width: 100%;
    }

    body.home .elementor-8 .elementor-section:nth-child(n+3) h2.elementor-heading-title {
        font-size: 1.9rem;
    }
}


/* Home page stable section classes. */
body.home .elementor-8 .etm-home-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    overflow: hidden;
}

body.home .elementor-8 .etm-home-section > .elementor-container {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px !important;
    margin-left: auto;
    margin-right: auto;
}

body.home .elementor-8 .etm-hero-section {
    min-height: 760px !important;
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
}

body.home .elementor-8 .etm-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(7, 15, 29, 0.82), rgba(7, 15, 29, 0.5) 54%, rgba(7, 15, 29, 0.12));
    pointer-events: none;
}

body.home .elementor-8 .etm-hero-section > .elementor-container {
    position: relative;
    z-index: 1;
}

body.home .elementor-8 .etm-hero-content > .elementor-widget-wrap {
    max-width: 720px;
    align-content: center;
}

body.home .elementor-8 .etm-hero-badge .elementor-heading-title {
    display: inline-flex !important;
    width: auto;
    padding: 9px 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #dbeafe !important;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

body.home .elementor-8 .etm-hero-title .elementor-heading-title {
    max-width: 720px;
    color: #fff !important;
    font-size: 4.55rem !important;
    line-height: 1.05 !important;
    font-weight: 800;
}

body.home .elementor-8 .etm-hero-copy {
    max-width: 620px;
}

body.home .elementor-8 .etm-hero-copy p {
    color: #eef4ff !important;
    font-size: 1.12rem;
    line-height: 1.75;
}

body.home .elementor-8 .etm-hero-button {
    display: inline-block;
    width: auto;
    margin-right: 14px;
}

body.home .elementor-8 .etm-hero-button .elementor-button,
body.home .elementor-8 .etm-products-button .elementor-button,
body.home .elementor-8 .etm-cta-button .elementor-button {
    min-height: 48px;
    padding: 15px 27px;
    border-radius: 4px;
    font-weight: 800;
}

body.home .elementor-8 .etm-hero-primary .elementor-button,
body.home .elementor-8 .etm-products-button .elementor-button,
body.home .elementor-8 .etm-cta-button .elementor-button {
    background: #0b63ce;
    border: 1px solid #0b63ce;
    color: #fff;
}

body.home .elementor-8 .etm-hero-secondary .elementor-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: #fff;
}

body.home .elementor-8 .etm-stats-section {
    overflow: visible;
}

body.home .elementor-8 .etm-stats-section .elementor-container {
    align-items: stretch;
}

body.home .elementor-8 .etm-stat {
    text-align: center;
}

body.home .elementor-8 .etm-stat .elementor-counter-number-wrapper {
    justify-content: center;
    color: #fff;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1;
}

body.home .elementor-8 .etm-stat .elementor-counter-title {
    margin-top: 8px;
    color: #dbeafe;
    font-size: 0.94rem;
    font-weight: 700;
}

body.home .elementor-8 .etm-title-section {
    overflow: visible;
}

body.home .elementor-8 .etm-title-column > .elementor-widget-wrap {
    display: block;
}

body.home .elementor-8 .etm-section-eyebrow .elementor-heading-title {
    color: #0b63ce;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.home .elementor-8 .etm-section-title .elementor-heading-title {
    color: #111827 !important;
    font-size: 2.35rem !important;
    line-height: 1.18 !important;
    font-weight: 800;
}

body.home .elementor-8 .etm-section-intro {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

body.home .elementor-8 .etm-section-intro p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.75;
}

body.home .elementor-8 .etm-features-grid > .elementor-container,
body.home .elementor-8 .etm-products-grid > .elementor-container,
body.home .elementor-8 .etm-testimonials-grid > .elementor-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

body.home .elementor-8 .etm-features-grid .elementor-column {
    width: calc((100% - 48px) / 3) !important;
}

body.home .elementor-8 .etm-products-grid .elementor-column {
    width: calc((100% - 72px) / 4) !important;
}

body.home .elementor-8 .etm-products-grid .elementor-col-100 {
    width: 100% !important;
}

body.home .elementor-8 .etm-testimonials-grid .elementor-column {
    width: calc((100% - 48px) / 3) !important;
}

body.home .elementor-8 .etm-features-grid .elementor-widget-wrap,
body.home .elementor-8 .etm-products-grid .elementor-widget-wrap,
body.home .elementor-8 .etm-testimonials-grid .elementor-widget-wrap {
    padding: 0 !important;
}

body.home .elementor-8 .etm-card,
body.home .elementor-8 .etm-product-card,
body.home .elementor-8 .etm-testimonial-card {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

body.home .elementor-8 .etm-card .elementor-widget-container,
body.home .elementor-8 .etm-testimonial-card .elementor-widget-container {
    padding: 30px;
}

body.home .elementor-8 .etm-card .elementor-icon {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: rgba(11, 79, 156, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.home .elementor-8 .etm-card .elementor-icon-box-title,
body.home .elementor-8 .etm-product-card .elementor-image-box-title {
    color: #111827;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
}

body.home .elementor-8 .etm-card .elementor-icon-box-description,
body.home .elementor-8 .etm-product-card .elementor-image-box-description,
body.home .elementor-8 .etm-testimonial-card .elementor-testimonial-content {
    color: #64748b;
    line-height: 1.7;
}

body.home .elementor-8 .etm-product-card .elementor-widget-container {
    padding: 0 0 24px;
}

body.home .elementor-8 .etm-product-card .elementor-image-box-img {
    width: 100% !important;
    margin: 0 0 20px !important;
}

body.home .elementor-8 .etm-product-card .elementor-image-box-img img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    background: #eef2f7;
}

body.home .elementor-8 .etm-product-card .elementor-image-box-title,
body.home .elementor-8 .etm-product-card .elementor-image-box-description {
    padding-left: 22px;
    padding-right: 22px;
}

body.home .elementor-8 .etm-products-button {
    margin-top: 12px;
}

body.home .elementor-8 .etm-coverage-section > .elementor-container {
    display: flex;
    align-items: stretch;
    gap: 34px;
}

body.home .elementor-8 .etm-coverage-section .elementor-column {
    width: calc((100% - 34px) / 2) !important;
}

body.home .elementor-8 .etm-coverage-map,
body.home .elementor-8 .etm-region-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

body.home .elementor-8 .etm-coverage-map {
    height: 100%;
    min-height: 330px;
    display: flex;
    align-items: center;
}

body.home .elementor-8 .etm-coverage-map .elementor-widget-container,
body.home .elementor-8 .etm-region-card .elementor-widget-container {
    padding: 28px;
}

body.home .elementor-8 .etm-region-list .elementor-widget-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 !important;
}

body.home .elementor-8 .etm-region-card {
    width: 100%;
}

body.home .elementor-8 .etm-testimonial-card .elementor-testimonial-wrapper {
    text-align: left;
}

body.home .elementor-8 .etm-testimonial-card .elementor-testimonial-name {
    color: #111827;
    font-weight: 800;
}

body.home .elementor-8 .etm-testimonial-card .elementor-testimonial-job {
    color: #0b4f9c;
    font-weight: 700;
}

body.home .elementor-8 .etm-cta-section {
    text-align: center;
}

body.home .elementor-8 .etm-cta-section > .elementor-container {
    max-width: 980px !important;
}

body.home .elementor-8 .etm-cta-title .elementor-heading-title {
    color: #fff !important;
    font-size: 2.35rem !important;
    line-height: 1.2 !important;
    font-weight: 800;
}

body.home .elementor-8 .etm-cta-copy {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

body.home .elementor-8 .etm-cta-copy p {
    color: rgba(255, 255, 255, 0.84) !important;
}

@media (max-width: 921px) {
    body.home .elementor-8 .etm-home-section > .elementor-container {
        width: min(100% - 32px, 680px);
    }

    body.home .elementor-8 .etm-hero-section {
        min-height: 680px !important;
        padding-top: 128px !important;
    }

    body.home .elementor-8 .etm-hero-title .elementor-heading-title {
        font-size: 2.55rem !important;
    }

    body.home .elementor-8 .etm-hero-button {
        display: block;
        margin-right: 0;
    }

    body.home .elementor-8 .etm-hero-button .elementor-button {
        width: 100%;
    }

    body.home .elementor-8 .etm-stats-section .elementor-column,
    body.home .elementor-8 .etm-features-grid .elementor-column,
    body.home .elementor-8 .etm-products-grid .elementor-column,
    body.home .elementor-8 .etm-testimonials-grid .elementor-column,
    body.home .elementor-8 .etm-coverage-section .elementor-column {
        width: 100% !important;
    }

    body.home .elementor-8 .etm-stats-section > .elementor-container,
    body.home .elementor-8 .etm-features-grid > .elementor-container,
    body.home .elementor-8 .etm-products-grid > .elementor-container,
    body.home .elementor-8 .etm-testimonials-grid > .elementor-container,
    body.home .elementor-8 .etm-coverage-section > .elementor-container {
        gap: 18px;
    }

    body.home .elementor-8 .etm-section-title .elementor-heading-title,
    body.home .elementor-8 .etm-cta-title .elementor-heading-title {
        font-size: 1.9rem !important;
    }
}


/* Contact page Elementor Container layout. */
body.page-id-16 .entry-content,
body.page-id-16 .elementor.elementor-16 {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

body.page-id-16 .etm-contact-page-header.e-con,
body.page-id-16 .etm-contact-main.e-con,
body.page-id-16 .etm-contact-faq.e-con {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

body.page-id-16 .etm-contact-page-header > .e-con-inner,
body.page-id-16 .etm-contact-main > .e-con-inner,
body.page-id-16 .etm-contact-faq > .e-con-inner {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

body.page-id-16 .etm-contact-page-header {
    text-align: center;
}

body.page-id-16 .etm-contact-page-header .elementor-heading-title {
    color: #fff;
    font-size: 3rem;
    line-height: 1.12;
    font-weight: 800;
}

body.page-id-16 .etm-contact-page-header .elementor-widget-text-editor,
body.page-id-16 .etm-contact-page-header .elementor-widget-text-editor p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
}

body.page-id-16 .etm-contact-page-header .breadcrumb,
body.page-id-16 .etm-contact-page-header .breadcrumb a,
body.page-id-16 .etm-contact-page-header .breadcrumb span {
    color: rgba(255, 255, 255, 0.72);
}

body.page-id-16 .etm-contact-main > .e-con-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

body.page-id-16 .etm-contact-info-panel,
body.page-id-16 .etm-contact-form-panel {
    min-width: 0;
}

body.page-id-16 .etm-contact-info-panel .section-header .elementor-heading-title,
body.page-id-16 .etm-contact-faq .elementor-heading-title {
    color: #111827;
    font-size: 2.15rem;
    line-height: 1.2;
    font-weight: 800;
}

body.page-id-16 .etm-contact-info-panel .etm-contact-copy,
body.page-id-16 .etm-contact-faq .etm-contact-copy {
    color: #64748b;
    line-height: 1.75;
}

body.page-id-16 .contact-info-card {
    width: 100%;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

body.page-id-16 .contact-info-card .elementor-widget-container {
    padding: 22px 24px;
}

body.page-id-16 .contact-info-card .elementor-icon {
    color: #0b63ce;
}

body.page-id-16 .contact-info-card .elementor-icon-box-title {
    margin-bottom: 6px;
    color: #111827;
    font-size: 1rem;
    font-weight: 800;
}

body.page-id-16 .contact-info-card .elementor-icon-box-description {
    color: #64748b;
    line-height: 1.65;
}

body.page-id-16 .etm-contact-form-panel {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    padding: 34px;
}

body.page-id-16 .etm-contact-faq {
    text-align: center;
}

body.page-id-16 .etm-contact-faq .etm-contact-toggle {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

body.page-id-16 .etm-contact-toggle .elementor-tab-title {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    margin-top: 12px;
    color: #111827;
    font-weight: 800;
}

body.page-id-16 .etm-contact-toggle .elementor-tab-content {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-top: 0;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 921px) {
    body.page-id-16 .etm-contact-page-header > .e-con-inner,
    body.page-id-16 .etm-contact-main > .e-con-inner,
    body.page-id-16 .etm-contact-faq > .e-con-inner {
        width: min(100% - 32px, 680px);
    }

    body.page-id-16 .etm-contact-main > .e-con-inner {
        grid-template-columns: 1fr;
    }

    body.page-id-16 .etm-contact-page-header .elementor-heading-title {
        font-size: 2.35rem;
    }

    body.page-id-16 .etm-contact-info-panel .section-header .elementor-heading-title,
    body.page-id-16 .etm-contact-faq .elementor-heading-title {
        font-size: 1.85rem;
    }

body.page-id-16 .etm-contact-form-panel {
        padding: 24px;
    }
}


/* Contact page adapted from imported Elementor template style. */
body.page-id-16 .etm-contact-hero.e-con,
body.page-id-16 .etm-contact-breadcrumb-section.e-con,
body.page-id-16 .etm-contact-main-vodex.e-con,
body.page-id-16 .etm-contact-map-section.e-con {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

body.page-id-16 .etm-contact-hero > .e-con-inner,
body.page-id-16 .etm-contact-breadcrumb-section > .e-con-inner,
body.page-id-16 .etm-contact-main-vodex > .e-con-inner,
body.page-id-16 .etm-contact-map-section > .e-con-inner {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

body.page-id-16 .etm-contact-hero {
    position: relative;
    text-align: center;
    isolation: isolate;
}

body.page-id-16 .etm-contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(92deg, rgba(7, 26, 86, .86), rgba(7, 26, 86, .58) 48%, rgba(255, 255, 255, .16));
    pointer-events: none;
}

body.page-id-16 .etm-contact-hero > .e-con-inner {
    position: relative;
    z-index: 1;
}

body.page-id-16 .etm-contact-hero-title .elementor-heading-title {
    color: #fff;
    font-size: 4.1rem;
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
}

body.page-id-16 .etm-contact-hero-copy p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, .86);
    font-size: 1.08rem;
    line-height: 1.75;
}

body.page-id-16 .etm-contact-breadcrumb p {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    color: #64748b;
    font-weight: 700;
}

body.page-id-16 .etm-contact-breadcrumb a {
    color: #0b63ce;
}

body.page-id-16 .etm-contact-main-vodex > .e-con-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 38px;
    align-items: stretch;
}

body.page-id-16 .etm-contact-left-vodex,
body.page-id-16 .etm-contact-right-vodex {
    min-width: 0;
}

body.page-id-16 .etm-contact-section-heading .elementor-heading-title,
body.page-id-16 .etm-contact-form-title .elementor-heading-title {
    color: #111827;
    font-size: 2.15rem;
    line-height: 1.22;
    font-weight: 800;
}

body.page-id-16 .etm-contact-copy p {
    color: #475569;
    line-height: 1.75;
}

body.page-id-16 .etm-contact-icon-list .elementor-icon-list-item {
    align-items: flex-start;
}

body.page-id-16 .etm-contact-icon-list .elementor-icon-list-icon {
    color: #0b63ce;
    padding-top: 3px;
}

body.page-id-16 .etm-contact-icon-list .elementor-icon-list-text {
    color: #334155;
    font-weight: 600;
}

body.page-id-16 .etm-contact-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

body.page-id-16 .etm-contact-right-vodex {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    padding: 34px;
}

body.page-id-16 .etm-contact-map-section .elementor-widget-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

@media (max-width: 921px) {
    body.page-id-16 .etm-contact-hero > .e-con-inner,
    body.page-id-16 .etm-contact-breadcrumb-section > .e-con-inner,
    body.page-id-16 .etm-contact-main-vodex > .e-con-inner,
    body.page-id-16 .etm-contact-map-section > .e-con-inner {
        width: min(100% - 32px, 680px);
    }

    body.page-id-16 .etm-contact-main-vodex > .e-con-inner {
        grid-template-columns: 1fr;
    }

    body.page-id-16 .etm-contact-hero-title .elementor-heading-title {
        font-size: 2.6rem;
    }

    body.page-id-16 .etm-contact-section-heading .elementor-heading-title,
    body.page-id-16 .etm-contact-form-title .elementor-heading-title {
        font-size: 1.85rem;
    }

    body.page-id-16 .etm-contact-right-vodex {
        padding: 24px;
    }
}


/* Global footprint map page. */
body.page-id-126 .entry-content,
body.page-id-126 .elementor.elementor-126 {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

body.page-id-126 .etm-map-page-section.e-con,
body.page-id-126 .etm-map-cards-section.e-con,
body.page-id-126 .etm-map-partners-section.e-con,
body.page-id-126 .etm-map-cta-section.e-con {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

body.page-id-126 .etm-map-page-section > .e-con-inner,
body.page-id-126 .etm-map-cards-section > .e-con-inner,
body.page-id-126 .etm-map-partners-section > .e-con-inner,
body.page-id-126 .etm-map-cta-section > .e-con-inner {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

body.page-id-126 .etm-map-intro > .e-con-inner {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 56px;
    align-items: start;
}

body.page-id-126 .etm-map-eyebrow .elementor-heading-title {
    color: #0b63ce;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-id-126 .etm-map-title .elementor-heading-title {
    color: #111827;
    font-size: 3rem;
    line-height: 1.12;
    font-weight: 800;
}

body.page-id-126 .etm-map-copy p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
}

body.page-id-126 .etm-map-button .elementor-button {
    min-height: 48px;
    padding: 15px 26px;
    border-radius: 4px;
    background: #0b63ce;
    color: #fff;
    font-weight: 800;
}

.etm-global-map-module {
    width: 100%;
    margin-top: 52px;
}

.etm-world-map {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #eef4fb;
    box-shadow: 0 18px 54px rgba(15, 23, 42, 0.1);
    isolation: isolate;
}

.etm-world-map-art {
    display: block;
    width: 100%;
    height: auto;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

.etm-world-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 48%, rgba(11, 99, 206, .08), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.12));
    pointer-events: none;
    z-index: 1;
}

.etm-map-marker {
    position: absolute;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.etm-map-marker-china { left: 74%; top: 43%; }
.etm-map-marker-india { left: 68.5%; top: 53%; }
.etm-map-marker-sea { left: 75%; top: 58%; }
.etm-map-marker-middle-east { left: 61%; top: 48%; }
.etm-map-marker-europe { left: 51%; top: 34%; }
.etm-map-marker-africa { left: 53%; top: 60%; }
.etm-map-marker-north-america { left: 23%; top: 34%; }
.etm-map-marker-south-america { left: 31%; top: 68%; }
.etm-map-marker-oceania { left: 86%; top: 72%; }

.etm-map-marker-pulse,
.etm-map-marker-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.etm-map-marker-pulse {
    width: 32px;
    height: 32px;
    background: rgba(11, 99, 206, 0.28);
    animation: etm-map-pulse 2.1s infinite;
}

.etm-map-marker-dot {
    width: 12px;
    height: 12px;
    background: #0b63ce;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(11, 99, 206, .18);
}

@keyframes etm-map-pulse {
    0% {
        opacity: .9;
        transform: translate(-50%, -50%) scale(.55);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.45);
    }
}

.etm-map-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    width: 330px;
    margin-right: 16px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(8, 15, 28, .92);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) translateX(10px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 40;
}

.etm-map-tooltip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid rgba(8, 15, 28, .92);
    transform: translateY(-50%);
}

.etm-map-marker:hover {
    z-index: 60;
}

.etm-map-marker:hover .etm-map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.elementor-editor-active .etm-global-map-module,
.elementor-editor-preview .etm-global-map-module {
    min-height: 420px;
}

.etm-map-tooltip h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 800;
}

.etm-map-tooltip p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: .88rem;
    line-height: 1.6;
}

body.page-id-126 .etm-map-region-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

body.page-id-126 .etm-map-region-card .elementor-widget-container {
    padding: 26px;
}

body.page-id-126 .etm-map-region-card .elementor-icon {
    color: #0b63ce;
}

body.page-id-126 .etm-map-region-card .elementor-icon-box-title {
    color: #111827;
    font-size: 1rem;
    font-weight: 800;
}

body.page-id-126 .etm-map-region-card .elementor-icon-box-description {
    color: #64748b;
    line-height: 1.7;
}

body.page-id-126 .etm-map-cards-grid > .e-con-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

body.page-id-126 .etm-map-partners-section {
    text-align: center;
}

body.page-id-126 .etm-partner-logo-carousel {
    margin-top: 18px;
    overflow: hidden;
}

body.page-id-126 .etm-partner-logo-track > .e-con-inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 34px;
    width: max-content;
    max-width: none;
    animation: etm-partner-scroll 22s linear infinite;
}

body.page-id-126 .etm-partner-logo-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 34px;
    overflow: hidden;
}

body.page-id-126 .etm-partner-logo-track > .elementor-widget-image {
    flex: 0 0 300px;
}

body.page-id-126 .etm-partner-logo-track:hover > .e-con-inner {
    animation-play-state: paused;
}

body.page-id-126 .etm-partner-logo-item {
    width: 300px;
    min-width: 300px;
}

body.page-id-126 .etm-partner-logo-item .elementor-widget-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-id-126 .etm-partner-logo-item img {
    width: auto;
    max-width: 310px;
    height: 124px;
    padding: 10px 18px;
    object-fit: contain;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
    transition: transform .2s ease;
}

body.page-id-126 .etm-partner-logo-item img:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

@keyframes etm-partner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.etm-partner-logo-track {
    min-height: 150px;
}

.etm-partner-logo-track > .elementor-widget-image,
.etm-partner-logo-item {
    display: block;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
}

.etm-partner-logo-item .elementor-widget-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}

.etm-partner-logo-item img {
    display: block;
    width: auto;
    max-width: 300px;
    height: 124px;
    object-fit: contain;
}

.elementor-editor-active body.page-id-126 .etm-partner-logo-track > .e-con-inner,
body.elementor-editor-active.page-id-126 .etm-partner-logo-track > .e-con-inner {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.elementor-editor-active .etm-partner-logo-track,
body.elementor-editor-active.page-id-126 .etm-partner-logo-track {
    overflow: visible;
    flex-wrap: wrap !important;
    justify-content: center;
}

/* Elementor editor fallback: the editor iframe may not expose page-id-126. */
.elementor-editor-active .etm-partner-logo-carousel,
.elementor-editor-preview .etm-partner-logo-carousel,
.elementor-editor-active .etm-partner-logo-track,
.elementor-editor-preview .etm-partner-logo-track,
.elementor-editor-active .etm-partner-logo-track.e-con,
.elementor-editor-preview .etm-partner-logo-track.e-con {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    overflow: visible !important;
    min-height: 150px !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    animation: none !important;
}

.elementor-editor-active .etm-partner-logo-track > .elementor-widget-image,
.elementor-editor-preview .etm-partner-logo-track > .elementor-widget-image,
.elementor-editor-active .etm-partner-logo-item,
.elementor-editor-preview .etm-partner-logo-item {
    display: block !important;
    flex: 0 0 240px !important;
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.elementor-editor-active .etm-partner-logo-item img,
.elementor-editor-preview .etm-partner-logo-item img {
    display: block !important;
    width: 100% !important;
    max-width: 240px !important;
    height: 110px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Static Elementor-editable partner logo grid. */
.etm-partner-logo-grid,
.etm-partner-logo-grid.e-con {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    animation: none !important;
    transform: none !important;
}

.etm-partner-logo-grid > .elementor-widget-image,
.etm-partner-logo-grid .etm-partner-logo-item {
    flex: 0 0 300px !important;
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.etm-partner-logo-grid .elementor-widget-container {
    min-height: 150px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
}

.etm-partner-logo-grid img {
    display: block !important;
    width: 100% !important;
    max-width: 260px !important;
    height: 125px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.page-id-126:not(.elementor-editor-active) .etm-partner-logo-grid > .elementor-widget-image {
    animation: etm-partner-scroll-x 22s linear infinite;
}

body.page-id-126:not(.elementor-editor-active) .etm-partner-logo-grid:hover > .elementor-widget-image {
    animation-play-state: paused;
}

body.elementor-editor-active.page-id-126 .etm-partner-logo-grid,
.elementor-editor-active .etm-partner-logo-grid {
    flex-wrap: wrap !important;
    overflow: visible !important;
    justify-content: center !important;
}

body.elementor-editor-active.page-id-126 .etm-partner-logo-grid > .elementor-widget-image,
.elementor-editor-active .etm-partner-logo-grid > .elementor-widget-image {
    animation: none !important;
}

/* Partner Logos standalone test page: editable images, marquee on preview. */
body.page-id-146 .etm-partner-test-grid,
body.page-id-146 .etm-partner-test-grid.e-con {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 34px !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

body.page-id-146 .etm-partner-test-grid > .elementor-widget-image {
    flex: 0 0 300px !important;
    width: 300px !important;
    min-width: 300px !important;
}

body.page-id-146 .etm-partner-test-grid img {
    display: block !important;
    width: 100% !important;
    max-width: 300px !important;
    height: 124px !important;
    object-fit: contain !important;
}

body.page-id-146:not(.elementor-editor-active) .etm-partner-test-grid > .elementor-widget-image {
    animation: etm-partner-scroll-x 22s linear infinite;
}

body.page-id-146:not(.elementor-editor-active) .etm-partner-test-grid:hover > .elementor-widget-image {
    animation-play-state: paused;
}

@keyframes etm-partner-scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-334px * 4)); }
}

body.elementor-editor-active.page-id-146 .etm-partner-test-grid,
.elementor-editor-active .etm-partner-test-grid {
    flex-wrap: wrap !important;
    overflow: visible !important;
    justify-content: center !important;
}

body.elementor-editor-active.page-id-146 .etm-partner-test-grid > .elementor-widget-image,
.elementor-editor-active .etm-partner-test-grid > .elementor-widget-image {
    animation: none !important;
}

/* Final partner logo layout: static 4-logo editable grid. */
.etm-partner-logo-grid,
.etm-partner-logo-grid.e-con,
body.page-id-146 .etm-partner-test-grid,
body.page-id-146 .etm-partner-test-grid.e-con {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    animation: none !important;
    transform: none !important;
}

.etm-partner-logo-grid > .elementor-widget-image,
.etm-partner-logo-grid .etm-partner-logo-item,
body.page-id-146 .etm-partner-test-grid > .elementor-widget-image {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.etm-partner-logo-grid .elementor-widget-container,
body.page-id-146 .etm-partner-test-grid .elementor-widget-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 150px !important;
    padding: 10px !important;
}

.etm-partner-logo-grid img,
body.page-id-146 .etm-partner-test-grid img {
    display: block !important;
    width: 100% !important;
    max-width: 260px !important;
    height: 125px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 921px) {
    .etm-partner-logo-grid,
    .etm-partner-logo-grid.e-con,
    body.page-id-146 .etm-partner-test-grid,
    body.page-id-146 .etm-partner-test-grid.e-con {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 544px) {
    .etm-partner-logo-grid,
    .etm-partner-logo-grid.e-con,
    body.page-id-146 .etm-partner-test-grid,
    body.page-id-146 .etm-partner-test-grid.e-con {
        grid-template-columns: 1fr !important;
    }
}

/* Frontend-only partner logo motion; Elementor editor remains static. */
body.page-id-126:not(.elementor-editor-active) .etm-partner-logo-grid,
body.page-id-146:not(.elementor-editor-active) .etm-partner-test-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 48px !important;
    overflow: hidden !important;
}

body.page-id-126:not(.elementor-editor-active) .etm-partner-logo-grid > .elementor-widget-image,
body.page-id-146:not(.elementor-editor-active) .etm-partner-test-grid > .elementor-widget-image {
    flex: 0 0 260px !important;
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    animation: etm-partner-four-logo-drift 14s ease-in-out infinite alternate;
}

body.page-id-126:not(.elementor-editor-active) .etm-partner-logo-grid:hover > .elementor-widget-image,
body.page-id-146:not(.elementor-editor-active) .etm-partner-test-grid:hover > .elementor-widget-image {
    animation-play-state: paused;
}

@keyframes etm-partner-four-logo-drift {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-260px - 48px));
    }
}

/* Stronger visible motion for the static 4-logo partner row. */
body.page-id-126:not(.elementor-editor-active) .etm-partner-logo-carousel,
body.page-id-146:not(.elementor-editor-active) .etm-partner-test-section {
    overflow: hidden !important;
}

body.page-id-126:not(.elementor-editor-active) .etm-partner-logo-grid,
body.page-id-146:not(.elementor-editor-active) .etm-partner-test-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    width: max-content !important;
    max-width: none !important;
    overflow: visible !important;
    animation: etm-partner-row-sweep 12s ease-in-out infinite alternate !important;
    will-change: transform;
}

body.page-id-126:not(.elementor-editor-active) .etm-partner-logo-grid > .elementor-widget-image,
body.page-id-146:not(.elementor-editor-active) .etm-partner-test-grid > .elementor-widget-image {
    animation: none !important;
}

body.page-id-126:not(.elementor-editor-active) .etm-partner-logo-grid:hover,
body.page-id-146:not(.elementor-editor-active) .etm-partner-test-grid:hover {
    animation-play-state: paused !important;
}

@keyframes etm-partner-row-sweep {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-280px);
    }
}

body.elementor-editor-active.page-id-126 .etm-partner-logo-grid,
body.elementor-editor-active.page-id-146 .etm-partner-test-grid,
.elementor-editor-active .etm-partner-logo-grid,
.elementor-editor-active .etm-partner-test-grid {
    animation: none !important;
    transform: none !important;
}

body.page-id-126 .etm-map-cta-section {
    text-align: center;
}

body.page-id-126 .etm-map-cta-section .elementor-heading-title {
    color: #fff;
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 800;
}

body.page-id-126 .etm-map-cta-section p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, .82);
}

/* Partner logo marquee: duplicated Elementor image widgets create a real loop. */
body:not(.elementor-editor-active) .etm-partner-logo-carousel,
body:not(.elementor-editor-active) .etm-partner-test-section {
    overflow: hidden !important;
}

body:not(.elementor-editor-active) .etm-partner-marquee-track,
body:not(.elementor-editor-active) .etm-partner-marquee-track.e-con {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: max-content !important;
    max-width: none !important;
    gap: 48px !important;
    overflow: visible !important;
    animation: etm-partner-marquee-loop 22s linear infinite !important;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

body:not(.elementor-editor-active) .etm-partner-marquee-track:hover {
    animation-play-state: paused !important;
}

body:not(.elementor-editor-active) .etm-partner-marquee-track > .elementor-widget-image {
    flex: 0 0 240px !important;
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important;
    animation: none !important;
    transform: none !important;
}

@keyframes etm-partner-marquee-loop {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(calc(-50% - 24px), 0, 0);
    }
}

body.elementor-editor-active .etm-partner-marquee-track,
.elementor-editor-active .etm-partner-marquee-track {
    animation: none !important;
    transform: none !important;
}

@media (max-width: 921px) {
    body.page-id-126 .etm-map-page-section > .e-con-inner,
    body.page-id-126 .etm-map-cards-section > .e-con-inner,
    body.page-id-126 .etm-map-partners-section > .e-con-inner,
    body.page-id-126 .etm-map-cta-section > .e-con-inner {
        width: min(100% - 32px, 680px);
    }

    body.page-id-126 .etm-map-intro > .e-con-inner,
    body.page-id-126 .etm-map-cards-grid > .e-con-inner {
        grid-template-columns: 1fr;
    }

    body.page-id-126 .etm-map-title .elementor-heading-title {
        font-size: 2.3rem;
    }

    .etm-map-tooltip {
        display: none;
    }

    .etm-map-marker-pulse {
        width: 22px;
        height: 22px;
    }

    .etm-map-marker-dot {
        width: 9px;
        height: 9px;
    }
}

/* Final partner marquee override: keep this at the end of the file. */
body.page-id-126:not(.elementor-editor-active) .etm-partner-marquee-track,
body.page-id-126:not(.elementor-editor-active) .etm-partner-marquee-track.e-con,
body.page-id-146:not(.elementor-editor-active) .etm-partner-marquee-track,
body.page-id-146:not(.elementor-editor-active) .etm-partner-marquee-track.e-con {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: max-content !important;
    max-width: none !important;
    gap: 48px !important;
    overflow: visible !important;
    animation: etm-partner-marquee-loop 22s linear infinite !important;
    will-change: transform;
}

body.page-id-126:not(.elementor-editor-active) .etm-partner-marquee-track > .elementor-widget-image,
body.page-id-146:not(.elementor-editor-active) .etm-partner-marquee-track > .elementor-widget-image {
    flex: 0 0 240px !important;
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important;
    animation: none !important;
    transform: none !important;
}

body.page-id-126:not(.elementor-editor-active) .etm-partner-marquee-track:hover,
body.page-id-146:not(.elementor-editor-active) .etm-partner-marquee-track:hover {
    animation-play-state: paused !important;
}


/* True EOF Blog page spacing override. */
body.page-id-32 .site-content,
body.page-id-32 #content,
body.page-id-32 #primary,
body.page-id-32 .content-area,
body.page-id-32 .site-content > .ast-container,
body.page-id-32 .entry-content,
body.page-id-32 .elementor.elementor-32 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-id-32 .site-content > .ast-container,
body.page-id-32 .ast-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 .etm-blog-hero-section {
    margin-top: 0 !important;
}

/* Definitive Blog layout repair after all legacy overrides. */
body.page-id-32 #masthead .ast-container {
    width: auto !important;
    max-width: 1200px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body.page-id-32 .site-content > .ast-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 .etm-blog-layout-section > .e-con-inner {
    width: min(100% - 48px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con {
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    display: grid !important;
    grid-template-columns: 240px minmax(0, 1fr) !important;
    gap: 44px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-sidebar,
body.page-id-32 .etm-blog-posts-shell {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.page-id-32 .etm-blog-archive-placeholder-widget,
body.page-id-32 .etm-blog-archive-placeholder-widget .elementor-widget-container,
body.page-id-32 .etm-blog-posts-panel {
    width: 100% !important;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Absolute final Industry Blog cleanup: keep this block last. */
body.page-id-32 .site-content,
body.page-id-32 #content,
body.page-id-32 #primary,
body.page-id-32 .content-area,
body.page-id-32 .site-content > .ast-container,
body.page-id-32 .entry-content,
body.page-id-32 .elementor.elementor-32 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-id-32 .site-content > .ast-container,
body.page-id-32 .ast-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 #masthead .ast-container {
    width: auto !important;
    max-width: 1200px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body.page-id-32 .etm-blog-layout-section > .e-con-inner {
    width: min(100% - 48px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con,
body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    overflow: visible !important;
}

body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
    display: grid !important;
    grid-template-columns: minmax(220px, 240px) minmax(0, 1fr) !important;
    gap: 44px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-sidebar,
body.page-id-32 .etm-blog-posts-shell,
body.page-id-32 .etm-blog-posts-shell.e-con {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.page-id-32 .etm-blog-results-heading,
body.page-id-32 .etm-blog-results-copy,
body.page-id-32 .etm-blog-archive-placeholder-widget,
body.page-id-32 .etm-blog-posts-panel {
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-blog-results-copy,
body.page-id-32 .etm-blog-results-copy p {
    max-width: 640px !important;
    white-space: normal !important;
}

body.page-id-32 .etm-blog-category-list,
body.page-id-32 .etm-blog-category-list.e-con,
body.page-id-32 .etm-blog-category-list > .e-con-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button,
body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 10px 0 10px 16px !important;
    background: transparent !important;
    color: #526174 !important;
    border: 0 !important;
    border-left: 2px solid transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-align: left !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button:hover,
body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button:focus {
    background: transparent !important;
    color: #0b5cab !important;
    border-left-color: #0b5cab !important;
}

body.page-id-32 .etm-blog-category-list .etm-blog-cat-button .elementor-button-text {
    color: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: left !important;
}

.etm-blog-editor-archive-placeholder {
    width: 100%;
    border: 1px dashed #b8c3d3;
    border-radius: 8px;
    background: #f8fafc;
    padding: 28px;
    color: #526174;
}

.etm-blog-editor-archive-placeholder strong {
    display: block;
    margin-bottom: 6px;
    color: #071a56;
    font-size: 18px;
    line-height: 1.35;
}

.etm-blog-editor-archive-placeholder span {
    display: block;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-blog-layout-section > .e-con-inner {
        width: min(100% - 32px, 680px) !important;
    }

    body.page-id-32 .etm-blog-archive-wrap.e-con > .e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Blog Gutenberg final visual pass. */
body.page-id-32.ast-separate-container #primary,
body.page-id-32.ast-separate-container .ast-article-single,
body.page-id-32.ast-separate-container .site-main,
body.page-id-32 .site-content,
body.page-id-32 .site-content > .ast-container,
body.page-id-32 .content-area,
body.page-id-32 .entry-content,
body.page-id-32 .etm-block-page-template {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.page-id-32 .site-content > .ast-container,
body.page-id-32 .ast-container:not(#masthead .ast-container) {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-32 .etm-block-blog-hero {
    min-height: 560px !important;
    margin-top: 0 !important;
    padding-top: 132px !important;
}

body.page-id-32 .etm-block-blog-hero .wp-block-cover__background {
    background: linear-gradient(90deg, rgba(2, 10, 26, 0.78), rgba(2, 10, 26, 0.46) 46%, rgba(2, 10, 26, 0.26)) !important;
    opacity: 1 !important;
}

body.page-id-32 .etm-block-blog-hero .wp-block-cover__inner-container {
    width: min(100% - 48px, 1180px) !important;
}

body.page-id-32 .etm-block-blog-hero h1 {
    max-width: 720px;
    letter-spacing: 0 !important;
}

body.page-id-32 .etm-block-blog-hero p {
    max-width: 760px;
}

body.page-id-32 .etm-block-blog-main {
    background: #fff;
}

body.page-id-32 .etm-block-post-query .wp-block-post-template {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
}

body.page-id-32 .etm-block-post-query .wp-block-post {
    margin: 0 !important;
}

body.page-id-32 .etm-block-post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.page-id-32 .etm-block-post-card:hover {
    transform: translateY(-3px);
    border-color: #cdd9ea;
    box-shadow: 0 16px 36px rgba(8, 27, 54, .10);
}

body.page-id-32 .etm-block-post-card .wp-block-post-title a {
    color: #081b36 !important;
}

body.page-id-32 .etm-block-post-card .wp-block-post-title a:hover,
body.page-id-32 .etm-block-post-card .wp-block-post-excerpt__more-link:hover {
    color: #0b5cab !important;
}

body.page-id-32 .etm-block-post-card .wp-block-post-excerpt__more-link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: #0b5cab !important;
    font-weight: 800;
    text-decoration: none !important;
}

body.page-id-32 .etm-primary-button .wp-block-button__link,
body.page-id-32 .etm-block-blog-search .wp-block-search__button {
    background: #0b5cab !important;
    color: #fff !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

body.page-id-32 .etm-primary-button .wp-block-button__link:hover,
body.page-id-32 .etm-block-blog-search .wp-block-search__button:hover {
    background: #074a8d !important;
    color: #fff !important;
}

body.page-id-32 .etm-block-blog-categories li {
    background: transparent !important;
}

body.page-id-32 .etm-block-blog-categories a {
    color: #526174 !important;
}

body.page-id-32 .etm-block-blog-categories a:hover {
    color: #0b5cab !important;
}

@media (max-width: 1100px) {
    body.page-id-32 .etm-block-post-query .wp-block-post-template {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 921px) {
    body.page-id-32 .etm-block-blog-hero {
        min-height: 460px !important;
        padding-top: 48px !important;
    }
}

@media (max-width: 640px) {
    body.page-id-32 .etm-block-blog-hero h1 {
        font-size: 40px !important;
    }

    body.page-id-32 .etm-block-post-query .wp-block-post-template {
        grid-template-columns: 1fr !important;
    }
}

body.page-id-32 .etm-block-blog-hero {
    min-height: 560px !important;
    padding-top: 150px !important;
    margin-top: 0 !important;
}

body.page-id-32 .etm-block-blog-hero .wp-block-cover__inner-container {
    width: min(100% - 48px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-block-blog-hero .wp-block-group {
    max-width: 760px !important;
}

body.page-id-32 .etm-block-blog-hero h1,
body.page-id-32 .etm-block-blog-hero p,
body.page-id-32 .etm-block-blog-hero .wp-block-buttons {
    text-align: left !important;
    justify-content: flex-start !important;
}

body.page-id-32 .etm-block-blog-main {
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-block-blog-main > .wp-block-columns,
body.page-id-32 .etm-block-blog-main .etm-block-blog-columns {
    width: min(100% - 48px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-block-blog-content {
    min-width: 0 !important;
    width: 100% !important;
}

body.page-id-32 .etm-block-post-query {
    width: 100% !important;
    max-width: none !important;
}

body.page-id-32 .etm-block-post-query ul.wp-block-post-template,
body.page-id-32 .etm-block-post-query ul.wp-block-post-template.is-flex-container,
body.page-id-32 .etm-block-post-query ul.wp-block-post-template.columns-3 {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 26px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.page-id-32 .etm-block-post-query ul.wp-block-post-template > li.wp-block-post,
body.page-id-32 .etm-block-post-query ul.wp-block-post-template.is-flex-container > li.wp-block-post,
body.page-id-32 .etm-block-post-query ul.wp-block-post-template.columns-3 > li.wp-block-post {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex-basis: auto !important;
    flex-grow: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.page-id-32 .etm-block-post-query .wp-block-post > .etm-block-post-card,
body.page-id-32 .etm-block-post-query .wp-block-post > .wp-block-group {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.page-id-32 .etm-block-post-card .wp-block-post-date,
body.page-id-32 .etm-block-post-card .wp-block-post-title,
body.page-id-32 .etm-block-post-card .wp-block-post-excerpt,
body.page-id-32 .etm-block-post-card .wp-block-post-title a,
body.page-id-32 .etm-block-post-card .wp-block-post-excerpt p {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    text-align: left !important;
}

body.page-id-32 .etm-block-post-card .wp-block-post-date {
    line-height: 1.4 !important;
}

body.page-id-32 .etm-block-post-card .wp-block-post-title {
    line-height: 1.25 !important;
}

body.page-id-32 .etm-block-blog-search .wp-block-search__inside-wrapper {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
}

@media (max-width: 1100px) {
    body.page-id-32 .etm-block-post-query ul.wp-block-post-template,
    body.page-id-32 .etm-block-post-query ul.wp-block-post-template.is-flex-container,
    body.page-id-32 .etm-block-post-query ul.wp-block-post-template.columns-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 921px) {
    body.page-id-32 .etm-block-blog-hero {
        min-height: 460px !important;
        padding-top: 56px !important;
    }

    body.page-id-32 .etm-block-blog-main > .wp-block-columns,
    body.page-id-32 .etm-block-blog-main .etm-block-blog-columns {
        width: min(100% - 32px, 680px) !important;
    }
}

@media (max-width: 640px) {
    body.page-id-32 .etm-block-post-query ul.wp-block-post-template,
    body.page-id-32 .etm-block-post-query ul.wp-block-post-template.is-flex-container,
    body.page-id-32 .etm-block-post-query ul.wp-block-post-template.columns-3 {
        grid-template-columns: 1fr !important;
    }
}

body.page-id-17 .elementor-17,
body.page-id-17 .elementor-17 > .elementor-element:first-child,
body.page-id-17 .elementor-17 .etm-about-hero {
    margin-top: 0 !important;
}

body.page-id-17 .elementor-17 .etm-about-hero {
    width: 100% !important;
    max-width: none !important;
    min-height: 420px !important;
    padding-top: 0 !important;
    padding-right: 24px !important;
    padding-bottom: 0 !important;
    padding-left: 24px !important;
    display: flex !important;
    justify-content: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

body.page-id-17 .elementor-17 .etm-about-hero.e-con {
    --min-height: 420px !important;
    --padding-top: 0px !important;
    --padding-bottom: 0px !important;
    --padding-left: 24px !important;
    --padding-right: 24px !important;
    --justify-content: center !important;
    --margin-top: 0px !important;
}

@media (max-width: 921px) {
    body.page-id-17 .elementor-17 .etm-about-hero,
    body.page-id-17 .elementor-17 .etm-about-hero.e-con {
        min-height: 340px !important;
        --min-height: 340px !important;
    }
}

/* Stable editable Blog hero group. */
body.page-id-32 .etm-block-blog-hero.wp-block-group {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 560px !important;
    margin-top: 0 !important;
    padding: 144px max(24px, calc((100vw - 1180px) / 2)) 88px !important;
    overflow: hidden !important;
    background-image: linear-gradient(90deg, rgba(2, 10, 26, .80), rgba(2, 10, 26, .56) 46%, rgba(2, 10, 26, .24)), url('http://eternum-power.local/wp-content/uploads/2026/06/hero-bg.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

body.page-id-32 .etm-block-blog-hero.wp-block-group > * {
    position: relative;
    z-index: 1;
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-block-blog-hero.wp-block-group h1,
body.page-id-32 .etm-block-blog-hero.wp-block-group p,
body.page-id-32 .etm-block-blog-hero.wp-block-group .wp-block-buttons {
    max-width: 760px !important;
    text-align: left !important;
    justify-content: flex-start !important;
}

body.page-id-32 .etm-block-blog-hero.wp-block-group h1 {
    color: #fff !important;
    margin-top: 0 !important;
}

body.page-id-32 .etm-block-blog-hero.wp-block-group p {
    color: #fff !important;
}

body.page-id-32 .etm-block-blog-hero.wp-block-group .wp-block-button__link {
    background: #0b5cab !important;
    color: #fff !important;
    border-radius: 6px !important;
    text-decoration: none !important;
}

body.page-id-32 .etm-block-blog-hero.wp-block-group .wp-block-button__link:hover {
    background: #074a8d !important;
    color: #fff !important;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-block-blog-hero.wp-block-group {
        padding-top: 56px !important;
        padding-bottom: 64px !important;
    }
}

/* Final Cover-based Blog hero and visible pagination. */
body.page-id-32 .etm-block-blog-hero.wp-block-cover {
    width: 100% !important;
    max-width: none !important;
    margin-top: 0 !important;
    padding-top: 144px !important;
}

body.page-id-32 .etm-block-blog-hero.wp-block-cover .wp-block-cover__background {
    background: linear-gradient(90deg, rgba(2, 10, 26, .80), rgba(2, 10, 26, .56) 46%, rgba(2, 10, 26, .24)) !important;
    opacity: 1 !important;
}

body.page-id-32 .etm-block-blog-hero.wp-block-cover .wp-block-cover__inner-container {
    width: min(100% - 48px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-block-blog-hero.wp-block-cover .wp-block-group {
    max-width: 760px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-block-blog-hero.wp-block-cover h1,
body.page-id-32 .etm-block-blog-hero.wp-block-cover p,
body.page-id-32 .etm-block-blog-hero.wp-block-cover .wp-block-buttons {
    text-align: left !important;
    justify-content: flex-start !important;
}

body.page-id-32 .etm-block-post-query .wp-block-query-pagination {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 42px !important;
    color: #0b5cab !important;
}

body.page-id-32 .etm-block-post-query .wp-block-query-pagination a,
body.page-id-32 .etm-block-post-query .wp-block-query-pagination span,
body.page-id-32 .etm-block-post-query .wp-block-query-pagination-numbers,
body.page-id-32 .etm-block-post-query .page-numbers {
    color: #0b5cab !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

body.page-id-32 .etm-block-post-query .page-numbers.current {
    color: #081b36 !important;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-block-blog-hero.wp-block-cover {
        padding-top: 56px !important;
    }
}

/* Blog: treat the first editor-created Cover as the page hero. */
body.page-id-32 .etm-block-page-template > .wp-block-cover:first-child,
body.page-id-32 .entry-content > .wp-block-cover:first-child,
body.page-id-32 main#primary > .wp-block-cover:first-child {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-top: 0 !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding-top: 144px !important;
    box-sizing: border-box !important;
}

body.page-id-32 .etm-block-page-template > .wp-block-cover:first-child .wp-block-cover__background,
body.page-id-32 .entry-content > .wp-block-cover:first-child .wp-block-cover__background,
body.page-id-32 main#primary > .wp-block-cover:first-child .wp-block-cover__background {
    background: linear-gradient(90deg, rgba(2, 10, 26, .80), rgba(2, 10, 26, .56) 46%, rgba(2, 10, 26, .24)) !important;
    opacity: 1 !important;
}

body.page-id-32 .etm-block-page-template > .wp-block-cover:first-child .wp-block-cover__inner-container,
body.page-id-32 .entry-content > .wp-block-cover:first-child .wp-block-cover__inner-container,
body.page-id-32 main#primary > .wp-block-cover:first-child .wp-block-cover__inner-container {
    width: min(100% - 48px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-block-page-template > .wp-block-cover:first-child .wp-block-cover__inner-container > *,
body.page-id-32 .entry-content > .wp-block-cover:first-child .wp-block-cover__inner-container > *,
body.page-id-32 main#primary > .wp-block-cover:first-child .wp-block-cover__inner-container > * {
    max-width: 760px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

body.page-id-32 .etm-block-page-template > .wp-block-cover:first-child h1,
body.page-id-32 .etm-block-page-template > .wp-block-cover:first-child h2,
body.page-id-32 .etm-block-page-template > .wp-block-cover:first-child p,
body.page-id-32 .entry-content > .wp-block-cover:first-child h1,
body.page-id-32 .entry-content > .wp-block-cover:first-child h2,
body.page-id-32 .entry-content > .wp-block-cover:first-child p,
body.page-id-32 main#primary > .wp-block-cover:first-child h1,
body.page-id-32 main#primary > .wp-block-cover:first-child h2,
body.page-id-32 main#primary > .wp-block-cover:first-child p {
    color: #fff !important;
    text-align: left !important;
}

@media (max-width: 921px) {
    body.page-id-32 .etm-block-page-template > .wp-block-cover:first-child,
    body.page-id-32 .entry-content > .wp-block-cover:first-child,
    body.page-id-32 main#primary > .wp-block-cover:first-child {
        padding-top: 56px !important;
    }
}


/* Deep Groove Ball Bearings Elementor detail page. */
body.page-id-18 .entry-header,
body.page-id-18 .entry-title {
    display: none !important;
}

body.page-id-18 .site-content,
body.page-id-18 .content-area,
body.page-id-18 .site-main,
body.page-id-18 .ast-container,
body.page-id-18 .ast-article-single {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.page-id-18 .elementor-18 .etm-product-detail-hero {
    position: relative;
    isolation: isolate;
}

body.page-id-18 .elementor-18 .etm-product-detail-hero .elementor-heading-title {
    color: #fff !important;
    font-size: 4rem;
    line-height: 1.08;
    font-weight: 800;
}

body.page-id-18 .elementor-18 .etm-hero-copy p,
body.page-id-18 .elementor-18 .etm-product-breadcrumb p {
    margin: 0;
}

body.page-id-18 .elementor-18 .etm-product-breadcrumb a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

body.page-id-18 .elementor-18 .etm-product-tags .elementor-widget-text-editor {
    width: auto !important;
    max-width: none !important;
}

body.page-id-18 .elementor-18 .etm-product-tags p {
    margin: 0;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    font-size: .86rem;
    font-weight: 700;
}

body.page-id-18 .elementor-18 .etm-product-detail-nav {
    position: sticky;
    top: 132px;
    z-index: 20;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .05);
}

body.page-id-18 .elementor-18 .etm-detail-nav-button .elementor-button {
    border-radius: 4px;
    padding: 10px 16px;
    box-shadow: none;
}

body.page-id-18 .elementor-18 .etm-product-detail-card,
body.page-id-18 .elementor-18 .etm-product-detail-iconbox .elementor-widget-container {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

body.page-id-18 .elementor-18 .etm-product-detail-card img {
    max-height: 150px;
    object-fit: contain;
}

body.page-id-18 .elementor-18 .etm-card-grid > .e-con,
body.page-id-18 .elementor-18 .etm-icon-grid > .elementor-widget-icon-box,
body.page-id-18 .elementor-18 .etm-app-grid > .elementor-widget-icon-box {
    min-width: 0;
}

body.page-id-18 .elementor-18 .etm-product-detail-iconbox .elementor-widget-container {
    height: 100%;
    padding: 24px 22px;
    background: #fff;
}

body.page-id-18 .elementor-18 .etm-app-grid .elementor-widget-icon-box {
    width: calc(33.333% - 12px);
}

body.page-id-18 .elementor-18 .etm-icon-grid .elementor-widget-icon-box {
    width: calc(33.333% - 14px);
}

body.page-id-18 .elementor-18 .etm-spec-table,
body.page-id-18 .elementor-18 .etm-spec-table.e-con {
    overflow: hidden;
    border: 1px solid #d6dde5;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    gap: 0 !important;
    row-gap: 0 !important;
    --gap: 0px !important;
    --row-gap: 0px !important;
    --column-gap: 0px !important;
}

body.page-id-18 .elementor-18 .etm-spec-row,
body.page-id-18 .elementor-18 .etm-spec-row.e-con {
    display: grid !important;
    grid-template-columns: minmax(220px, 32%) minmax(0, 1fr) !important;
    gap: 0 !important;
    align-items: stretch !important;
    border-bottom: 1px solid #d6dde5;
    background: #fff;
}

body.page-id-18 .elementor-18 .etm-spec-row:nth-child(odd) {
    background: #f2f2f2;
}

body.page-id-18 .elementor-18 .etm-spec-row:nth-child(even) {
    background: #fff;
}

body.page-id-18 .elementor-18 .etm-spec-row:last-child {
    border-bottom: 0;
}

body.page-id-18 .elementor-18 .etm-spec-label,
body.page-id-18 .elementor-18 .etm-spec-value,
body.page-id-18 .elementor-18 .etm-spec-label.e-con,
body.page-id-18 .elementor-18 .etm-spec-value.e-con {
    width: auto !important;
    min-height: 44px;
    padding: 10px 14px !important;
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
}

body.page-id-18 .elementor-18 .etm-spec-label {
    border-right: 1px solid #d6dde5;
    font-weight: 700;
}

body.page-id-18 .elementor-18 .etm-spec-label .elementor-widget,
body.page-id-18 .elementor-18 .etm-spec-value .elementor-widget,
body.page-id-18 .elementor-18 .etm-spec-label .elementor-widget-container,
body.page-id-18 .elementor-18 .etm-spec-value .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

body.page-id-18 .elementor-18 .etm-spec-label p,
body.page-id-18 .elementor-18 .etm-spec-value p,
body.page-id-18 .elementor-18 .etm-product-detail-card p,
body.page-id-18 .elementor-18 .etm-product-detail-iconbox p {
    margin: 0;
}

body.page-id-18 .elementor-18 .etm-product-detail-image img {
    width: 100%;
    max-height: 390px;
    object-fit: contain;
}

body.page-id-18 .elementor-18 .etm-product-detail-cta .elementor-heading-title,
body.page-id-18 .elementor-18 .etm-product-detail-cta p {
    color: #fff !important;
}

body.page-id-18 .elementor-18 .etm-outline-light-button .elementor-button {
    border: 1px solid rgba(255, 255, 255, .42);
    color: #fff !important;
    background: transparent !important;
}

@media (max-width: 921px) {
    body.page-id-18 .elementor-18 .etm-product-detail-hero .elementor-heading-title {
        font-size: 2.65rem;
    }

    body.page-id-18 .elementor-18 .etm-product-detail-nav {
        position: static;
    }

    body.page-id-18 .elementor-18 .etm-product-overview .e-con,
    body.page-id-18 .elementor-18 .etm-spec-row,
    body.page-id-18 .elementor-18 .etm-product-overview .e-con.e-con,
    body.page-id-18 .elementor-18 .etm-spec-row.e-con {
        --flex-direction: column !important;
        flex-direction: column !important;
    }

    body.page-id-18 .elementor-18 .etm-product-overview .e-con > .e-con,
    body.page-id-18 .elementor-18 .etm-spec-row > .e-con,
    body.page-id-18 .elementor-18 .etm-card-grid > .e-con,
    body.page-id-18 .elementor-18 .etm-icon-grid > .elementor-widget-icon-box,
    body.page-id-18 .elementor-18 .etm-app-grid > .elementor-widget-icon-box {
        width: 100% !important;
        --width: 100% !important;
    }

    body.page-id-18 .elementor-18 .etm-spec-row,
    body.page-id-18 .elementor-18 .etm-spec-row.e-con {
        grid-template-columns: 1fr !important;
    }

    body.page-id-18 .elementor-18 .etm-spec-label {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #d6dde5;
        padding: 10px 14px !important;
    }

    body.page-id-18 .elementor-18 .etm-spec-value {
        min-height: 0;
        padding: 10px 14px !important;
    }
}

/* Simple top header for Deep Groove detail page. */
body.page-id-18 .elementor-18 .etm-product-simple-title-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 46px 54px 28px !important;
    background: #fff !important;
    text-align: left !important;
}

body.page-id-18 .elementor-18 .etm-product-simple-title-section.e-con {
    --width: 100vw !important;
    --padding-top: 46px !important;
    --padding-right: 54px !important;
    --padding-bottom: 28px !important;
    --padding-left: 54px !important;
    --align-items: flex-start !important;
}

body.page-id-18 .elementor-18 .etm-product-simple-title-section > .e-con-inner,
body.page-id-18 .elementor-18 .etm-product-simple-title-section .elementor-widget,
body.page-id-18 .elementor-18 .etm-product-simple-title-section .elementor-widget-container {
    width: 100% !important;
    max-width: 1360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
}

body.page-id-18 .elementor-18 .etm-product-simple-title-section .elementor-heading-title {
    color: #4b5563 !important;
    font-size: 2.25rem !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

body.page-id-18 .elementor-18 .etm-product-simple-tabs {
    position: static !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 54px !important;
    background: #fff !important;
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: none !important;
}

body.page-id-18 .elementor-18 .etm-product-simple-tabs.e-con {
    --width: 100vw !important;
    --padding-top: 0px !important;
    --padding-right: 54px !important;
    --padding-bottom: 0px !important;
    --padding-left: 54px !important;
    --justify-content: flex-start !important;
}

body.page-id-18 .elementor-18 .etm-product-simple-tabs > .e-con-inner {
    width: 100% !important;
    max-width: 1360px !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    margin: 0 auto !important;
}

body.page-id-18 .elementor-18 .etm-detail-tab {
    width: auto !important;
}

body.page-id-18 .elementor-18 .etm-detail-tab .elementor-button {
    position: relative;
    display: inline-flex;
    width: auto;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 16px !important;
    color: #334155 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: .96rem;
    font-weight: 500;
}

body.page-id-18 .elementor-18 .etm-detail-tab.is-active .elementor-button,
body.page-id-18 .elementor-18 .etm-detail-tab .elementor-button:hover,
body.page-id-18 .elementor-18 .etm-detail-tab .elementor-button:focus {
    color: #0b63ce !important;
    background: transparent !important;
}

body.page-id-18 .elementor-18 .etm-detail-tab.is-active .elementor-button::after,
body.page-id-18 .elementor-18 .etm-detail-tab .elementor-button:hover::after,
body.page-id-18 .elementor-18 .etm-detail-tab .elementor-button:focus::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: #0b63ce;
}

@media (max-width: 921px) {
    body.page-id-18 .elementor-18 .etm-product-simple-title-section,
    body.page-id-18 .elementor-18 .etm-product-simple-tabs {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    body.page-id-18 .elementor-18 .etm-product-simple-title-section .elementor-heading-title {
        font-size: 1.9rem !important;
    }

    body.page-id-18 .elementor-18 .etm-product-simple-tabs > .e-con-inner {
        overflow-x: auto;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }

    body.page-id-18 .elementor-18 .etm-detail-tab .elementor-button {
        white-space: nowrap;
        min-height: 48px;
        padding: 0 12px !important;
    }
}

/* Restored banner for Deep Groove detail page. */
body.page-id-18 .elementor-18 .etm-product-detail-hero {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 420px !important;
    margin-top: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

body.page-id-18 .elementor-18 .etm-product-detail-hero.e-con {
    --width: 100vw !important;
    --min-height: 420px !important;
    --align-items: center !important;
    --justify-content: center !important;
    --padding-top: 0px !important;
    --padding-right: 24px !important;
    --padding-bottom: 0px !important;
    --padding-left: 24px !important;
    --margin-top: 0px !important;
}

body.page-id-18 .elementor-18 .etm-product-detail-hero .elementor-widget,
body.page-id-18 .elementor-18 .etm-product-detail-hero .elementor-widget-container {
    width: 100% !important;
    max-width: 980px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

body.page-id-18 .elementor-18 .etm-product-detail-hero .elementor-heading-title {
    color: #fff !important;
    font-size: 3.45rem !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
}






body.page-id-18 .elementor-18 .etm-spec-native-wrap {
    width: 100%;
    overflow-x: auto;
}

body.page-id-18 .elementor-18 .etm-spec-native-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d6dde5;
    background: #fff;
    font-size: 14px;
    line-height: 1.35;
}

body.page-id-18 .elementor-18 .etm-spec-native-table td {
    padding: 9px 14px;
    border-right: 1px solid #d6dde5;
    border-bottom: 1px solid #d6dde5;
    color: #111827;
    vertical-align: middle;
}

body.page-id-18 .elementor-18 .etm-spec-native-table tr:nth-child(odd) td {
    background: #f2f2f2;
}

body.page-id-18 .elementor-18 .etm-spec-native-table tr:nth-child(even) td {
    background: #fff;
}

body.page-id-18 .elementor-18 .etm-spec-native-table td:first-child {
    width: 32%;
    min-width: 220px;
    font-weight: 700;
}

body.page-id-18 .elementor-18 .etm-spec-native-table td:last-child {
    border-right: 0;
}

body.page-id-18 .elementor-18 .etm-spec-native-table tr:last-child td {
    border-bottom: 0;
}

/* Product specification table inside Elementor Text Editor. */
body.etm-banner-overlap-page .etm-spec-editor-table-wrap {
    width: 100%;
    overflow-x: auto;
}

body.etm-banner-overlap-page .etm-spec-editor-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #cfd6df;
    background: #fff;
    color: #0f2747;
    font-size: 14px;
    line-height: 1.45;
}

body.etm-banner-overlap-page .etm-spec-editor-table th,
body.etm-banner-overlap-page .etm-spec-editor-table td {
    padding: 12px 16px;
    border-right: 1px solid #cfd6df;
    border-bottom: 1px solid #cfd6df;
    text-align: left;
    vertical-align: middle;
}

body.etm-banner-overlap-page .etm-spec-editor-table th {
    background: #f8fafc;
    color: #001a3d;
    font-weight: 700;
}

body.etm-banner-overlap-page .etm-spec-editor-table td:first-child {
    width: 40%;
    min-width: 240px;
    color: #001a3d;
}

body.etm-banner-overlap-page .etm-spec-editor-table th:last-child,
body.etm-banner-overlap-page .etm-spec-editor-table td:last-child {
    border-right: 0;
}

body.etm-banner-overlap-page .etm-spec-editor-table tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 640px) {
    body.etm-banner-overlap-page .etm-spec-editor-table {
        min-width: 680px;
    }
}

body.page-id-18 .elementor-18 .etm-product-faqs {
    background: #fff !important;
}

body.page-id-18 .elementor-18 .etm-product-faqs.e-con {
    --gap: 16px !important;
    --row-gap: 16px !important;
}

body.page-id-18 .elementor-18 .etm-faq-intro p {
    max-width: 760px;
    margin: -6px 0 8px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-accordion {
    border-top: 1px solid #dbe3ee;
}

body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-accordion-item {
    border: 0;
    border-bottom: 1px solid #dbe3ee;
    background: #fff;
}

body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-tab-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    transition: color .18s ease;
}

body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-tab-title:hover,
body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-tab-title.elementor-active {
    color: #0b63ce;
}

body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-accordion-icon {
    width: 18px;
    color: #0b63ce;
    font-size: 12px;
}

body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-tab-content {
    border-top: 0;
    padding: 0 0 20px 30px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-tab-content p {
    margin: 0 0 10px;
}

body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-tab-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-tab-title {
        padding: 16px 0;
        font-size: 15px;
    }

    body.page-id-18 .elementor-18 .etm-faq-accordion .elementor-tab-content {
        padding-left: 0;
        font-size: 14px;
    }
}

body.page-id-18 .etm-product-faqs {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 24px;
    background: #fff;
}

body.page-id-18 .etm-product-faqs > h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 800;
}

body.page-id-18 .etm-faq-intro-text {
    max-width: 760px;
    margin: 0 0 22px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

body.page-id-18 .etm-product-faqs details {
    border-top: 1px solid #dbe3ee;
    background: #fff;
}

body.page-id-18 .etm-product-faqs details:last-child {
    border-bottom: 1px solid #dbe3ee;
}

body.page-id-18 .etm-product-faqs summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 18px 34px 18px 0;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

body.page-id-18 .etm-product-faqs summary::-webkit-details-marker {
    display: none;
}

body.page-id-18 .etm-product-faqs summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 18px;
    color: #0b63ce;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

body.page-id-18 .etm-product-faqs details[open] summary {
    color: #0b63ce;
}

body.page-id-18 .etm-product-faqs details[open] summary::after {
    content: "-";
}

body.page-id-18 .etm-product-faqs details > div {
    padding: 0 0 20px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

body.page-id-18 .etm-product-faqs details p {
    margin: 0 0 10px;
}

body.page-id-18 .etm-product-faqs details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    body.page-id-18 .etm-product-faqs {
        padding: 56px 20px;
    }

    body.page-id-18 .etm-product-faqs > h2 {
        font-size: 1.6rem;
    }

    body.page-id-18 .etm-product-faqs summary {
        font-size: 15px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
}
/* Elementor pages should use a full-width Astra outer shell. */
body.ast-page-builder-template.elementor-page .site-content,
body.ast-page-builder-template.elementor-page #content,
body.ast-page-builder-template.elementor-page #primary,
body.ast-page-builder-template.elementor-page .site-content > .ast-container,
body.ast-page-builder-template.elementor-page .content-area,
body.ast-page-builder-template.elementor-page .site-main,
body.ast-page-builder-template.elementor-page .ast-article-single,
body.ast-page-builder-template.elementor-page .entry-content,
body.ast-page-builder-template.elementor-page .elementor {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.ast-page-builder-template.elementor-page .elementor > .e-con,
body.ast-page-builder-template.elementor-page .elementor > .elementor-section {
    width: 100% !important;
    max-width: none !important;
}