/* ══════════════════════════════════════
   TELC Theme — Main Stylesheet
   Version: 1.8.0
   Colors:
     Primary (steel blue): #5C79BC
     Primary dark: #4A6199
     Accent (dark orange): #EF8F61
     Accent hover: #e07a48
     Text dark: #333333
     Text body: #666666
     Light gray bg: #f7f7f7
     Border: #e5e5e5
   Fonts:
     Headings: Adamina, serif
     Body: "Open Sans", Arial, sans-serif
     Nav: Verdana, Helvetica, Arial, sans-serif
   ══════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a { color: #5C79BC; text-decoration: none; transition: color 0.2s; }
a:hover { color: #4A6199; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: Adamina, serif;
    color: #333;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 34px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p { margin-bottom: 1em; }

ul, ol { margin-left: 1.5em; margin-bottom: 1em; }

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-area { padding: 40px 0; }
.content-full { max-width: 900px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: #5C79BC;
    color: #fff;
    border-color: #5C79BC;
}
.btn-primary:hover {
    background: #4A6199;
    border-color: #4A6199;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #5C79BC;
    border-color: #5C79BC;
}
.btn-outline:hover {
    background: #5C79BC;
    color: #fff;
}

.btn-accent {
    background: #EF8F61;
    color: #fff;
    border-color: #EF8F61;
}
.btn-accent:hover {
    background: #e07a48;
    border-color: #e07a48;
    color: #fff;
}

.btn-lg { padding: 15px 36px; font-size: 15px; }

/* ── Top Bar ── */
.telc-topbar {
    background: #5C79BC;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.telc-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 12px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-phone {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.topbar-phone:hover { color: #dde3f0; }

.topbar-cart {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}
.topbar-cart:hover { color: #dde3f0; }

.cart-count {
    background: #EF8F61;
    color: #fff;
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ── Main Header ── */
.telc-main-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.telc-main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo a { display: block; }

.site-title-link { text-decoration: none; }
.site-title {
    font-family: Adamina, serif;
    font-size: 24px;
    color: #333;
    font-weight: 400;
}

.site-logo-link { display: block; }
.site-logo-img { max-height: 50px; width: auto; }

/* ── Navigation ── */
.telc-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.telc-nav-list > li {
    position: relative;
}

.telc-nav-list > li > a {
    display: block;
    padding: 10px 16px;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.telc-nav-list > li > a:hover,
.telc-nav-list > li.current-menu-item > a,
.telc-nav-list > li.current-menu-parent > a {
    color: #5C79BC;
}

/* Nav CTA button (Book Demo) */
.telc-nav-list > li > a.nav-cta {
    background: #EF8F61;
    color: #fff;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 12px;
    margin-left: 4px;
}
.telc-nav-list > li > a.nav-cta:hover {
    background: #e07a48;
    color: #fff;
}

/* Mega menu trigger indicator */
.has-mega-menu > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
}

/* Dropdown */
.telc-nav-list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 200;
}

.telc-nav-list > li:hover > .sub-menu { display: block; }

.telc-nav-list .sub-menu li a {
    display: block;
    padding: 8px 20px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    color: #555;
    transition: all 0.15s;
}

.telc-nav-list .sub-menu li a:hover {
    background: #f5f7fb;
    color: #5C79BC;
}

/* ── Mega Menu ── */
.telc-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 3px solid #5C79BC;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 199;
}

.telc-header { position: relative; }

.telc-mega-menu.is-active { display: block; }

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 250px 1fr 1fr;
    gap: 30px;
}

.mega-col-title {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5C79BC;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #5C79BC;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-col-featured { background: #f5f7fb; padding: 20px; border-radius: 6px; }

.mega-featured-link {
    display: block;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #fff;
    transition: all 0.2s;
}

.mega-featured-link:hover {
    border-color: #5C79BC;
    box-shadow: 0 2px 8px rgba(92,121,188,0.15);
}

.mega-featured-link strong {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 2px;
}

.mega-featured-link span { font-size: 12px; color: #888; }

.mega-featured-preorder {
    border-color: #E8913A;
    background: #fef8f2;
}

.mega-featured-preorder:hover {
    border-color: #d47a28;
    box-shadow: 0 2px 8px rgba(232,145,58,0.2);
}

.mega-featured-preorder strong { color: #E8913A; }

.mega-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 15px;
}

.mega-cat-list li {
    margin-bottom: 0;
    break-inside: avoid;
}

.mega-cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 8px;
    font-size: 13px;
    color: #555;
    border-radius: 3px;
    transition: all 0.15s;
}

.mega-cat-list li a:hover {
    background: #f5f7fb;
    color: #5C79BC;
}

.mega-count {
    font-size: 11px;
    color: #aaa;
    background: #f0f0f0;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 4px;
}

.mega-view-all {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #5C79BC;
}
.mega-view-all:hover { color: #4A6199; }

/* ── Header Search Bar ── */
.telc-header-search {
    background: #f5f7fb;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.telc-header-search-form {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid #5C79BC;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}

.telc-header-search-form:focus-within {
    box-shadow: 0 0 0 3px rgba(92,121,188,0.15);
}

.telc-header-search-form input[type="search"] {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #333;
    outline: none;
    background: transparent;
    min-width: 0;
}

.telc-header-search-form input[type="search"]::placeholder {
    color: #aaa;
}

.telc-header-search-form button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #5C79BC;
    border: none;
    color: #fff;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.telc-header-search-form button:hover {
    background: #4A6199;
}

.telc-header-search-form button svg {
    flex-shrink: 0;
}

/* ── AJAX Search Dropdown ── */
.telc-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 500;
    max-height: 420px;
    overflow-y: auto;
}

.search-loading {
    padding: 16px 20px;
    font-size: 13px;
    color: #888;
    text-align: center;
}

.search-section {
    border-bottom: 1px solid #f0f0f0;
}

.search-section:last-child {
    border-bottom: none;
}

.search-section-title {
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    background: #f9f9f9;
}

.search-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    text-decoration: none;
    transition: background 0.15s;
}

.search-cat-item:hover {
    background: #f5f7fb;
}

.search-cat-name {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.search-cat-count {
    font-size: 12px;
    color: #888;
}

.search-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    text-decoration: none;
    transition: background 0.15s;
}

.search-product-item:hover {
    background: #f5f7fb;
}

.search-product-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.search-product-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.search-product-title {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-product-price {
    font-size: 12px;
    color: #888;
}

.search-product-price del {
    color: #bbb;
    margin-right: 4px;
}

.search-product-price ins {
    text-decoration: none;
    color: #c0392b;
    font-weight: 600;
}

.search-no-results {
    padding: 20px 18px;
    font-size: 14px;
    color: #888;
    text-align: center;
}

.search-view-all {
    padding: 12px 18px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.search-view-all a {
    font-size: 13px;
    font-weight: 600;
    color: #5C79BC;
}

.search-view-all a:hover {
    color: #4A6199;
}

/* ── Sample Request Form Feedback ── */
.sample-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
}

.sample-success p {
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
    margin: 0;
}

.sample-error {
    font-size: 13px;
    color: #c0392b;
    margin-top: 8px;
    text-align: center;
}

/* Mobile toggle */
.telc-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

/* ── Breadcrumbs ── */
.telc-breadcrumbs {
    background: #f7f7f7;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid #e5e5e5;
}

.telc-breadcrumbs a { color: #5C79BC; }
.telc-breadcrumbs .sep { color: #ccc; margin: 0 8px; }
.telc-breadcrumbs .current { color: #999; }

/* ══════════════════════════════════════
   HOMEPAGE SECTIONS
   ══════════════════════════════════════ */

/* ── Hero Section ── */
.telc-hero {
    background: linear-gradient(135deg, #5C79BC 0%, #4A6199 100%);
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

.hero-content { max-width: 750px; margin: 0 auto; }

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    margin-bottom: 16px;
}

.telc-hero h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-highlight { color: #EF8F61; }

.hero-subtitle {
    font-size: 18px;
    opacity: 0.92;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.telc-hero .btn-accent {
    background: #EF8F61;
    border-color: #EF8F61;
}
.telc-hero .btn-accent:hover {
    background: #e07a48;
    border-color: #e07a48;
}

.telc-hero .btn-outline {
    color: #fff;
    border-color: #fff;
}
.telc-hero .btn-outline:hover {
    background: rgba(255,255,255,0.15);
}

/* ── Trust Bar ── */
.telc-trust-bar {
    background: #f7f7f7;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trust-item svg { color: #5C79BC; flex-shrink: 0; margin-top: 2px; }

.trust-item strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.trust-item span { font-size: 12px; color: #888; }

/* ── Stats Counter ── */
.telc-stats {
    padding: 50px 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: Adamina, serif;
    font-size: 42px;
    font-weight: 400;
    color: #5C79BC;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Featured Categories ── */
.telc-featured-cats {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 16px;
}

.section-cta {
    text-align: center;
    margin-top: 35px;
}

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

.cat-card {
    display: block;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 28px 24px;
    transition: all 0.25s;
    position: relative;
}

.cat-card:hover {
    border-color: #5C79BC;
    box-shadow: 0 8px 24px rgba(92,121,188,0.12);
    transform: translateY(-3px);
}

.cat-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 12px;
}

.cat-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
}

.cat-card p { font-size: 13px; color: #888; margin-bottom: 10px; }

.cat-count { font-size: 12px; color: #5C79BC; font-weight: 600; }

.cat-arrow {
    position: absolute;
    top: 28px;
    right: 20px;
    font-size: 20px;
    color: #ddd;
    transition: all 0.2s;
}
.cat-card:hover .cat-arrow { color: #5C79BC; transform: translateX(3px); }

/* ── US Lists CTA ── */
.telc-us-cta {
    background: linear-gradient(135deg, #5C79BC 0%, #4A6199 100%);
    padding: 70px 0;
    text-align: center;
}

.us-cta-content { max-width: 700px; margin: 0 auto; }

.telc-us-cta h2 { color: #fff; font-size: 32px; margin-bottom: 15px; }
.telc-us-cta p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 30px; }

/* ── Why Choose TELC ── */
.telc-why-us {
    padding: 80px 0;
    background: #f7f7f7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.why-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.25s;
}

.why-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: #f0f4fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.why-card h3 {
    font-size: 17px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── How It Works ── */
.telc-how-it-works {
    padding: 80px 0;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.step { text-align: center; }

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #5C79BC;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: "Open Sans", Arial, sans-serif;
}

.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; color: #777; max-width: 300px; margin: 0 auto; line-height: 1.6; }

/* ── Testimonials ── */
.telc-testimonials {
    padding: 80px 0;
    background: #f7f7f7;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
}

.testimonial-stars {
    color: #EF8F61;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: #333;
}

.testimonial-author span {
    font-size: 13px;
    color: #999;
}

.testimonial-trust {
    text-align: center;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.trust-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #666;
}

.trust-rating .trust-stars {
    color: #EF8F61;
    font-size: 20px;
    letter-spacing: 2px;
}

.trust-rating strong {
    color: #333;
    font-size: 16px;
}

/* ── Custom CTA ── */
.telc-custom-cta {
    padding: 70px 0;
    border-top: 1px solid #e5e5e5;
}

.custom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    border: 2px solid #5C79BC;
    border-radius: 8px;
    padding: 40px;
}

.custom-cta-text h2 { margin-bottom: 10px; }
.custom-cta-text p { margin-bottom: 0; font-size: 15px; max-width: 600px; color: #666; }

/* ══════════════════════════════════════
   LAYOUT & CONTENT PAGES
   ══════════════════════════════════════ */

/* ── Shop Layout ── */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding: 30px 0 60px;
}

.shop-intro { color: #888; margin-bottom: 25px; }

/* ── Footer ── */
.telc-footer { background: #2c2c2c; color: #aaa; }

.footer-main { padding: 50px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-about p { font-size: 14px; line-height: 1.7; }

.footer-contact-info {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #EF8F61;
    font-weight: 600;
    font-size: 14px;
}
.footer-phone:hover,
.footer-email:hover { color: #fff; }

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

/* ===== MY ACCOUNT DASHBOARD (Logged In) ===== */
.wc-account-dashboard {
    padding-top: 40px;
    padding-bottom: 60px;
    min-height: 60vh;
}

.wc-account-dashboard .wc-account-title {
    font-family: 'Adamina', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e5e5;
}

/* Two-column layout: sidebar nav + content */
.wc-account-dashboard .woocommerce {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.wc-account-dashboard .woocommerce-MyAccount-navigation {
    flex: 0 0 220px;
    min-width: 220px;
}

.wc-account-dashboard .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
}

.wc-account-dashboard .woocommerce-MyAccount-navigation ul li {
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
}

.wc-account-dashboard .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.wc-account-dashboard .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 18px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.wc-account-dashboard .woocommerce-MyAccount-navigation ul li a:hover {
    color: #5C79BC;
    background: #f8f9fb;
    border-left-color: #5C79BC;
}

.wc-account-dashboard .woocommerce-MyAccount-navigation ul li.is-active a,
.wc-account-dashboard .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
    color: #5C79BC;
    background: #f0f4fa;
    border-left-color: #5C79BC;
    font-weight: 600;
}

.wc-account-dashboard .woocommerce-MyAccount-content {
    flex: 1;
    min-width: 0;
    padding-top: 0;
}

.wc-account-dashboard .woocommerce-MyAccount-content p {
    color: #555;
    line-height: 1.7;
}

.wc-account-dashboard .woocommerce-MyAccount-content a {
    color: #5C79BC;
    text-decoration: none;
}

.wc-account-dashboard .woocommerce-MyAccount-content a:hover {
    color: #e07a48;
}

/* ===== PRODUCT GRID RESPONSIVE ===== */
@media (max-width: 768px) {
    ul.products,
    ul.products.columns-3,
    ul.products.columns-4,
    .category-archive-layout ul.products,
    .category-archive-layout ul.products.columns-3,
    .category-archive-layout ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .wc-account-dashboard .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
        border-bottom: none;
    }

    .wc-account-dashboard .woocommerce-MyAccount-navigation ul li a {
        padding: 10px 15px;
        border-bottom: 1px solid #e5e5e5;
        border-left: 3px solid transparent;
        margin-bottom: 0;
    }

    .wc-account-dashboard .woocommerce-MyAccount-navigation ul li.is-active a {
        border-bottom-color: #e5e5e5;
        border-left-color: #5C79BC;
        background: #f8f9fb;
    }
}

@media (max-width: 480px) {
    ul.products,
    ul.products.columns-3,
    ul.products.columns-4,
    .category-archive-layout ul.products,
    .category-archive-layout ul.products.columns-3,
    .category-archive-layout ul.products.columns-4 {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .telc-product-card {
        max-width: 100%;
    }
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    font-size: 13px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p { margin: 0; }

.footer-bottom-nav {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-bottom-nav a { color: #aaa; font-size: 13px; }
.footer-bottom-nav a:hover { color: #fff; }

/* ── Blog ── */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.post-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

.post-card-image img { width: 100%; height: 200px; object-fit: cover; }

.post-card-content { padding: 20px; }

.post-card-title { font-size: 18px; margin-bottom: 8px; }
.post-card-title a { color: #333; }
.post-card-title a:hover { color: #5C79BC; }

.post-card-meta { font-size: 12px; color: #999; margin-bottom: 10px; }

.post-card-excerpt { font-size: 14px; margin-bottom: 12px; }

.post-card-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #5C79BC;
}

/* ── Single Post ── */
.single-post .post-header { margin-bottom: 25px; }
.post-meta { font-size: 13px; color: #999; }
.meta-sep { margin: 0 8px; }

.post-featured-image { margin-bottom: 30px; border-radius: 6px; overflow: hidden; }

.post-content { font-size: 16px; line-height: 1.8; }
.post-content h2 { margin-top: 30px; }
.post-content h3 { margin-top: 25px; }
.post-content img { border-radius: 4px; margin: 20px 0; }

.post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
}

.post-nav a { font-size: 14px; max-width: 45%; }

/* ── Page ── */
.page-title {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #5C79BC;
}

.page-content { font-size: 15px; line-height: 1.8; }
.page-content h2 { margin-top: 30px; }
.page-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.page-content table th,
.page-content table td { padding: 10px 14px; border: 1px solid #e5e5e5; text-align: left; }
.page-content table th { background: #f7f7f7; font-weight: 600; color: #333; }

/* ── Subcategory Cards ── */
.subcategory-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.subcat-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s;
}

.subcat-card:hover {
    border-color: #5C79BC;
    background: #f5f7fb;
}

.subcat-card strong { color: #333; }
.subcat-card span { color: #888; font-size: 12px; }

/* ── Category Description ── */
.category-description {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

/* ── No Products ── */
.no-products {
    text-align: center;
    padding: 60px 20px;
    background: #f7f7f7;
    border-radius: 6px;
}

/* ── Search Result ── */
.search-result {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}
.search-result h2 { font-size: 18px; margin-bottom: 8px; }
.search-excerpt { font-size: 14px; }

/* ── Contact Map ── */
.contact-map-section {
    padding: 0 0 60px;
}

.contact-map-section .section-title {
    margin-bottom: 8px;
}

.contact-map-section .section-subtitle {
    margin-bottom: 25px;
}

.contact-map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
}

/* ── Page Hero (reusable) ── */
.page-hero {
    background: linear-gradient(135deg, #5C79BC 0%, #4A6199 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.page-hero .page-subtitle {
    font-size: 17px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-compact {
    padding: 40px 0;
}

.page-hero-compact h1 {
    font-size: 28px;
    margin-bottom: 6px;
}

.page-hero-compact .page-subtitle {
    font-size: 15px;
}

/* ── Custom Data List Page ── */
.custom-list-section {
    padding: 60px 0;
}

.custom-list-wrapper {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 50px;
    align-items: start;
}

.custom-list-steps {
    background: #f5f7fb;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    position: sticky;
    top: 20px;
}

.custom-list-steps h3 {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #5C79BC;
}

.step-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.step-item:last-of-type { margin-bottom: 0; }

.step-num {
    width: 36px;
    height: 36px;
    background: #5C79BC;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-info strong {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.custom-list-benefits {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.custom-list-benefits h4 {
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 16px;
}

.custom-list-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-list-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.custom-list-benefits li svg { flex-shrink: 0; margin-top: 2px; }

.custom-list-form { min-height: 700px; }

.form-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
}

.form-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.form-intro {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

/* ── WooCommerce Page Wrappers (Cart, Checkout, Account) ── */
.wc-page-wrap {
    padding: 40px 0 60px;
}

.wc-page-title {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #5C79BC;
}

.wc-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f7fb;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #5C79BC;
    margin-bottom: 24px;
}

.wc-account-wrap .woocommerce {
    max-width: 100%;
}

/* ── Book Demo Page ── */
.book-demo-section {
    padding: 60px 0;
}

.book-demo-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
}

.demo-benefits {
    background: #f5f7fb;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    position: sticky;
    top: 20px;
}

.demo-benefits h2 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #5C79BC;
}

.demo-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.demo-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.demo-benefits-list li:last-child { margin-bottom: 0; }

.demo-benefits-list li svg { flex-shrink: 0; margin-top: 2px; }

.demo-calendar {
    min-height: 700px;
    border-radius: 8px;
    overflow: hidden;
}

.demo-calendar iframe {
    min-height: 700px;
}

/* ── 404 Page ── */
.telc-404 {
    text-align: center;
    padding: 80px 0;
}

.telc-404-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ── Pagination ── */
.woocommerce-pagination,
.nav-links {
    margin-top: 30px;
    text-align: center;
}

.woocommerce-pagination ul,
.nav-links .page-numbers {
    list-style: none;
    display: inline-flex;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span,
.nav-links a,
.nav-links .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    transition: all 0.15s;
}

.woocommerce-pagination ul li a:hover,
.nav-links a:hover {
    border-color: #5C79BC;
    color: #5C79BC;
}

.woocommerce-pagination ul li span.current,
.nav-links .current {
    background: #5C79BC;
    border-color: #5C79BC;
    color: #fff;
}

/* ══════════════════════════════════════
   PAGE TEMPLATES
   ══════════════════════════════════════ */

/* ── About / Our Data Page ── */
.telc-page-hero {
    background: linear-gradient(135deg, #5C79BC 0%, #4A6199 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.telc-page-hero h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.telc-page-hero p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 60px 0;
}

.about-section:nth-child(even) {
    background: #f7f7f7;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-text h2 { margin-bottom: 15px; }
.about-text p { font-size: 15px; line-height: 1.7; color: #666; }

.about-features {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.about-features li svg { flex-shrink: 0; margin-top: 2px; color: #5C79BC; }

.data-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5C79BC;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

.process-step h4 {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
}

/* ── About Page Extended ── */
.about-section-alt {
    background: #f5f7fb;
}

.about-stats-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #5C79BC;
    border-radius: 12px;
    padding: 40px 30px;
    align-self: start;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-family: "Adamina", serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.about-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.about-feature:hover { border-color: #5C79BC; }

.about-feature svg { flex-shrink: 0; margin-top: 2px; }

.about-feature strong {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
}

.about-feature span {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.process-step-number {
    width: 40px;
    height: 40px;
    background: #5C79BC;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Contact page extended */
.contact-details {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-detail svg { flex-shrink: 0; margin-top: 2px; }

.contact-detail strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 14px;
    color: #666;
}

.contact-detail a:hover { color: #5C79BC; }

.contact-response-time {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #f5f7fb;
    border-radius: 6px;
    font-size: 13px;
    color: #555;
}

.telc-contact-form .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.telc-contact-form .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #555;
    background: #fff;
    transition: border-color 0.2s;
}

.telc-contact-form .form-group select:focus {
    border-color: #5C79BC;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92,121,188,0.1);
}

/* FAQ category titles */
.faq-category-title {
    font-size: 20px;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #5C79BC;
}

.faq-category-title:first-child { margin-top: 0; }

/* ── FAQ Page ── */
.faq-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover { background: #f5f7fb; }

.faq-item.active .faq-question { background: #f5f7fb; }

.faq-toggle {
    font-size: 20px;
    color: #5C79BC;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0 24px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    background: #f5f7fb;
}

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

/* ── Contact Page ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info p { font-size: 15px; line-height: 1.7; margin-bottom: 20px; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-detail svg { flex-shrink: 0; color: #5C79BC; margin-top: 2px; }

.contact-detail strong { display: block; color: #333; margin-bottom: 2px; }
.contact-detail span { font-size: 14px; color: #666; }

.contact-form h2 { margin-bottom: 20px; }

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    color: #333;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #5C79BC;
    outline: none;
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* Contact form feedback */
.contact-form-feedback {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
}

.contact-form-feedback.contact-error {
    color: #c0392b;
    padding: 10px;
    background: #fef5f5;
    border-radius: 4px;
}

.contact-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 20px;
    text-align: center;
}

.contact-success h3 {
    font-size: 22px;
    color: #2e7d32;
    margin: 0;
}

.contact-success p {
    font-size: 15px;
    color: #555;
    margin: 0;
    max-width: 400px;
}

/* ══════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════ */

/* ── Featured / Core Offering ── */
.services-featured {
    padding: 70px 0;
    background: #fff;
}

.services-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.services-featured-content {
    padding-right: 20px;
}

.services-label {
    display: inline-block;
    background: #f0f4fa;
    color: #5C79BC;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.services-featured-content h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.services-featured-content > p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.services-check-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.services-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.services-check-list li svg {
    flex-shrink: 0;
    color: #5C79BC;
}

/* Stats grid inside featured section */
.services-featured-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.services-featured-stats .stat-card {
    background: #f5f7fb;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.services-featured-stats .stat-card:hover {
    border-color: #5C79BC;
    box-shadow: 0 4px 16px rgba(92,121,188,0.1);
}

.services-featured-stats .stat-card .stat-number {
    font-size: 36px;
    margin-bottom: 6px;
}

.services-featured-stats .stat-card .stat-label {
    font-size: 13px;
}

/* ── Services Card Grid ── */
.services-grid-section {
    padding: 70px 0;
    background: #f7f7f7;
}

.services-grid-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid-section .section-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.services-grid-section .section-header p {
    font-size: 16px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

.services-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px 28px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: #5C79BC;
    box-shadow: 0 8px 28px rgba(92,121,188,0.12);
    transform: translateY(-3px);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: #f0f4fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 18px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card > p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.service-features li svg {
    flex-shrink: 0;
    color: #5C79BC;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #5C79BC;
    transition: gap 0.2s, color 0.2s;
    margin-top: auto;
}

.service-card-link:hover {
    color: #4A6199;
    gap: 10px;
}

/* ── Services CTA ── */
.services-cta {
    padding: 80px 0;
    background: #fff;
}

.services-cta-inner {
    background: linear-gradient(135deg, #5C79BC 0%, #4A6199 100%);
    border-radius: 12px;
    padding: 50px 60px;
    text-align: center;
    color: #fff;
}

.services-cta-inner h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
}

.services-cta-inner p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 30px;
}

.services-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta-buttons .btn-accent {
    background: #EF8F61;
    border-color: #EF8F61;
}
.services-cta-buttons .btn-accent:hover {
    background: #e07a48;
    border-color: #e07a48;
}

.services-cta-buttons .btn-outline {
    color: #fff;
    border-color: #fff;
}
.services-cta-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.15);
}

/* ══════════════════════════════════════
   Industry Landing Page
   ══════════════════════════════════════ */

.industry-hero {
    background: linear-gradient(135deg, #5C79BC 0%, #4A6199 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
}
.industry-hero h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 12px;
}
.industry-hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Feature */
.industry-product-feature {
    padding: 60px 0;
    background: #fff;
}
.industry-product-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}
.industry-product-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}
.industry-product-image img {
    width: 100%;
    height: auto;
    display: block;
}
.industry-product-image .telc-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #EF8F61;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.industry-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background: #f0f2f8;
}
.industry-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}
.industry-badge-live,
.industry-badge-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #5C79BC;
    background: #eef1f8;
    padding: 5px 12px;
    border-radius: 20px;
}
.industry-record-count {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
}
.industry-product-info h2 {
    font-size: 26px;
    margin-bottom: 12px;
}
.industry-pitch {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}
.industry-pricing {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.industry-price-regular {
    font-size: 18px;
    color: #999;
}
.industry-price-regular del {
    text-decoration: line-through;
}
.industry-price-sale {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    font-family: Adamina, serif;
}
.industry-price-save {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #EF8F61;
    padding: 4px 10px;
    border-radius: 4px;
}
.industry-product-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.industry-product-actions .btn {
    min-width: 160px;
    text-align: center;
}
.industry-product-actions .btn svg {
    vertical-align: -3px;
    margin-right: 6px;
}

/* Data Fields */
.industry-data-fields {
    padding: 60px 0;
    background: #f7f7f7;
}
.industry-data-fields h2 {
    text-align: center;
    margin-bottom: 8px;
}
.industry-data-fields .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 36px;
}
.data-fields-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.data-field-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.data-field-item svg {
    flex-shrink: 0;
}

/* CTA Banner */
.industry-cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #EF8F61 0%, #e07a48 100%);
    color: #fff;
    text-align: center;
}
.cta-banner-inner h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 12px;
}
.cta-banner-inner p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 24px;
}
.cta-banner-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-light {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    font-family: "Open Sans", Arial, sans-serif;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* State Products */
.industry-state-products {
    padding: 60px 0;
    background: #fff;
}
.industry-state-products h2 {
    text-align: center;
    margin-bottom: 8px;
}
.industry-state-products .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 36px;
}
.state-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.state-product-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}
.state-product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.state-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.state-product-link img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #f7f7f7;
}
.state-product-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    background: #f0f2f8;
}
.state-product-title {
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    color: #333;
    padding: 12px 14px 4px;
    line-height: 1.4;
    margin-bottom: 0;
}
.state-product-price {
    padding: 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}
.state-product-price del {
    color: #999;
    font-weight: 400;
    font-size: 13px;
}
.state-product-price ins {
    text-decoration: none;
    color: #333;
}
.state-product-btn {
    display: block;
    text-align: center;
    padding: 10px 14px;
    margin: 10px 14px 14px;
    background: #5C79BC;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}
.state-product-card:hover .state-product-btn {
    background: #4A6199;
}

/* Bottom CTA */
.industry-bottom-cta {
    padding: 60px 0;
    background: #f7f7f7;
    text-align: center;
}
.bottom-cta-inner h2 {
    margin-bottom: 12px;
}
.bottom-cta-inner p {
    max-width: 580px;
    margin: 0 auto 24px;
    font-size: 16px;
}

/* ── Hub Pages (Industries & States Directory) ── */
.hub-hero {
    background: linear-gradient(135deg, #5C79BC 0%, #4A6199 100%);
    padding: 60px 0 50px;
    text-align: center;
    color: #fff;
}
.hub-hero h1 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 12px;
}
.hub-hero-sub {
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto;
    opacity: 0.92;
    line-height: 1.6;
}

/* Industries Grid */
.hub-grid-section { padding: 60px 0; background: #f7f7f7; }
.hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hub-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}
.hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.hub-card-image {
    height: 180px;
    overflow: hidden;
    background: #eef1f7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hub-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.hub-card-body {
    padding: 16px 18px 20px;
}
.hub-card-body h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #333;
    line-height: 1.3;
}
.hub-card-count {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}
.hub-card-badge {
    display: inline-block;
    background: #EF8F61;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.hub-card-link {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #5C79BC;
    margin-top: 8px;
}

/* States Grid */
.hub-states-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.hub-state-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hub-state-card:hover {
    border-color: #5C79BC;
    box-shadow: 0 4px 12px rgba(92,121,188,0.12);
}
.hub-state-abbr {
    font-family: Adamina, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #5C79BC;
    line-height: 1;
    min-width: 42px;
}
.hub-state-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Cross-link section */
.hub-cross-link {
    padding: 50px 0;
    text-align: center;
    background: #fff;
}
.hub-cross-link h2 {
    margin-bottom: 10px;
}
.hub-cross-link .section-subtitle {
    max-width: 520px;
    margin: 0 auto 24px;
    color: #666;
}

/* Hub CTA */
.hub-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #EF8F61 0%, #e07a48 100%);
    color: #fff;
    text-align: center;
}
.hub-cta-inner h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 12px;
}
.hub-cta-inner p {
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 28px;
    opacity: 0.95;
}
.hub-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   Custom Data Request Page
   ══════════════════════════════════════ */

.custom-form-section {
    padding: 60px 0 80px;
    background: #f7f7f7;
}

.custom-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.custom-form-benefits h2 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #333;
}

.custom-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-benefits-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.custom-benefits-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.custom-benefits-list li strong {
    display: block;
    color: #333;
    font-size: 16px;
    margin-bottom: 2px;
}

.custom-benefits-list li span {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.custom-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e5e5e5;
}

.custom-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5C79BC;
    font-weight: 600;
}

.custom-form-container {
    position: sticky;
    top: 100px;
}

.custom-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.custom-form-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #333;
}

.custom-form-card > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.custom-form-card iframe {
    min-height: 500px;
}

/* ══════════════════════════════════════
   Mobile Contact Bar (floating top) ── */
.mobile-contact-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.mcb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7px 2px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    gap: 2px;
}
.mcb-call { background: #27ae60; }
.mcb-email { background: #5C79BC; }
.mcb-cart { background: #8e44ad; }
.mcb-quote { background: #EF8F61; }
.mcb-demo { background: #e74c3c; }
.mobile-contact-bar .mcb-demo:active { background: #c0392b; }

.mobile-contact-bar .mcb-item svg {
    fill: #fff;
}