﻿/* ========================================
   ELECTRONIC COMPONENTS - Main Stylesheet
   Professional Electronics Distributor
   ======================================== */

:root {
    --primary: #182772;
    --primary-light: #24398F;
    --accent: #2478D4;
    --accent-dark: #1D5FAC;
    --secondary: #FF6B35;
    --success: #00C853;
    --warning: #FFB300;
    --dark: #182772;
    --light: #F6F9FC;
    --white: #FFFFFF;
    --text: #1A1A2E;
    --text-secondary: #5A6B7B;
    --text-muted: #8B9AA8;
    --border: #E3E8EE;
    --border-light: #F0F4F8;
    --shadow-sm: 0 1px 3px rgba(24,39,114,0.08);
    --shadow: 0 4px 12px rgba(24,39,114,0.12);
    --shadow-lg: 0 8px 24px rgba(24,39,114,0.16);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: Aptos, Calibri, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-display: Aptos, Calibri, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); line-height: 1.6; color: var(--text); background: var(--white); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.3; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: #182772;
    color: rgba(255,255,255,0.9);
    padding: 0.42rem 0;
    font-size: 0.8rem;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    gap: 1.5rem;
}
.top-bar-left a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.top-bar-left a:hover { color: var(--white); }
.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.top-bar-right a {
    color: rgba(255,255,255,0.8);
}
.top-bar-right a:hover { color: var(--white); }

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
#mainNav {
    background: #182772;
    padding: 0;
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 18px rgba(24,39,114,0.16);
}
#mainNav.scrolled {
    box-shadow: var(--shadow);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 104px;
    padding: 0.65rem 0;
    overflow: visible;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 340px;
    overflow: visible;
}
.logo-img {
    height: 82px;
    max-width: 360px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}
.brand-text {
    display: none;
    flex-direction: column;
}
.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Search Box */
.nav-search {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}
.search-box {
    position: relative;
    display: flex;
    background: rgba(255,255,255,0.98);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.35);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(9,18,68,0.18);
}
.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    outline: none;
}
.search-box input::placeholder {
    color: var(--text-muted);
}
.search-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 0 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}
.search-btn:hover {
    background: var(--accent-dark);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255,255,255,0.88);
    font-size: 0.75rem;
    position: relative;
}
.nav-action i {
    font-size: 1.1rem;
}
.nav-action:hover {
    color: var(--white);
}
.nav-action .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.65rem;
    padding: 0.1rem 0.35rem;
    border-radius: 10px;
}

/* Main Nav Links */
.main-nav {
    background: linear-gradient(90deg, #182772 0%, #213681 100%);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(24,39,114,0.18);
    box-shadow: 0 10px 22px rgba(24,39,114,0.16);
    padding: 0;
}
.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-links > li {
    position: relative;
}
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.9);
    padding: 0.92rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.nav-links > li > a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}
.nav-links > li > a.active,
.nav-link.active,
.nav-links > li.active > a {
    color: var(--white) !important;
    background: #2478D4 !important;
    opacity: 1 !important;
}
.nav-links > li > a i {
    font-size: 0.7rem;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    border-top: 3px solid var(--accent);
}
.nav-links > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}
.dropdown-menu a:hover,
.dropdown-menu a.active,
.dropdown-item.active {
    background: var(--light);
    color: var(--accent);
}
.dropdown-menu a i {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Mobile Toggle */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: radial-gradient(circle at 82% 34%, rgba(36,120,212,0.18) 0%, rgba(36,120,212,0.08) 35%, transparent 62%),
                linear-gradient(135deg, #ffffff 0%, #f4f8ff 48%, #e8f2ff 100%);
    color: var(--text);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(36,120,212,0.12)"/><circle cx="90" cy="60" r="30" fill="rgba(24,39,114,0.04)"/></svg>');
    background-size: cover;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(36,120,212,0.10);
    border: 1px solid rgba(36,120,212,0.18);
    color: var(--accent-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.hero-badge i {
    color: var(--success);
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary);
}
.hero-title span {
    color: var(--accent);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--white);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary);
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(24,39,114,0.18);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Hero Image/Graphic */
.hero-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(24,39,114,0.10);
}

/* ========================================
   SECTIONS
   ======================================== */
.section-padding { padding: 4rem 0; }
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   CATEGORY GRID
   ======================================== */
.category-section {
    background: radial-gradient(circle at 24% 18%, rgba(36,120,212,0.30) 0%, transparent 34%),
                linear-gradient(135deg, #182772 0%, #203681 50%, #1b4d9f 100%);
    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(24,39,114,0.18);
    position: relative;
    overflow: hidden;
}
.category-section::before {
    content: '';
    position: absolute;
    top: -160px;
    left: 50%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(36,120,212,0.10) 46%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}
.category-section .container {
    position: relative;
    z-index: 1;
}
.category-section .section-label {
    color: #B9D9FF;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}
.category-section .section-title {
    color: var(--white);
}
.category-section .section-subtitle {
    color: rgba(255,255,255,0.72);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}
.category-card {
    background: rgba(255,255,255,0.94);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 18px 34px rgba(4,12,50,0.18);
    backdrop-filter: blur(8px);
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(4,12,50,0.28);
    border-color: rgba(111,182,255,0.58);
    background: var(--white);
}
.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(36,120,212,0.12), rgba(24,39,114,0.06));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
    border: 1px solid rgba(36,120,212,0.10);
}
.category-card:hover .category-icon {
    background: var(--accent);
    color: var(--white);
}
.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}
.category-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.products-section {
    background: var(--white);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.product-image {
    position: relative;
    height: 200px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    background: var(--success);
    color: var(--white);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
}
.product-badge.stock-low {
    background: var(--warning);
    color: var(--text);
}
.product-badge.new {
    background: var(--accent);
}
.product-actions {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}
.product-action-btn {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}
.product-action-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.product-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-sku {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 2.7em;
}
.product-title a:hover {
    color: var(--accent);
}
.product-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    min-height: 3.8em;
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.product-spec {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--light);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}
.product-footer .btn-primary {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.product-price {
    display: flex;
    flex-direction: column;
}
.price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}
.btn-add-cart {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-add-cart:hover {
    background: var(--accent-dark);
}

/* ========================================
   COMPONENT CATALOG PAGES
   ======================================== */
.product-list-banner .page-banner-bg {
    background: linear-gradient(135deg, #0a2540 0%, #123b63 58%, #0f5f8f 100%);
}
.catalog-section,
.component-detail-section {
    background: #f6f8fb;
}
.catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.catalog-sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 1rem;
}
.catalog-panel,
.component-gallery,
.component-summary,
.component-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.catalog-panel {
    padding: 1.25rem;
}
.catalog-panel-title {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.catalog-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
}
.catalog-nav a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.68rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 600;
}
.catalog-nav a:hover,
.catalog-nav li.active a {
    background: rgba(0, 164, 228, 0.1);
    color: var(--accent);
}
.catalog-help p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.panel-kicker {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.catalog-toolbar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.catalog-title {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text);
}
.results-count {
    color: var(--text-secondary);
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.7rem;
    font-size: 0.85rem;
    white-space: nowrap;
}
.catalog-grid,
.related-component-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.catalog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.catalog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.catalog-card-image {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
}
.catalog-card-image img {
    width: 76%;
    height: 76%;
    object-fit: contain;
    object-position: center;
}
.catalog-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
}
.catalog-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.catalog-sku {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
}
.catalog-card-title {
    min-height: 3em;
    margin: 0 0 0.55rem;
    font-size: 0.98rem;
    line-height: 1.45;
    font-weight: 700;
}
.catalog-card-title a {
    color: var(--text);
}
.catalog-card-title a:hover {
    color: var(--accent);
}
.catalog-card-desc {
    min-height: 4.2em;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.catalog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}
.catalog-card-meta span {
    color: var(--text-secondary);
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 0.28rem 0.5rem;
    font-size: 0.73rem;
}
.catalog-card-meta i {
    color: var(--success);
}
.catalog-card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}
.catalog-card-actions .btn-primary,
.catalog-card-actions .btn-outline {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}
.catalog-pagination {
    margin-top: 2rem;
}
.catalog-empty {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 1rem;
    text-align: center;
    color: var(--text-secondary);
}
.catalog-empty i {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.catalog-support,
.related-components-section {
    background: var(--white);
    padding: 3rem 0;
}
.support-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.support-strip h2 {
    margin: 0;
    font-size: 1.4rem;
}
.support-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.support-points span {
    background: var(--light);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.7rem;
    font-weight: 600;
}
.support-points i {
    color: var(--accent);
    margin-right: 0.35rem;
}
.detail-breadcrumb {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.component-detail-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.component-gallery {
    padding: 1rem;
}
.component-main-image {
    min-height: 360px;
    background: var(--light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.component-main-image img {
    width: 78%;
    height: 78%;
    max-height: 310px;
    object-fit: contain;
    object-position: center;
}
.component-thumb-row {
    margin-top: 0.85rem;
    display: flex;
    gap: 0.65rem;
}
.component-thumb {
    width: 72px;
    height: 58px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    cursor: pointer;
}
.component-thumb.active {
    border-color: var(--accent);
}
.component-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.component-summary {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}
.component-title {
    margin: 0.35rem 0 0.75rem;
    color: var(--text);
    font-size: 2rem;
    line-height: 1.2;
}
.component-subtitle {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.component-key-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 0.5rem 0 1.1rem;
}
.component-key-meta div {
    padding: 0.85rem;
    border-right: 1px solid var(--border);
    background: #fbfcfe;
}
.component-key-meta div:last-child {
    border-right: 0;
}
.component-key-meta span {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-bottom: 0.25rem;
}
.component-key-meta strong {
    color: var(--text);
    font-size: 0.92rem;
}
.component-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.4rem 0 1.1rem;
}
.component-actions .btn-primary,
.component-actions .btn-outline {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
}
.component-assurance {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.component-assurance span {
    color: var(--text-secondary);
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.65rem;
    font-weight: 600;
    font-size: 0.85rem;
}
.component-assurance i {
    color: var(--accent);
}
.component-info-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 1.5rem;
    align-items: start;
}
.component-panel {
    padding: 1.35rem;
}
.component-panel-head {
    margin-bottom: 1rem;
}
.component-panel-head h2 {
    margin: 0.25rem 0 0;
    font-size: 1.35rem;
}
.component-richtext {
    color: var(--text-secondary);
    line-height: 1.75;
}
.component-richtext table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
.component-richtext td,
.component-richtext th {
    border: 1px solid var(--border);
    padding: 0.7rem;
    vertical-align: top;
}
.component-richtext tr:nth-child(odd) td {
    background: #fbfcfe;
}
.component-spec-panel .btn-primary {
    margin-top: 0.5rem;
}
.related-component-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199px) {
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .related-component-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 991px) {
    .catalog-layout,
    .component-detail-grid,
    .component-info-grid {
        grid-template-columns: 1fr;
    }
    .catalog-sidebar {
        position: static;
    }
    .component-key-meta {
        grid-template-columns: 1fr;
    }
    .component-key-meta div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
    .component-key-meta div:last-child {
        border-bottom: 0;
    }
}
@media (max-width: 575px) {
    .catalog-toolbar,
    .support-strip {
        align-items: flex-start;
        flex-direction: column;
    }
    .catalog-grid,
    .related-component-grid {
        grid-template-columns: 1fr;
    }
    .catalog-card-actions {
        grid-template-columns: 1fr;
    }
    .component-title {
        font-size: 1.5rem;
    }
    .component-main-image {
        min-height: 260px;
    }
}

/* FDE banner image support */
.fde-reference-hero {
    isolation: isolate;
    background: #111111 !important;
}

.fde-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    animation: fdeHeroImageFade 18s infinite;
}

.fde-hero-bg-1 {
    background-image: url("../images/banner/fde-banner-1.jpg");
}

.fde-hero-bg-2 {
    background-image: url("../images/banner/fde-banner-2.jpg");
    animation-delay: 6s;
}

.fde-hero-bg-3 {
    background-image: url("../images/banner/fde-banner-3.jpg");
    animation-delay: 12s;
}

.fde-reference-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3,21,58,0.88) 0%, rgba(5,44,105,0.72) 46%, rgba(12,67,145,0.48) 72%, rgba(244,91,18,0.24) 100%),
        linear-gradient(180deg, rgba(2,14,42,0.30), rgba(3,19,55,0.54));
}

.fde-reference-hero:after {
    z-index: 1;
    background:
        radial-gradient(circle at 72% 26%, rgba(36,120,212,0.32), transparent 42%),
        radial-gradient(circle at 92% 62%, rgba(244,91,18,0.22), transparent 52%) !important;
}

.fde-circuit-bg {
    z-index: 1;
    opacity: 0.42;
}

.fde-reference-hero .container,
.fde-hero-dots {
    position: relative;
    z-index: 2;
}

@keyframes fdeHeroImageFade {
    0% { opacity: 0; transform: scale(1.04); }
    8% { opacity: 1; }
    33% { opacity: 1; transform: scale(1); }
    41% { opacity: 0; transform: scale(1.02); }
    100% { opacity: 0; transform: scale(1.04); }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    background: var(--primary);
    color: var(--white);
}
.features-section .section-title {
    color: var(--white);
}
.features-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-card {
    text-align: center;
    padding: 1.5rem;
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0,164,228,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--accent);
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}
.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.feature-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.brand-item {
    opacity: 0.5;
    transition: var(--transition);
    filter: grayscale(100%);
}
.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.brand-item img {
    height: 40px;
    width: auto;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}
.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-section {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}
.footer-brand {
    margin-bottom: 1rem;
}
.footer-logo {
    height: 158px;
    max-width: 260px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.75rem;
}
.footer-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    color: var(--white);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.footer-contact i {
    color: var(--accent);
    margin-top: 0.2rem;
}

.footer-newsletter {
    margin-top: 1rem;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}
.newsletter-form button {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover {
    background: var(--accent-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}
.footer-payments {
    display: flex;
    gap: 0.75rem;
}
.payment-icon {
    height: 28px;
    opacity: 0.7;
}

/* ========================================
   INNER PAGES
   ======================================== */
.page-banner {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: -1;
}
.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.page-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.exp-years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hover-shadow-lg:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

@media (max-width: 991px) {
    .page-title { font-size: 2.2rem; }
    .experience-badge {
        position: static;
        margin-top: 2rem;
        right: 0;
        bottom: 0;
    }
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* ========================================
   PAGE BANNER
   ======================================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}
.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.page-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}
.page-breadcrumb a {
    color: rgba(255,255,255,0.8);
}
.page-breadcrumb a:hover {
    color: var(--accent);
}
.page-breadcrumb .separator {
    margin: 0 0.5rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .top-bar { display: none; }
    .nav-container {
        min-height: 94px;
    }
    .navbar-brand {
        min-width: auto;
    }
    .logo-img {
        height: 72px;
        max-width: 300px;
    }
    .nav-search { display: none; }
    .navbar-toggler { display: block; }
    
    .main-nav {
        position: fixed;
        top: 94px;
        left: 0;
        right: 0;
        background: var(--white);
        max-height: calc(100vh - 94px);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: var(--transition);
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .nav-links {
        flex-direction: column;
    }
    .nav-links > li > a {
        color: var(--text);
        border-bottom: 1px solid var(--border);
    }
    .nav-links > li > a:hover,
    .nav-links > li > a.active {
        background: var(--light);
        color: var(--accent);
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--accent);
        border-radius: 0;
        display: none;
    }
    .nav-links > li:hover > .dropdown-menu {
        display: block;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .section-padding { padding: 3rem 0; }
    .nav-container {
        min-height: 86px;
    }
    .logo-img {
        height: 62px;
        max-width: 235px;
    }
    .main-nav {
        top: 86px;
        max-height: calc(100vh - 86px);
    }
    .hero-section { padding: 3rem 0; }
    .hero-title { font-size: 1.75rem; }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========================================
   Huayolux REDESIGN
   ======================================== */
:root {
    --hy-navy: #20206f;
    --hy-blue: #2535b5;
    --hy-purple: #9c4fe6;
    --hy-violet: #6c4fd7;
    --hy-ink: #171933;
    --hy-muted: #657186;
    --hy-soft: #f6f4ff;
    --hy-border: #e7e2f6;
}

.hy-topbar {
    background: linear-gradient(90deg, var(--hy-blue), var(--hy-purple));
}

.hy-topbar .top-bar-right {
    gap: 1rem;
}

.hy-cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 30px;
    padding: 0 0.95rem;
    border-radius: 999px;
    background: #dff4ff;
    border: 1px solid rgba(255,255,255,0.52);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
    color: #06448f;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.hy-cert-pill i {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: #2185d8;
    box-shadow: 0 0 0 5px rgba(33,133,216,0.13);
}

.hy-translate {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 28px;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
}

.hy-translate i {
    color: #ffffff;
}

.hy-translate #google_translate_element {
    position: absolute;
    inset: 0;
    opacity: 0.01;
    overflow: hidden;
    cursor: pointer;
}

.hy-translate .goog-te-gadget {
    height: 28px;
    font-size: 0;
}

.hy-translate .goog-te-gadget-simple {
    width: 100%;
    height: 28px;
    border: 0;
    background: transparent;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.hy-header#mainNav {
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(32,32,111,0.12);
}

.hy-header .nav-container {
    min-height: 98px;
}

.hy-brand {
    min-width: 360px;
}

.hy-logo-img {
    height: 72px;
    max-width: 420px;
}

.hy-nav-actions .nav-action {
    color: var(--hy-navy);
}

.hy-nav-actions .nav-action:hover {
    color: var(--hy-purple);
}

.hy-header-promise {
    flex: 1;
    max-width: 760px;
    margin: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.hy-promise-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    border: 1px solid rgba(156,79,230,0.16);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(37,53,181,0.06), rgba(156,79,230,0.08));
    color: var(--hy-navy);
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

.hy-promise-item i {
    color: var(--hy-purple);
}

.hy-header .navbar-toggler {
    color: var(--hy-navy);
}

.hy-main-nav {
    background: linear-gradient(90deg, var(--hy-blue), var(--hy-purple));
    border: 0;
    box-shadow: none;
}

.hy-main-nav .nav-links > li > a {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,0.92);
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hy-main-nav .nav-links > li > a:hover,
.hy-main-nav .nav-links > li > a.active {
    background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.11)) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 10px 24px rgba(20,16,92,0.16);
    color: #ffffff !important;
}

.hy-main-nav .nav-links {
    align-items: center;
}

.hy-mobile-translate-item {
    display: none;
}

.hy-mobile-translate {
    width: 100%;
    min-height: 48px;
    border: 0;
    background: var(--hy-soft);
    color: var(--hy-navy);
    font-weight: 800;
    text-align: left;
    padding: 0 1rem;
}

.hy-mobile-translate i {
    color: var(--hy-purple);
    margin-right: 0.55rem;
}

.hy-mobile-translate-box {
    display: none;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--hy-border);
    background: #ffffff;
}

.hy-mobile-translate-box.is-visible {
    display: block;
}

.hy-mobile-translate-loading {
    display: block;
    color: var(--hy-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.hy-mobile-translate-box .goog-te-gadget {
    font-size: 0;
}

.hy-mobile-translate-box .goog-te-gadget-simple {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    border: 1px solid var(--hy-border);
    border-radius: 8px;
    background: var(--hy-soft);
    padding: 0 0.8rem;
}

.hy-nav-cta-item {
    margin-left: auto;
}

.hy-nav-cta {
    min-height: 42px;
    margin: 0.36rem 0;
    padding: 0 1.15rem !important;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 8px;
    background: rgba(255,255,255,0.14) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    text-transform: none !important;
}

.hy-nav-cta:hover {
    background: #ffffff !important;
    color: var(--hy-blue) !important;
}

.hy-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 18%, rgba(166,82,235,0.34) 0%, transparent 34%),
        radial-gradient(circle at 15% 95%, rgba(40,56,190,0.36) 0%, transparent 32%),
        linear-gradient(135deg, #17165c 0%, #2434a9 52%, #9c4fe6 100%);
}

.hy-hero::before {
    content: '';
    position: absolute;
    right: -180px;
    bottom: -260px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.hy-hero-copy {
    position: relative;
    z-index: 1;
}

.hy-kicker,
.hy-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.hy-kicker {
    color: #ffffff;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    padding: 0.48rem 0.9rem;
    margin-bottom: 1.5rem;
}

.hy-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
    max-width: 780px;
    margin-bottom: 1.4rem;
}

.hy-hero h1 span {
    color: #e8d7ff;
}

.hy-hero p {
    max-width: 680px;
    color: rgba(255,255,255,0.82);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hy-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.hy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0 1.45rem;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hy-btn:hover {
    transform: translateY(-2px);
}

.hy-btn-primary {
    background: #ffffff;
    color: var(--hy-blue);
    box-shadow: 0 16px 34px rgba(17,18,70,0.24);
}

.hy-btn-outline {
    border: 1px solid rgba(255,255,255,0.34);
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

.hy-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 620px;
}

.hy-stats div {
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 1rem;
}

.hy-stats strong {
    display: block;
    font-size: 1.45rem;
    color: #ffffff;
}

.hy-stats span {
    color: rgba(255,255,255,0.72);
    font-size: 0.82rem;
}

.hy-hero-card {
    position: relative;
    z-index: 1;
    min-height: 420px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.13);
    box-shadow: 0 32px 80px rgba(13,13,72,0.26);
    padding: 2.5rem;
    overflow: hidden;
}

.hy-hero-card::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
}

.hy-hero-card img {
    width: 210px;
    height: 210px;
    object-fit: contain;
    margin: 0 auto 2rem;
}

.hy-chip-visual-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.8rem;
}

.hy-chip-svg {
    width: 100%;
    max-width: 430px;
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 48px rgba(15,12,74,0.18));
}

.hy-chip-mark {
    position: absolute;
    inset: 28px;
    pointer-events: none;
}

.hy-chip-mark span {
    position: absolute;
    width: 46px;
    height: 22px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.34);
}

.hy-chip-mark span:nth-child(1) { left: 0; top: 30px; }
.hy-chip-mark span:nth-child(2) { right: 0; top: 90px; }
.hy-chip-mark span:nth-child(3) { left: 42px; bottom: 76px; }
.hy-chip-mark span:nth-child(4) { right: 52px; bottom: 34px; }

.hy-card-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    text-align: center;
}

.hy-card-text {
    color: rgba(255,255,255,0.74);
    text-align: center;
    margin-top: 0.6rem;
}

.hy-section {
    padding: 5rem 0;
}

.hy-section-label {
    color: var(--hy-purple);
    margin-bottom: 0.85rem;
}

.hy-section-title {
    color: var(--hy-navy);
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.16;
    margin-bottom: 1rem;
}

.hy-section-text {
    color: var(--hy-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.hy-section-head {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hy-about {
    background: #ffffff;
}

.hy-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hy-info-item,
.hy-service-card {
    border: 1px solid var(--hy-border);
    background: #ffffff;
    border-radius: 8px;
    padding: 1.45rem;
    box-shadow: 0 14px 34px rgba(32,32,111,0.06);
}

.hy-info-item i,
.hy-service-card i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--hy-blue), var(--hy-purple));
    color: #ffffff;
    margin-bottom: 1rem;
}

.hy-info-item strong,
.hy-info-item span {
    display: block;
}

.hy-info-item strong {
    color: var(--hy-navy);
    margin-bottom: 0.35rem;
}

.hy-info-item span {
    color: var(--hy-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.hy-linecard {
    background: linear-gradient(180deg, #f7f4ff 0%, #ffffff 100%);
    border-top: 1px solid var(--hy-border);
    border-bottom: 1px solid var(--hy-border);
}

.hy-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.hy-logo-tile {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e0f2;
    border-radius: 8px;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 12px 28px rgba(32,32,111,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hy-logo-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(32,32,111,0.12);
    border-color: rgba(156,79,230,0.38);
}

.hy-logo-tile img {
    width: 100%;
    height: 70px;
    object-fit: contain;
}

.hy-services {
    background: #ffffff;
}

.hy-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.hy-service-card h3 {
    font-size: 1.08rem;
    color: var(--hy-navy);
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.hy-service-card p {
    color: var(--hy-muted);
    line-height: 1.7;
    font-size: 0.92rem;
    margin: 0;
}

.hy-quality {
    color: #ffffff;
    background:
        radial-gradient(circle at 84% 20%, rgba(156,79,230,0.32) 0%, transparent 38%),
        linear-gradient(135deg, #17165c 0%, #2535b5 55%, #7a4ed8 100%);
}

.hy-quality .hy-section-label,
.hy-quality .hy-section-title {
    color: #ffffff;
}

.hy-quality .hy-section-text {
    color: rgba(255,255,255,0.78);
}

.hy-quality-list {
    display: grid;
    gap: 0.9rem;
}

.hy-quality-list div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.15rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.88);
}

.hy-quality-list i {
    color: #ffffff;
}

.hy-contact {
    padding: 5rem 0;
    background: var(--hy-soft);
}

.hy-contact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--hy-border);
    border-radius: 12px;
    padding: 2.4rem;
    box-shadow: 0 18px 44px rgba(32,32,111,0.08);
}

.hy-contact-panel h2 {
    color: var(--hy-navy);
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hy-contact-panel p {
    color: var(--hy-muted);
    margin: 0;
}

.hy-contact-list {
    display: grid;
    gap: 0.85rem;
}

.hy-contact-list a,
.hy-contact-list span {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--hy-ink);
    text-decoration: none;
    line-height: 1.55;
}

.hy-contact-list i {
    color: var(--hy-purple);
    margin-top: 0.25rem;
}

.hy-policy {
    background:
        radial-gradient(circle at 92% 8%, rgba(156,79,230,0.12) 0%, transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
}

.hy-policy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 1.4rem;
    align-items: start;
}

.hy-policy-stack {
    display: grid;
    gap: 1rem;
}

.hy-policy-card,
.hy-policy-aside {
    border: 1px solid var(--hy-border);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(32,32,111,0.07);
    padding: 1.5rem;
}

.hy-policy-card h2,
.hy-policy-card h3,
.hy-policy-aside h3 {
    color: var(--hy-navy);
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.hy-policy-card p,
.hy-policy-card li,
.hy-policy-aside p,
.hy-policy-aside li {
    color: var(--hy-muted);
    line-height: 1.75;
}

.hy-policy-card ul,
.hy-policy-aside ul {
    margin: 0;
    padding-left: 1.15rem;
}

.hy-policy-aside {
    position: sticky;
    top: 110px;
}

.hy-payment-image {
    width: 100%;
    max-width: 520px;
    display: block;
    margin: 0 auto 1.2rem;
    border: 1px solid var(--hy-border);
    border-radius: 8px;
    background: #ffffff;
    padding: 0.75rem;
}

.hy-policy-note {
    border-left: 4px solid var(--hy-purple);
    background: var(--hy-soft);
    padding: 1rem 1.15rem;
    border-radius: 8px;
}

.hy-footer {
    background: #17165c;
    color: rgba(255,255,255,0.78);
}

.hy-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.62fr 0.82fr 0.82fr 1.25fr;
    gap: 2rem;
    padding: 4rem 0 2rem;
}

.hy-footer-logo {
    width: 260px;
    max-width: 100%;
    background: #ffffff;
    border-radius: 6px;
    padding: 0.55rem;
}

.hy-footer-logo-stacked {
    width: 320px;
    max-height: 210px;
    object-fit: contain;
    padding: 0.45rem 0.65rem;
}

.hy-footer-brand p {
    margin-top: 1rem;
    line-height: 1.8;
}

.hy-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hy-footer-col h5 {
    color: #ffffff;
    margin-bottom: 0.55rem;
}

.hy-footer-col a,
.hy-footer-col span {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    line-height: 1.55;
}

.hy-footer-col a:hover {
    color: #ffffff;
}

.hy-footer-contact i {
    color: #cfa8ff;
    width: 18px;
}

.hy-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.hy-footer-bottom p {
    margin: 0;
}

.hy-footer-payment {
    width: min(360px, 42vw);
    max-height: 54px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    background: rgba(255,255,255,0.96);
    padding: 0.35rem 0.65rem;
}

@media (max-width: 1199px) {
    .hy-logo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .hy-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hy-brand {
        min-width: auto;
    }
    .hy-logo-img {
        height: 64px;
        max-width: 330px;
    }
    .hy-main-nav {
        top: 94px;
        background: #ffffff;
        box-shadow: 0 18px 34px rgba(24,39,114,0.14);
    }
    .hy-header-promise,
    .hy-nav-actions {
        display: none;
    }
    .hy-main-nav .nav-links > li > a {
        color: var(--hy-navy);
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        padding: 0 1rem;
        border-bottom: 1px solid var(--hy-border);
        font-size: 0.92rem;
        font-weight: 800;
        text-align: left;
    }
    .hy-main-nav .nav-links {
        align-items: stretch;
    }
    .hy-main-nav .nav-links > li {
        width: 100%;
    }
    .hy-nav-cta-item {
        margin-left: 0;
    }
    .hy-nav-cta {
        justify-content: flex-start !important;
        border-radius: 0;
        margin: 0;
        border: 0;
        background: var(--hy-soft) !important;
        color: var(--hy-navy) !important;
    }
    .hy-mobile-translate-item {
        display: block;
        width: 100%;
        position: relative;
    }
    .hy-mobile-translate {
        border-bottom: 1px solid var(--hy-border);
    }
    .hy-main-nav .nav-links > li > a:hover,
    .hy-main-nav .nav-links > li > a.active {
        color: #ffffff !important;
        background: linear-gradient(90deg, var(--hy-blue), var(--hy-purple)) !important;
    }
    .hy-hero {
        padding: 4rem 0;
    }
    .hy-info-grid,
    .hy-contact-panel,
    .hy-policy-layout,
    .hy-footer-grid {
        grid-template-columns: 1fr;
    }
    .hy-policy-aside {
        position: static;
    }
}

@media (max-width: 767px) {
    .hy-logo-img {
        height: 54px;
        max-width: 270px;
    }
    .hy-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hy-service-grid,
    .hy-stats {
        grid-template-columns: 1fr;
    }
    .hy-hero-card {
        min-height: 330px;
        padding: 1.6rem;
    }
    .hy-hero-card img {
        width: 150px;
        height: 150px;
    }
    .hy-contact-panel {
        padding: 1.5rem;
    }
    .hy-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .hy-footer-payment {
        width: min(100%, 340px);
    }
    .hy-main-nav {
        top: 86px;
    }
}


/* FDE redesign - orange / blue brand system */
:root {
    --fde-orange: #f45b12;
    --fde-orange-dark: #d94408;
    --fde-blue: #103f8f;
    --fde-blue-dark: #06245c;
    --fde-ink: #122033;
    --fde-muted: #5f6f84;
    --fde-light: #f5f8fc;
    --fde-border: #dfe7f1;
    --fde-white: #ffffff;
}

body {
    color: var(--fde-ink);
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.fde-topbar {
    background: var(--fde-blue-dark);
    color: rgba(255,255,255,0.86);
    font-size: 0.9rem;
}

.fde-topbar-inner,
.fde-topbar-left,
.fde-topbar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.fde-topbar-inner {
    justify-content: space-between;
    min-height: 42px;
}

.fde-topbar a,
.fde-topbar span {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    white-space: nowrap;
}

.fde-topbar i {
    color: var(--fde-orange);
    margin-right: 0.4rem;
}

.fde-header {
    position: relative;
    z-index: 20;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(6,36,92,0.08);
}

.fde-header-main {
    min-height: 102px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.fde-brand {
    display: inline-flex;
    align-items: center;
    min-width: 250px;
}

.fde-brand img {
    width: 223px;
    max-width: 100%;
    height: auto;
    display: block;
}

.fde-header-badges {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.fde-header-badges div {
    min-height: 54px;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(16,63,143,0.12);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.fde-header-badges strong,
.fde-header-badges span {
    display: block;
    line-height: 1.15;
}

.fde-header-badges strong {
    color: var(--fde-orange);
    font-size: 1.1rem;
    font-weight: 900;
}

.fde-header-badges span {
    color: var(--fde-muted);
    font-size: 0.78rem;
    margin-top: 0.25rem;
}

.fde-inquiry,
.fde-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0 1.2rem;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fde-inquiry,
.fde-btn-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--fde-orange), var(--fde-orange-dark));
    border: 1px solid rgba(244,91,18,0.35);
    box-shadow: 0 12px 24px rgba(244,91,18,0.22);
}

.fde-btn-light {
    color: var(--fde-blue-dark) !important;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.7);
}

.fde-inquiry:hover,
.fde-btn:hover {
    transform: translateY(-1px);
}

.fde-menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: var(--fde-blue-dark);
    font-size: 1.8rem;
}

.fde-nav {
    background: linear-gradient(90deg, var(--fde-blue-dark), var(--fde-blue));
}

.fde-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.fde-nav-links > li > a {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 0 1.35rem;
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.93rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.fde-nav-links > li > a:hover,
.fde-nav-links > li > a.active {
    background: var(--fde-orange);
    color: #ffffff !important;
}

.fde-hero,
.fde-page-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 18%, rgba(244,91,18,0.34), transparent 28%),
        linear-gradient(135deg, #06245c 0%, #103f8f 58%, #f45b12 145%);
}

.fde-hero {
    padding: 6rem 0;
}

.fde-page-hero {
    padding: 4.6rem 0;
}

.fde-hero:after,
.fde-page-hero:after {
    content: "";
    position: absolute;
    right: -10vw;
    bottom: -18vw;
    width: 42vw;
    height: 42vw;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.fde-hero .container,
.fde-page-hero .container {
    position: relative;
    z-index: 1;
}

.fde-kicker,
.fde-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fde-orange);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fde-hero .fde-kicker,
.fde-page-hero .fde-kicker {
    color: #ffd2bd;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
}

.fde-hero h1,
.fde-page-hero h1 {
    max-width: 850px;
    margin: 1.1rem 0 1rem;
    color: #ffffff;
    font-size: clamp(2.35rem, 4.8vw, 4.9rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
}

.fde-page-hero h1 {
    font-size: clamp(2.1rem, 3.6vw, 3.8rem);
}

.fde-hero p,
.fde-page-hero p {
    max-width: 760px;
    color: rgba(255,255,255,0.86);
    font-size: 1.08rem;
    line-height: 1.75;
}

.fde-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.fde-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin-top: 2rem;
}

.fde-hero-stats div {
    padding: 1rem;
    border-left: 3px solid var(--fde-orange);
    background: rgba(255,255,255,0.08);
}

.fde-hero-stats strong,
.fde-hero-stats span {
    display: block;
}

.fde-hero-stats strong {
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 900;
}

.fde-hero-stats span {
    color: rgba(255,255,255,0.74);
    font-size: 0.86rem;
}

.fde-chip-card {
    position: relative;
    min-height: 430px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 30px 70px rgba(0,0,0,0.22);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.fde-chip-board {
    position: relative;
    width: min(320px, 82vw);
    aspect-ratio: 1;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.24);
}

.fde-chip-board:before,
.fde-chip-board:after {
    content: "";
    position: absolute;
    inset: 55px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 16px;
}

.fde-chip-board span {
    position: absolute;
    width: 86px;
    height: 3px;
    background: #ffb38f;
}

.fde-chip-board span:nth-child(1) { left: -22px; top: 92px; }
.fde-chip-board span:nth-child(2) { right: -22px; top: 142px; }
.fde-chip-board span:nth-child(3) { left: -22px; bottom: 112px; }
.fde-chip-board span:nth-child(4) { right: -22px; bottom: 82px; }

.fde-chip-core {
    position: absolute;
    inset: 100px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(6,36,92,0.28);
}

.fde-chip-core img {
    width: 72px;
    height: 72px;
}

.fde-card-note {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(6,36,92,0.72);
    color: #ffffff;
}

.fde-card-note strong,
.fde-card-note span {
    display: block;
}

.fde-card-note span {
    color: rgba(255,255,255,0.76);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.fde-section {
    padding: 5rem 0;
}

.fde-light-section,
.fde-linecard-preview {
    background: var(--fde-light);
}

.fde-section h2,
.fde-section-title {
    color: var(--fde-blue-dark);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.15;
    font-weight: 900;
    margin: 0.7rem 0 1.1rem;
}

.fde-section p,
.fde-section-text {
    color: var(--fde-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.fde-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--fde-orange);
    font-weight: 900;
    text-decoration: none;
}

.fde-section-head {
    max-width: 820px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.fde-metric-grid,
.fde-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.fde-service-grid-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fde-metric-grid div,
.fde-service-card,
.fde-contact-card,
.fde-profile-card {
    border: 1px solid var(--fde-border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(6,36,92,0.07);
}

.fde-metric-grid div,
.fde-service-card {
    padding: 1.35rem;
}

.fde-metric-grid i,
.fde-service-card i {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(244,91,18,0.1);
    color: var(--fde-orange);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.fde-metric-grid strong,
.fde-metric-grid span,
.fde-service-card h3,
.fde-service-card p {
    display: block;
}

.fde-metric-grid strong,
.fde-service-card h3 {
    color: var(--fde-blue-dark);
    font-size: 1.08rem;
    font-weight: 900;
    margin-bottom: 0.45rem;
}

.fde-metric-grid span,
.fde-service-card p {
    color: var(--fde-muted);
    line-height: 1.65;
}

.fde-logo-grid .hy-logo-tile {
    border: 1px solid var(--fde-border);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(6,36,92,0.05);
}

.fde-center-action {
    text-align: center;
    margin-top: 2rem;
}

.fde-cta {
    padding: 3.3rem 0;
    color: #ffffff;
    background: linear-gradient(90deg, var(--fde-blue-dark), var(--fde-blue));
}

.fde-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.fde-cta span {
    color: #ffb38f;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fde-cta h2 {
    color: #ffffff;
    margin: 0.35rem 0 0;
    font-weight: 900;
}

.fde-profile-card {
    padding: 1.4rem;
}

.fde-profile-card img {
    width: 92px;
    height: 92px;
    display: block;
    margin-bottom: 1.2rem;
}

.fde-profile-card div {
    padding: 1rem 0;
    border-top: 1px solid var(--fde-border);
}

.fde-profile-card strong,
.fde-profile-card span {
    display: block;
}

.fde-profile-card strong {
    color: var(--fde-orange);
    font-size: 1.7rem;
    font-weight: 900;
}

.fde-profile-card span {
    color: var(--fde-muted);
}

.fde-corporate-band {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(110deg, rgba(6,36,92,0.96) 0%, rgba(10,55,127,0.92) 58%, rgba(244,91,18,0.88) 145%),
        #06245c;
}

.fde-corporate-band:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(255,255,255,0.14), transparent 32%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 26px);
    pointer-events: none;
}

.fde-corporate-band .container {
    position: relative;
}

.fde-corporate-band h2,
.fde-corporate-band p {
    color: #ffffff;
}

.fde-corporate-band p {
    color: rgba(255,255,255,0.78);
}

.fde-capability-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.fde-capability-strip div {
    min-height: 150px;
    padding: 1.6rem 1.2rem;
    border-right: 1px solid rgba(255,255,255,0.18);
}

.fde-capability-strip div:last-child {
    border-right: 0;
}

.fde-capability-strip strong,
.fde-capability-strip span {
    display: block;
}

.fde-capability-strip strong {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.fde-capability-strip span {
    color: rgba(255,255,255,0.78);
    line-height: 1.55;
}

.fde-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.fde-process-grid div {
    position: relative;
    min-height: 245px;
    padding: 1.7rem 1.4rem;
    border: 1px solid var(--fde-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(6,36,92,0.07);
}

.fde-process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1.1rem;
    border-radius: 50%;
    background: var(--fde-orange);
    color: #ffffff;
    font-weight: 900;
}

.fde-process-grid h3 {
    color: var(--fde-blue-dark);
    font-size: 1.08rem;
    font-weight: 900;
    margin-bottom: 0.55rem;
}

.fde-process-grid p {
    color: var(--fde-muted);
    line-height: 1.65;
    margin: 0;
}

.fde-about-cta {
    padding: 3rem 0;
    background: #f7f8fa;
}

.fde-about-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(6,36,92,0.08);
}

.fde-about-cta span {
    color: var(--fde-orange);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fde-about-cta h2 {
    margin: 0.35rem 0 0;
    color: var(--fde-blue-dark);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 900;
}

.fde-quality-list {
    display: grid;
    gap: 0.9rem;
}

.fde-quality-list div {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--fde-border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--fde-blue-dark);
    font-weight: 800;
}

.fde-quality-list i {
    color: var(--fde-orange);
    margin-top: 0.2rem;
}

.fde-subpage-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
}

.fde-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 2.2rem;
    align-items: center;
}

.fde-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.fde-tag-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(244,91,18,0.2);
    border-radius: 999px;
    background: rgba(244,91,18,0.08);
    color: var(--fde-blue-dark);
    font-weight: 850;
}

.fde-info-panel,
.fde-quality-panel {
    border: 1px solid var(--fde-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(6,36,92,0.08);
    padding: 1.7rem;
}

.fde-info-panel h3,
.fde-quality-panel h3 {
    margin: 0 0 1rem;
    color: var(--fde-blue-dark);
    font-size: 1.2rem;
    font-weight: 900;
}

.fde-check-list {
    display: grid;
    gap: 0.78rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fde-check-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: var(--fde-muted);
    line-height: 1.55;
}

.fde-check-list i {
    color: var(--fde-orange);
    margin-top: 0.25rem;
}

.fde-feature-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.fde-feature-row > div {
    min-height: 230px;
    padding: 1.45rem;
    border: 1px solid var(--fde-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(6,36,92,0.07);
}

.fde-feature-row i {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(244,91,18,0.1);
    color: var(--fde-orange);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.fde-feature-row h3 {
    margin: 0 0 0.55rem;
    color: var(--fde-blue-dark);
    font-size: 1.06rem;
    font-weight: 900;
}

.fde-feature-row p {
    margin: 0;
    color: var(--fde-muted);
    line-height: 1.65;
}

.fde-process-list {
    display: grid;
    gap: 0.95rem;
}

.fde-process-list > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem 1rem;
    align-items: start;
    padding: 1.15rem;
    border: 1px solid var(--fde-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(6,36,92,0.06);
}

.fde-process-list span {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--fde-orange);
    color: #ffffff;
    font-weight: 900;
}

.fde-process-list h3 {
    margin: 0;
    color: var(--fde-blue-dark);
    font-size: 1.08rem;
    font-weight: 900;
}

.fde-process-list p {
    margin: 0;
    color: var(--fde-muted);
    line-height: 1.6;
}

.fde-risk-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.fde-risk-grid div {
    padding: 1rem;
    border-radius: 12px;
    background: var(--fde-light);
    border-left: 3px solid var(--fde-orange);
}

.fde-risk-grid strong,
.fde-risk-grid span {
    display: block;
}

.fde-risk-grid strong {
    color: var(--fde-blue-dark);
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.fde-risk-grid span {
    color: var(--fde-muted);
    line-height: 1.55;
}

.fde-contact-section {
    background: var(--fde-light);
}

.fde-contact-card {
    height: 100%;
    padding: 1.6rem;
}

.fde-contact-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.fde-contact-list a,
.fde-contact-list span {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--fde-blue-dark);
    text-decoration: none;
    font-weight: 800;
}

.fde-contact-list i {
    color: var(--fde-orange);
}

.fde-form-submit {
    width: 100%;
    border: 0;
}

.fde-footer {
    padding: 4.5rem 0 1.4rem;
    background: #071d49;
    color: rgba(255,255,255,0.76);
}

.fde-footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(160px, 1fr));
    gap: 2.2rem;
}

.fde-footer-brand img {
    width: 210px;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: #ffffff;
    margin-bottom: 1rem;
}

.fde-footer h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.fde-footer a,
.fde-footer span,
.fde-footer p {
    color: rgba(255,255,255,0.76);
    text-decoration: none;
    line-height: 1.75;
}

.fde-footer-col {
    display: grid;
    align-content: start;
    gap: 0.35rem;
}

.fde-footer-contact i {
    color: var(--fde-orange);
    margin-right: 0.45rem;
}

.fde-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.92rem;
}

@media (max-width: 991px) {
    .fde-topbar-right,
    .fde-header-badges,
    .fde-inquiry {
        display: none;
    }

    .fde-header-main {
        min-height: 88px;
    }

    .fde-brand {
        min-width: 0;
    }

    .fde-brand img {
        width: 210px;
    }

    .fde-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .fde-nav {
        display: none;
        background: #ffffff;
        border-top: 1px solid var(--fde-border);
    }

    .fde-nav.open {
        display: block;
    }

    .fde-nav-links {
        display: grid;
        padding: 0.7rem 0;
    }

    .fde-nav-links > li > a {
        min-height: 52px;
        justify-content: center;
        color: var(--fde-blue-dark) !important;
        border-bottom: 1px solid var(--fde-border);
    }

    .fde-nav-links > li > a:hover,
    .fde-nav-links > li > a.active {
        background: rgba(244,91,18,0.1);
        color: var(--fde-orange) !important;
    }

    .fde-hero,
    .fde-page-hero {
        padding: 4rem 0;
    }

    .fde-chip-card {
        min-height: 360px;
    }

    .fde-hero-stats,
    .fde-metric-grid,
    .fde-service-grid,
    .fde-service-grid-large,
    .fde-capability-strip,
    .fde-process-grid,
    .fde-footer-grid {
        grid-template-columns: 1fr;
    }

    .fde-cta .container,
    .fde-about-cta .container,
    .fde-footer-bottom {
        display: grid;
    }

    .fde-capability-strip div {
        min-height: 120px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }

    .fde-capability-strip div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {
    .fde-topbar-left {
        flex-wrap: wrap;
        gap: 0.6rem;
        padding: 0.45rem 0;
    }

    .fde-brand img {
        width: 190px;
    }

    .fde-hero h1,
    .fde-page-hero h1 {
        font-size: 2.15rem;
        overflow-wrap: anywhere;
    }

    .fde-section {
        padding: 3.6rem 0;
    }

    .fde-section h2,
    .fde-service-card h3,
    .fde-process-grid h3,
    .fde-profile-card span {
        overflow-wrap: anywhere;
    }

    .fde-about-cta .container,
    .fde-process-grid div,
    .fde-service-card {
        padding: 1.25rem;
    }
}

/* FDE corporate visual refinement */
.fde-topbar {
    background: #071d49;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fde-topbar-inner {
    min-height: 36px;
    font-size: 0.82rem;
}

.fde-header {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 24px rgba(7,29,73,0.08);
}

.fde-header-main {
    min-height: 86px;
    gap: 1.6rem;
}

.fde-brand {
    min-width: 230px;
}

.fde-brand img {
    width: 214px;
}

.fde-header .fde-nav {
    flex: 1;
    background: transparent;
}

.fde-nav-links {
    justify-content: center;
    gap: 0.25rem;
}

.fde-nav-links > li > a {
    min-height: 44px;
    padding: 0 0.9rem;
    border-radius: 6px;
    color: var(--fde-blue-dark) !important;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
}

.fde-nav-links > li > a:hover,
.fde-nav-links > li > a.active {
    background: rgba(244,91,18,0.08);
    color: var(--fde-orange) !important;
}

.fde-inquiry {
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 5px;
    box-shadow: none;
}

.fde-corporate-hero {
    min-height: 650px;
    padding: 5.2rem 0 4.5rem;
    background:
        linear-gradient(90deg, rgba(7,29,73,0.96) 0%, rgba(9,50,113,0.94) 48%, rgba(9,50,113,0.68) 100%),
        url("../images/quality.jpg") center right / cover no-repeat;
}

.fde-corporate-hero:after {
    width: 34vw;
    height: 34vw;
    right: -12vw;
    bottom: -16vw;
    background: rgba(244,91,18,0.16);
}

.fde-corporate-hero .fde-kicker {
    color: #ffd7c5;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
}

.fde-corporate-hero h1 {
    max-width: 780px;
    font-size: clamp(2.6rem, 4.6vw, 4.5rem);
    line-height: 1.08;
}

.fde-corporate-hero p {
    max-width: 690px;
    font-size: 1.08rem;
    color: rgba(255,255,255,0.82);
}

.fde-corporate-hero .fde-btn-light {
    border-color: rgba(255,255,255,0.9);
}

.fde-hero-stats {
    max-width: 650px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
}

.fde-hero-stats div {
    background: transparent;
    border-left: 0;
    padding: 1.05rem 1.25rem;
}

.fde-hero-stats div + div {
    border-left: 1px solid rgba(255,255,255,0.16);
}

.fde-hero-stats strong {
    color: #ffffff;
    font-size: 1.65rem;
}

.fde-hero-media {
    position: relative;
    min-height: 500px;
    border-radius: 4px;
    overflow: hidden;
    background: #0f356f;
    box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}

.fde-hero-media:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7,29,73,0.08), rgba(7,29,73,0.78));
}

.fde-hero-media img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
}

.fde-hero-media-panel {
    position: absolute;
    z-index: 2;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
    padding: 1.1rem 1.2rem;
    background: rgba(7,29,73,0.88);
    border-left: 4px solid var(--fde-orange);
    color: #ffffff;
}

.fde-hero-media-panel strong,
.fde-hero-media-panel span {
    display: block;
}

.fde-hero-media-panel strong {
    font-size: 1.05rem;
    font-weight: 900;
}

.fde-hero-media-panel span {
    color: rgba(255,255,255,0.78);
    margin-top: 0.25rem;
}

.fde-floating-proof {
    position: absolute;
    z-index: 2;
    top: 1.4rem;
    left: 1.4rem;
    display: grid;
    gap: 0.7rem;
}

.fde-floating-proof div {
    min-width: 145px;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.94);
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(7,29,73,0.2);
}

.fde-floating-proof strong,
.fde-floating-proof span {
    display: block;
}

.fde-floating-proof strong {
    color: var(--fde-orange);
    font-size: 1.25rem;
    font-weight: 900;
}

.fde-floating-proof span {
    color: var(--fde-muted);
    font-size: 0.82rem;
}

.fde-section {
    padding: 5.6rem 0;
}

.fde-section-head {
    margin-bottom: 3rem;
}

.fde-metric-grid div,
.fde-service-card,
.fde-contact-card,
.fde-profile-card {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(7,29,73,0.06);
}

.fde-metric-grid div,
.fde-service-card {
    padding: 1.65rem;
}

.fde-service-card:hover,
.fde-metric-grid div:hover {
    border-color: rgba(244,91,18,0.32);
}

.fde-footer {
    background: #06183c;
}

@media (max-width: 991px) {
    .fde-header-main {
        min-height: 78px;
    }

    .fde-header .fde-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        background: #ffffff;
        border-top: 1px solid var(--fde-border);
        box-shadow: 0 18px 35px rgba(7,29,73,0.12);
    }

    .fde-header .fde-nav.open {
        display: block;
    }

    .fde-nav-links {
        display: grid;
        padding: 0.7rem 1rem;
    }

    .fde-corporate-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .fde-hero-media {
        min-height: 360px;
    }

    .fde-hero-media img {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .fde-topbar {
        display: none;
    }

    .fde-brand img {
        width: 176px;
    }

    .fde-corporate-hero h1 {
        font-size: 2.2rem;
    }

    .fde-hero-actions {
        display: grid;
    }

    .fde-hero-stats {
        grid-template-columns: 1fr;
    }

    .fde-hero-stats div + div {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.16);
    }
}

/* FDE reference-style redesign: orange primary, minimal blue */
.fde-topbar {
    background: #f4f4f4;
    border-bottom: 1px solid #e8e8e8;
    color: #333;
}

.fde-topbar-inner {
    min-height: 42px;
    font-size: 0.88rem;
}

.fde-topbar a,
.fde-topbar span {
    color: #333;
}

.fde-topbar i {
    color: var(--fde-orange);
}

.fde-topbar-left {
    flex: 1;
}

.fde-topbar-left > span {
    margin-right: auto;
    font-weight: 700;
}

.fde-top-search {
    display: flex;
    align-items: center;
    width: 330px;
    height: 34px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
}

.fde-top-search input {
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 0.9rem;
    color: #333;
    font-size: 0.86rem;
}

.fde-top-search button {
    width: 48px;
    height: 100%;
    border: 0;
    background: var(--fde-orange);
    color: #fff;
}

.fde-language-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.fde-language-switch summary {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 0.9rem;
    border: 1px solid rgba(244,91,18,0.2);
    border-radius: 999px;
    background: #fff3ec;
    color: var(--fde-orange);
    font-size: 0.84rem;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.fde-language-switch summary::-webkit-details-marker {
    display: none;
}

.fde-language-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1400;
    min-width: 145px;
    padding: 0.45rem;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(6,36,92,0.14);
}

.fde-language-menu button,
.fde-mobile-language-switch button {
    width: 100%;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #222;
    font-weight: 850;
    text-align: left;
    padding: 0.55rem 0.7rem;
}

.fde-language-menu button:hover,
.fde-language-menu button.is-active,
.fde-mobile-language-switch button:hover,
.fde-mobile-language-switch button.is-active {
    background: var(--fde-orange);
    color: #ffffff;
}

.fde-mobile-language-item {
    display: none;
}

.fde-mobile-language-switch {
    display: grid;
    gap: 0.65rem;
    width: 100%;
    padding: 1rem 1.15rem 1.2rem;
    border-top: 1px solid #eee;
    background: #fff7f2;
}

.fde-mobile-language-switch span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--fde-blue-dark);
    font-weight: 900;
    text-transform: uppercase;
}

.fde-mobile-language-switch div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.fde-google-translate-element,
.goog-te-banner-frame,
.skiptranslate iframe {
    display: none !important;
}

body {
    top: 0 !important;
}

.fde-header {
    background: #ffffff;
    box-shadow: none;
    border-bottom: 1px solid #eeeeee;
}

.fde-header-main {
    min-height: 96px;
}

.fde-brand img {
    width: 190px;
}

.fde-nav-links {
    gap: 0.15rem;
}

.fde-nav-links > li > a {
    min-height: 48px;
    padding: 0 0.95rem;
    border-radius: 0;
    color: #222 !important;
    font-size: 0.88rem;
    font-weight: 900;
    position: relative;
}

.fde-nav-links > li > a:after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 4px;
    height: 3px;
    background: transparent;
}

.fde-nav-links > li > a:hover,
.fde-nav-links > li > a.active {
    background: transparent;
    color: var(--fde-orange) !important;
}

.fde-nav-links > li > a:hover:after,
.fde-nav-links > li > a.active:after {
    background: var(--fde-orange);
}

.fde-inquiry {
    min-height: 40px;
    border-radius: 999px;
    background: #fff3ec;
    border: 1px solid rgba(244,91,18,0.22);
    color: var(--fde-orange) !important;
    box-shadow: none;
}

.fde-reference-hero {
    min-height: 650px;
    padding: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(26,26,26,0.50), rgba(244,91,18,0.16)), #151515;
}

.fde-reference-hero:after {
    display: none;
}

.fde-circuit-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.30) 46%, rgba(244,91,18,0.10) 100%),
        radial-gradient(circle at 62% 45%, rgba(244,91,18,0.32), transparent 28%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 18px),
        linear-gradient(135deg, #1d2430 0%, #303744 48%, #0d1729 100%);
}

.fde-circuit-bg:before,
.fde-circuit-bg:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
}

.fde-circuit-bg:before {
    width: 520px;
    height: 520px;
    right: 8%;
    top: 12%;
    background: rgba(244,91,18,0.08);
}

.fde-circuit-bg:after {
    width: 280px;
    height: 280px;
    right: 20%;
    bottom: 10%;
}

.fde-reference-copy {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin-left: 4vw;
}

.fde-reference-hero .fde-kicker {
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffd4bf;
    letter-spacing: 0.12em;
}

.fde-reference-hero h1 {
    margin: 1.4rem 0 1.2rem;
    color: #fff;
    font-size: clamp(3rem, 5.2vw, 5.8rem);
    line-height: 1.05;
    font-weight: 900;
}

.fde-reference-hero p {
    max-width: 680px;
    color: rgba(255,255,255,0.82);
    font-size: 1.08rem;
    line-height: 1.8;
}

.fde-reference-hero .fde-btn-light {
    background: transparent;
    border-color: rgba(255,255,255,0.72);
    color: #fff !important;
}

.fde-hero-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.fde-hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
}

.fde-hero-dots span:nth-child(2) {
    background: var(--fde-orange);
}

.fde-product-style {
    background: #ffffff;
    padding-top: 4.6rem;
}

.fde-product-style .fde-section-label,
.fde-about-reference .fde-section-label,
.fde-service-reference .fde-section-label {
    color: var(--fde-orange);
}

.fde-product-style h2,
.fde-about-reference h2,
.fde-service-reference h2 {
    color: #111;
    font-size: clamp(2.3rem, 3.8vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.fde-product-style h2:after,
.fde-service-reference h2:after {
    content: "";
    display: block;
    width: 120px;
    height: 7px;
    margin-top: 0.55rem;
    background: var(--fde-orange);
}

.fde-section-intro {
    max-width: 640px;
    margin-left: auto;
    color: #505050;
    line-height: 1.8;
}

.fde-brand-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
}

.fde-brand-card {
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 18px;
    background: #f6f7f9;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.fde-brand-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244,91,18,0.38);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}

.fde-brand-card > img {
    width: 100%;
    height: 82px;
    object-fit: contain;
    padding: 1rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.fde-chip-icon {
    display: grid;
    place-items: center;
    height: 180px;
    margin: 1.2rem 1.2rem 0.8rem;
    background: #ffffff;
}

.fde-chip-icon img {
    max-width: 76%;
    max-height: 150px;
    object-fit: contain;
}

.fde-brand-card h3 {
    min-height: 52px;
    margin: 0 1rem;
    color: #222;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fde-brand-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 42px;
    margin: 0.8rem 0 1.4rem;
    padding: 0 1.6rem;
    border-radius: 999px;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    font-weight: 800;
}

.fde-brand-card a i {
    color: var(--fde-orange);
}

.fde-about-reference {
    position: relative;
    background: linear-gradient(135deg, #f7f8fa, #ffffff);
    overflow: hidden;
}

.fde-about-reference:before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(244,91,18,0.035) 0 1px, transparent 1px 24px);
}

.fde-about-reference .container {
    position: relative;
}

.fde-number-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.fde-number-grid div {
    min-height: 210px;
    padding: 2rem;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.fde-number-grid i {
    color: var(--fde-orange);
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
}

.fde-number-grid strong,
.fde-number-grid span {
    display: block;
}

.fde-number-grid strong {
    color: #111;
    font-size: 2.4rem;
    font-weight: 900;
}

.fde-number-grid span {
    color: #333;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.fde-service-reference {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.44)),
        radial-gradient(circle at 52% 30%, rgba(244,91,18,0.34), transparent 28%),
        #151515;
    color: #ffffff;
}

.fde-service-reference h2 {
    color: #ffffff;
}

.fde-service-reference h2:after {
    margin-left: auto;
    margin-right: auto;
}

.fde-service-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    max-width: 980px;
    margin: 0 auto;
}

.fde-service-pill-grid div {
    min-height: 230px;
    padding: 2.2rem 1.8rem;
    border-radius: 22px;
    background: #ffffff;
    color: #111;
    text-align: center;
}

.fde-service-pill-grid i {
    color: var(--fde-orange);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.fde-service-pill-grid h3 {
    font-size: 1.18rem;
    font-weight: 900;
    text-transform: uppercase;
}

.fde-service-pill-grid p {
    color: #555;
    margin: 0;
}

.fde-btn-primary,
.fde-inquiry {
    background: var(--fde-orange) !important;
    border-color: var(--fde-orange) !important;
    color: #ffffff !important;
}

@media (max-width: 991px) {
    .fde-top-search,
    .fde-topbar-right {
        display: none;
    }

    .fde-mobile-language-item {
        display: block;
    }

    .fde-reference-hero {
        min-height: 560px;
    }

    .fde-reference-copy {
        margin-left: 0;
    }

    .fde-brand-card-grid,
    .fde-number-grid,
    .fde-service-pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .fde-topbar {
        display: none;
    }

    .fde-reference-hero {
        min-height: 560px;
        padding: 4rem 0;
    }

    .fde-reference-hero h1 {
        font-size: 2.7rem;
    }

    .fde-brand-card-grid,
    .fde-number-grid,
    .fde-service-pill-grid {
        grid-template-columns: 1fr;
    }
}

/* Final FDE orange-first polish */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.fde-header {
    background: #ffffff !important;
}

.fde-header .fde-nav,
.fde-nav {
    background: transparent !important;
}

.fde-nav-links > li > a:hover,
.fde-nav-links > li > a.active {
    background: transparent !important;
    color: var(--fde-orange) !important;
}

.fde-nav-links > li > a:after {
    background: transparent !important;
}

.fde-nav-links > li > a:hover:after,
.fde-nav-links > li > a.active:after {
    background: var(--fde-orange) !important;
}

.fde-page-hero {
    background:
        linear-gradient(90deg, rgba(16,16,16,0.78), rgba(244,91,18,0.30)),
        radial-gradient(circle at 78% 24%, rgba(244,91,18,0.42), transparent 32%),
        #151515 !important;
}

.fde-page-hero:after {
    background: rgba(244,91,18,0.12) !important;
}

@media (max-width: 991px) {
    .fde-header,
    .fde-reference-hero,
    .fde-product-style,
    .fde-about-reference,
    .fde-service-reference {
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .fde-header .container {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .fde-header-main {
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 92px !important;
        justify-content: space-between;
        gap: 1rem;
    }

    .fde-brand {
        min-width: 0 !important;
        flex: 0 1 auto;
    }

    .fde-brand img {
        width: 180px !important;
    }

    .fde-inquiry {
        display: none !important;
    }

    .fde-menu-toggle {
        position: fixed;
        top: 22px;
        right: 18px;
        z-index: 999;
        transform: none;
        display: inline-flex !important;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        background: #fff3ec;
        color: var(--fde-orange);
        border-color: rgba(244,91,18,0.25);
        border-radius: 8px;
    }

    .fde-header .fde-nav {
        left: 0;
        right: 0;
        top: 100%;
        width: 100%;
    }

    .fde-reference-copy,
    .fde-reference-hero p {
        width: 100% !important;
        max-width: calc(100vw - 48px) !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .fde-reference-hero h1 {
        max-width: calc(100vw - 48px) !important;
        font-size: clamp(2.15rem, 9vw, 3.1rem);
        overflow-wrap: break-word;
    }

    .fde-reference-hero .fde-kicker {
        font-size: 0.76rem;
        letter-spacing: 0.07em;
        white-space: normal;
    }

    .fde-hero-actions {
        width: 100%;
        max-width: calc(100vw - 48px) !important;
    }

    .fde-hero-actions .fde-btn {
        width: 100%;
        max-width: calc(100vw - 48px) !important;
        justify-content: center;
    }

    .fde-section-intro {
        width: 100% !important;
        max-width: calc(100vw - 48px) !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 575px) {
    .fde-reference-hero .container,
    .fde-product-style .container,
    .fde-about-reference .container,
    .fde-service-reference .container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .fde-brand img {
        width: 188px !important;
        max-width: 72vw;
    }

    .fde-reference-hero {
        min-height: auto !important;
        padding: 4rem 0 4.5rem !important;
    }

    .fde-reference-hero h1 {
        max-width: calc(100vw - 48px) !important;
        font-size: 2.28rem !important;
        line-height: 1.16;
    }

    .fde-reference-copy,
    .fde-reference-hero p,
    .fde-section-intro,
    .fde-hero-actions,
    .fde-hero-actions .fde-btn {
        width: 100% !important;
        max-width: calc(100vw - 48px) !important;
    }

    .fde-product-style h2 {
        max-width: calc(100vw - 48px);
        font-size: 2.05rem;
        overflow-wrap: break-word;
    }
}

/* Clickable homepage banner carousel */
.fde-reference-copy {
    max-width: 920px !important;
}

.fde-reference-hero h1 {
    font-size: clamp(3rem, 4.6vw, 5rem) !important;
}

.fde-hero-bg {
    animation: none !important;
    opacity: 0;
    transition: opacity 0.75s ease, transform 6s ease;
    filter: saturate(1.12) contrast(1.05) hue-rotate(8deg);
}

.fde-hero-bg.is-active {
    opacity: 1;
    transform: scale(1);
}

.fde-hero-dots {
    position: absolute !important;
    left: 50% !important;
    bottom: 44px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: none;
    margin-top: 0;
    z-index: 5 !important;
}

.fde-hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.fde-hero-dots button.is-active,
.fde-hero-dots button:hover {
    background: var(--fde-orange);
    transform: scale(1.15);
}

.fde-hero-dots span {
    display: none;
}

@media (max-width: 991px) {
    .fde-hero-dots {
        left: 50% !important;
        bottom: 24px !important;
        transform: translateX(-50%) !important;
        max-width: none;
    }
}

/* Homepage line card logo wall */
.fde-linecard-home {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #ffffff 0%, #fff7f1 48%, #f7f9fc 100%);
}

.fde-linecard-home:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 86% 18%, rgba(244,91,18,0.10), transparent 28%),
        repeating-linear-gradient(135deg, rgba(6,36,92,0.035) 0 1px, transparent 1px 22px);
    pointer-events: none;
}

.fde-linecard-home .container {
    position: relative;
    z-index: 1;
}

.fde-linecard-home h2 {
    color: #111;
    font-size: clamp(2.25rem, 3.7vw, 3.8rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.fde-linecard-home h2:after {
    content: "";
    display: block;
    width: 120px;
    height: 7px;
    margin-top: 0.55rem;
    background: var(--fde-orange);
}

.fde-linecard-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.fde-linecard-logo-grid a {
    display: grid;
    place-items: center;
    min-height: 108px;
    padding: 1.25rem 1.1rem;
    border: 1px solid rgba(6,36,92,0.10);
    border-radius: 14px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 12px 30px rgba(7,29,73,0.05);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.fde-linecard-logo-grid a:hover {
    transform: translateY(-4px);
    border-color: rgba(244,91,18,0.36);
    box-shadow: 0 18px 44px rgba(244,91,18,0.10);
}

.fde-linecard-logo-grid img {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
}

.fde-linecard-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.25rem;
    margin-top: 2.1rem;
}

.fde-linecard-footer div {
    min-width: 180px;
    padding: 0.9rem 1.2rem;
    border-left: 4px solid var(--fde-orange);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(7,29,73,0.05);
}

.fde-linecard-footer strong,
.fde-linecard-footer span {
    display: block;
}

.fde-linecard-footer strong {
    color: var(--fde-orange);
    font-size: 1.6rem;
    line-height: 1;
}

.fde-linecard-footer span {
    margin-top: 0.25rem;
    color: #444;
    font-size: 0.9rem;
    font-weight: 800;
}

@media (max-width: 991px) {
    .fde-linecard-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .fde-linecard-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fde-linecard-logo-grid a {
        min-height: 92px;
        padding: 1rem;
    }

    .fde-linecard-footer {
        justify-content: stretch;
    }

    .fde-linecard-footer div,
    .fde-linecard-footer .fde-btn {
        width: 100%;
    }
}

@media (max-width: 991px) {
    body {
        overflow-x: hidden;
    }

    .fde-page-hero,
    .fde-section,
    .fde-corporate-band,
    .fde-about-cta {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden;
    }

    .fde-page-hero .container,
    .fde-section .container,
    .fde-corporate-band .container,
    .fde-about-cta .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .fde-page-hero h1,
    .fde-page-hero p,
    .fde-section h2,
    .fde-section p,
    .fde-service-card,
    .fde-profile-card,
    .fde-info-panel,
    .fde-quality-panel,
    .fde-feature-row > div,
    .fde-process-list > div,
    .fde-process-grid div,
    .fde-about-cta h2 {
        width: calc(100vw - 48px) !important;
        max-width: calc(100vw - 48px) !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: normal;
        box-sizing: border-box;
    }

    .fde-page-hero h1 {
        font-size: 1.9rem !important;
        line-height: 1.16 !important;
    }

    .fde-section h2 {
        font-size: 1.8rem !important;
        line-height: 1.18 !important;
    }

    .fde-two-col,
    .fde-feature-row,
    .fde-risk-grid {
        grid-template-columns: 1fr !important;
    }

    .fde-two-col {
        gap: 1.4rem;
    }

    .fde-subpage-hero {
        min-height: 300px;
    }
}

/* Mobile navigation dropdown fix */
@media (max-width: 991px) {
    .fde-header {
        position: relative !important;
        z-index: 1200 !important;
        overflow: visible !important;
        background: #ffffff !important;
    }

    .fde-header-main {
        position: relative !important;
        overflow: visible !important;
    }

    .fde-menu-toggle {
        position: static !important;
        flex: 0 0 46px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 46px !important;
        height: 46px !important;
        margin-left: auto !important;
        background: #fff3ec !important;
        color: var(--fde-orange) !important;
        border: 1px solid rgba(244,91,18,0.18) !important;
        border-radius: 8px !important;
        box-shadow: none !important;
    }

    .fde-header .fde-nav,
    .fde-nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1300 !important;
        display: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        background: #ffffff !important;
        border-top: 1px solid rgba(6,36,92,0.10) !important;
        box-shadow: 0 18px 36px rgba(6,36,92,0.16) !important;
    }

    .fde-header .fde-nav.open,
    .fde-nav.open {
        display: block !important;
    }

    .fde-nav-links {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        width: 100% !important;
        padding: 0.4rem 0 !important;
        margin: 0 !important;
        background: #ffffff !important;
    }

    .fde-nav-links > li {
        width: 100% !important;
    }

    .fde-nav-links > li > a {
        width: 100% !important;
        min-height: 48px !important;
        justify-content: center !important;
        padding: 0 1rem !important;
        border-radius: 0 !important;
        border-bottom: 1px solid rgba(6,36,92,0.08) !important;
        background: #ffffff !important;
        color: var(--fde-blue-dark) !important;
        opacity: 1 !important;
        text-shadow: none !important;
    }

    .fde-nav-links > li > a:hover,
    .fde-nav-links > li > a.active {
        background: rgba(244,91,18,0.08) !important;
        color: var(--fde-orange) !important;
    }

    .fde-page-hero,
    .fde-reference-hero {
        position: relative !important;
        z-index: 1 !important;
    }
}
