/* ==========================================================================
   CSS Variables & Globals (Premium Redesign)
   ========================================================================== */
   :root {
    /* Core Colors */
    --c-navy-dark: #050a14;
    --c-navy: #0a1120;
    --c-navy-light: #162442;
    --c-red: #d93832;
    --c-red-dark: #b82a25;
    --c-white: #ffffff;
    --c-gray-50: #f8fafc;
    --c-gray-100: #f1f5f9;
    --c-gray-200: #e2e8f0;
    --c-gray-400: #94a3b8;
    --c-gray-800: #1e293b;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #0a1120 0%, #162442 100%);
    --grad-accent: linear-gradient(135deg, #d93832 0%, #ff5e57 100%);
    --grad-glow: linear-gradient(135deg, rgba(217, 56, 50, 0.2) 0%, rgba(255, 94, 87, 0) 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', var(--font-sans);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px -10px rgba(10, 17, 32, 0.15);
    --shadow-glow: 0 10px 30px -10px rgba(217, 56, 50, 0.5);
    
    /* Layout */
    --container-width: 1280px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--c-gray-800);
    background-color: var(--c-white);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    padding-top: 90px;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--c-navy-dark);
    letter-spacing: -0.02em;
}

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--c-gray-800);
    font-size: 1.125rem;
}

a {
    color: var(--c-navy);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--c-red);
}

ul {
    padding-left: 1.5rem;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.section {
    position: relative;
    overflow: hidden;
}

.section-padding {
    padding: 8rem 0;
}

.bg-light {
    background-color: var(--c-gray-50);
}

.dark-bg {
    background: var(--grad-primary);
    color: var(--c-white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.dark-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 56, 50, 0.1) 0%, transparent 70%);
    transform: translate(30%, -30%);
    pointer-events: none;
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg p {
    color: var(--c-white);
}

.dark-bg p {
    color: var(--c-gray-200);
}

.red-title {
    color: var(--c-red);
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--c-gray-800);
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.6;
}

.italic-text {
    font-style: italic;
    color: var(--c-gray-400);
}

.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 4rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 4rem; }
.mt-xl { margin-top: 6rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-bounce);
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--grad-accent);
    color: var(--c-white);
    border: none;
    box-shadow: 0 4px 15px rgba(217, 56, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--c-white);
}

/* ==========================================================================
   Logo & Navbar
   ========================================================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 100;
}

.logo-img-small {
    height: 48px;
    width: 48px;
    display: inline-block;
}
.logo-img-medium {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
    display: inline-block;
}
.logo-img-large {
    height: 140px;
    width: 140px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 24px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: nowrap;
}

.logo-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--c-navy-dark);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.55rem;
    color: var(--c-gray-800);
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.in3-main-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 90px;
    transform: translateZ(0);
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.in3-main-navbar.scrolled {
    height: 70px;
    box-shadow: var(--shadow-soft);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.nav-links a:not(.btn) {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.in3-language-switcher {
    display: flex;
    align-items: center;
    min-width: 86px;
    position: relative;
}

.in3-language-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--c-gray-800);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.in3-language-placeholder strong {
    color: var(--c-red);
}

.in3-language-menu {
    position: relative;
    margin: 0;
}

.in3-language-menu > summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    height: 42px;
    min-width: 86px;
    padding: 0 0.8rem;
    border: 1px solid rgba(10, 17, 32, 0.11);
    border-radius: 999px;
    color: var(--c-navy);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 28px rgba(10, 17, 32, 0.09);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
    list-style: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.in3-language-menu > summary::-webkit-details-marker {
    display: none;
}

.in3-language-menu > summary:hover,
.in3-language-menu[open] > summary {
    border-color: rgba(217, 56, 50, 0.3);
    box-shadow: 0 12px 32px rgba(217, 56, 50, 0.15);
    transform: translateY(-1px);
}

.in3-language-menu > summary > i:first-child {
    font-size: 1.05rem;
}

.in3-language-menu > summary > span {
    font-size: 0.76rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.08em;
}

.in3-language-caret {
    color: var(--c-red);
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.in3-language-menu[open] .in3-language-caret {
    transform: rotate(180deg);
}

.in3-language-dropdown {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    z-index: 1100;
    min-width: 210px;
    padding: 0.45rem;
    border: 1px solid rgba(10, 17, 32, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 60px rgba(10, 17, 32, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform-origin: top right;
    animation: in3LanguageMenuIn 0.2s ease-out;
}

@keyframes in3LanguageMenuIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.in3-language-option {
    display: grid;
    grid-template-columns: 38px 1fr 20px;
    align-items: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.4rem 0.55rem !important;
    border-radius: 13px;
    color: var(--c-gray-800) !important;
    line-height: 1.15 !important;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links .in3-language-option::after {
    display: none;
}

.in3-language-option:hover {
    color: var(--c-navy) !important;
    background: rgba(217, 56, 50, 0.08);
    transform: translateX(2px);
}

.in3-language-option.is-active {
    color: var(--c-navy) !important;
    background: var(--c-mint-soft);
}

.in3-language-code {
    display: grid;
    place-items: center;
    height: 30px;
    border-radius: 9px;
    color: var(--c-navy);
    background: var(--c-gray-100);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.06em;
}

.in3-language-option.is-active .in3-language-code {
    color: var(--c-white);
    background: var(--grad-accent);
}

.in3-language-name {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
}

.in3-language-option > i {
    color: var(--c-mint);
    font-size: 0.95rem;
    opacity: 0;
}

.in3-language-option.is-active > i {
    opacity: 1;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-accent);
    transition: width var(--transition-bounce);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--c-navy);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    background: var(--c-navy-dark);
    color: var(--c-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(217, 56, 50, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(22, 36, 66, 0.8) 0%, transparent 50%);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-subtitle {
    color: var(--c-red);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    border-top: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--c-red);
}

.hero-main-logo {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--c-white);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-highlight {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
    display: inline-block;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--c-gray-200);
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 600px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-bounce);
    color: var(--c-white);
}

.tag:hover {
    background: rgba(217, 56, 50, 0.2);
    border-color: rgba(217, 56, 50, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    border-bottom: none;
    padding-bottom: 0;
}

.section-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-red);
    background: rgba(217, 56, 50, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.section-title {
    font-size: 3rem;
    margin: 0;
    font-weight: 800;
}

/* ==========================================================================
   Overview & Vision
   ========================================================================== */
.overview-content {
    margin-bottom: 4rem;
    max-width: 900px;
}

.positioning-box {
    background: var(--c-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.positioning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--grad-accent);
}

.positioning-box p {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 500;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar-card {
    background: var(--c-white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-bounce);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
}

.pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: var(--grad-accent);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pillar-card:hover::before {
    opacity: 0.03;
}

.pillar-icon {
    font-size: 3rem;
    color: var(--c-navy);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-bounce);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
    color: var(--c-red);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--c-gray-400);
    margin: 0;
    font-size: 1.125rem;
}

.manifesto-banner {
    background: var(--grad-primary);
    color: var(--c-white);
    padding: 3rem;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.manifesto-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.5;
}

.manifesto-banner p {
    margin: 0;
    color: var(--c-white);
    position: relative;
    z-index: 1;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.vision-box, .mission-box {
    background: var(--c-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.mission-list {
    padding-left: 0;
    list-style: none;
}

.mission-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.mission-list li::before {
    content: '\e09a'; /* phosphor check icon */
    font-family: 'Phosphor';
    color: var(--c-red);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.25rem;
    font-weight: bold;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.principle-card {
    background: var(--c-white);
    border: 1px solid var(--c-gray-100);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.principle-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.principle-card:hover::before {
    transform: scaleX(1);
}

.principle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.principle-header i {
    font-size: 2.5rem;
    color: var(--c-navy);
    transition: color var(--transition-fast);
}

.principle-card:hover .principle-header i {
    color: var(--c-red);
}

.p-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--c-gray-100);
}

.principle-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.principle-card p {
    font-size: 1rem;
    color: var(--c-gray-400);
    margin: 0;
}

/* ==========================================================================
   Expertise & Solutions
   ========================================================================== */
.expertise-grid, .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expertise-card, .solution-card {
    background: var(--c-white);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--c-gray-100);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-soft);
}

.expertise-card:hover, .solution-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px) scale(1.02);
}

.solution-card.dark {
    background: var(--grad-primary);
    color: var(--c-white);
    border-color: transparent;
}

.solution-card.dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-glass);
    pointer-events: none;
}

.solution-card.dark h4, .solution-card.dark p {
    color: var(--c-white);
    position: relative;
    z-index: 1;
}

.solution-card.dark p {
    color: var(--c-gray-200);
}

.expertise-card i, .solution-card i {
    font-size: 2.5rem;
    color: var(--c-navy);
    margin-bottom: 2rem;
    display: inline-block;
    padding: 1rem;
    background: var(--c-gray-50);
    border-radius: 16px;
    transition: all var(--transition-bounce);
}

.solution-card.dark i {
    color: var(--c-white);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.expertise-card:hover i, .solution-card:hover i {
    transform: scale(1.1) rotate(-5deg);
    color: var(--c-red);
}

.solution-card.dark:hover i {
    color: var(--c-red);
}

.expertise-card h4, .solution-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.expertise-card p, .solution-card p {
    font-size: 1rem;
    color: var(--c-gray-400);
    margin: 0;
}

/* Timeline Workflow */
.workflow-steps {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    margin-top: 2rem;
}

.workflow-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    height: 4px;
    background: var(--c-gray-100);
    z-index: 0;
    transform: translateY(-50%);
    border-radius: 4px;
}

.step {
    background: var(--c-white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 24px;
    position: relative;
    z-index: 1;
    flex: 1;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--c-gray-100);
    transition: all var(--transition-bounce);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--c-red);
}

.step.dark {
    background: var(--grad-accent);
    color: var(--c-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--c-navy);
    margin-bottom: 1rem;
}

.step.dark .step-icon {
    color: var(--c-white);
}

.step-num {
    font-family: var(--font-display);
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    font-size: 3rem;
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: -1;
}

.step.dark .step-num {
    color: rgba(255,255,255,0.15);
}

.step-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--c-navy);
    line-height: 1.3;
}

.step.dark .step-title {
    color: var(--c-white);
}

/* ========================================================================== 
   Partners & Products
   ========================================================================== */
.principal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.principal-card {
    --brand-color: var(--c-red);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    padding: clamp(2rem, 4vw, 3.2rem);
    background: var(--c-white);
    border: 1px solid rgba(10, 17, 32, 0.08);
    border-radius: 26px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.principal-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--brand-color);
}

.principal-card::after {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    right: -85px;
    bottom: -95px;
    background: color-mix(in srgb, var(--brand-color) 10%, transparent);
    border-radius: 50%;
    pointer-events: none;
}

.principal-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 32px 75px -32px rgba(5, 10, 20, 0.38);
}

.principal-card-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    color: inherit;
}

.principal-card-link:hover {
    color: inherit;
}

.brand-omron { --brand-color: #005eb8; }
.brand-socomec { --brand-color: #004f9f; }
.brand-slanvert { --brand-color: #195ca8; }
.brand-supmea { --brand-color: #16a0d5; }

.principal-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.principal-logo {
    display: block;
    width: auto;
    max-width: min(72%, 280px);
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.logo-omron {
    filter: none;
}

.logo-socomec {
    height: 48px;
    max-width: min(72%, 300px);
}

.principal-official-logo.logo-socomec {
    width: min(72%, 300px);
    height: 54px;
    display: flex;
    align-items: center;
}

.principal-official-logo.logo-socomec img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.logo-slanvert {
    height: 52px;
}

.logo-supmea {
    height: 54px;
}

.principal-topline i {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--brand-color);
    background: color-mix(in srgb, var(--brand-color) 9%, white);
    border-radius: 14px;
    font-size: 1.45rem;
}

.principal-category {
    margin-bottom: 1.5rem;
    color: var(--c-navy);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.principal-card p {
    max-width: 590px;
    margin-bottom: 2rem;
    color: #59677a;
    font-size: 1rem;
}

.principal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: auto;
}

.principal-tags span {
    padding: 0.48rem 0.8rem;
    color: var(--c-navy);
    background: var(--c-gray-50);
    border: 1px solid var(--c-gray-100);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.product-showcase {
    padding: 4rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.product-showcase::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 56, 50, 0.15) 0%, transparent 60%);
    pointer-events: none;
    transform: rotate(30deg);
}

.product-brand {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--c-white);
    font-weight: 800;
    background: var(--grad-glass);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-info p {
    max-width: 800px;
    margin-bottom: 3rem;
    font-size: 1.25rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--c-white);
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 16px;
    min-width: 120px;
    backdrop-filter: blur(5px);
    transition: all var(--transition-bounce);
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: var(--c-red);
}

.feature-item i {
    font-size: 2rem;
    color: var(--c-red);
}

.feature-item span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.spec-box {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-title {
    font-size: 0.75rem;
    color: var(--c-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.spec-box span:last-child {
    font-size: 1rem;
    color: var(--c-white);
    font-weight: 500;
}

/* ==========================================================================
   Partnership & Industries
   ========================================================================== */
.partnership-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flow-step {
    flex: 1;
    background: var(--c-white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 24px;
    border: 1px solid var(--c-gray-100);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.flow-step.dark {
    background: var(--grad-primary);
    color: var(--c-white);
    border-color: transparent;
}

.flow-step i.ph-globe, .flow-step i.ph-gear, .flow-step i.ph-factory {
    font-size: 3rem;
    color: var(--c-navy);
    margin-bottom: 1.5rem;
}

.flow-step.dark i {
    color: var(--c-red);
}

.flow-step.dark h4 { color: var(--c-white); }
.flow-step h4 { margin-bottom: 1rem; font-size: 1.25rem; }
.flow-step p { margin: 0; font-size: 1rem; color: var(--c-gray-400); }
.flow-step.dark p { color: var(--c-gray-200); }

.flow-arrow {
    font-size: 2.5rem;
    color: var(--c-red);
    margin: 0 1.5rem;
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.5; }
    100% { transform: translateX(0); opacity: 1; }
}

.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    padding: 1.5rem 2rem;
    background: var(--c-white);
    border-left: 4px solid var(--c-red);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    border-radius: 0 16px 16px 0;
    font-size: 1.125rem;
    transition: all var(--transition-fast);
}

.styled-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-card {
    background: var(--c-white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--c-gray-100);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-soft);
}

.industry-card:hover {
    border-color: var(--c-red);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--c-white);
    background: var(--c-navy);
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all var(--transition-bounce);
}

.industry-card:hover i {
    background: var(--c-red);
    transform: scale(1.1);
}

.industry-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.industry-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--c-gray-400);
}

/* ==========================================================================
   Architecture Diagram
   ========================================================================== */
.architecture-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem;
    position: relative;
    border-radius: 32px;
}

.arch-layer {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all var(--transition-bounce);
    text-align: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.arch-layer:hover {
    background: rgba(255,255,255,0.08);
    transform: scale(1.02);
}

.arch-layer.highlight {
    background: rgba(217, 56, 50, 0.1);
    border-color: var(--c-red);
    box-shadow: var(--shadow-glow);
}

.layer-num {
    position: absolute;
    left: 30px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
}

.layer-content h4 {
    margin-bottom: 0.25rem;
    color: var(--c-white);
    letter-spacing: 2px;
    font-size: 1.25rem;
}

.layer-content p {
    margin: 0;
    font-size: 1rem;
    color: var(--c-gray-400);
}

.arch-arrow {
    font-size: 2rem;
    color: var(--c-red);
    margin: 1rem 0;
}

.arch-footer {
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    width: 100%;
}

.arch-footer p {
    margin: 0;
    font-style: italic;
    font-size: 1.125rem;
}

/* ==========================================================================
   Services & Reasons
   ========================================================================== */
.services-grid, .reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card, .reason-card {
    background: var(--c-white);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--c-gray-100);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.service-card:hover, .reason-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--c-red);
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-header i { font-size: 3rem; color: var(--c-red); }
.s-num { font-family: var(--font-display); font-weight: 800; color: var(--c-gray-100); font-size: 2.5rem; line-height: 1; }

.service-card h4, .reason-card h4 { margin-bottom: 1rem; font-size: 1.25rem; }
.service-card p, .reason-card p { margin: 0; font-size: 1rem; color: var(--c-gray-400); }

.service-card.full-width {
    grid-column: 1 / -1;
}
.service-card.dark {
    background: var(--grad-primary);
    color: var(--c-white);
    border-color: transparent;
}
.service-card.dark h4 { color: var(--c-white); }
.service-card.dark p { color: var(--c-gray-200); }
.service-card.dark .s-num { color: rgba(255,255,255,0.05); }

.reason-card i {
    font-size: 3rem;
    color: var(--c-navy);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform var(--transition-bounce);
}

.reason-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--c-red);
}

/* ==========================================================================
   Lifecycle & Framework
   ========================================================================== */
.lifecycle-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--c-gray-100);
}

.life-step {
    text-align: center;
    flex: 1;
}

.life-step i {
    font-size: 2.5rem;
    color: var(--c-white);
    background: var(--c-navy);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.life-step h4 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.life-step p { margin: 0; font-size: 1rem; color: var(--c-gray-400); }

.framework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.fw-card {
    background: var(--c-white);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--c-gray-100);
    border-top: 4px solid var(--c-red);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-bounce);
}

.fw-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.fw-card.dark {
    background: var(--grad-primary);
    color: var(--c-white);
    border-color: transparent;
    border-top: 4px solid var(--c-red);
}

.fw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.fw-header i { font-size: 2.5rem; color: var(--c-navy); }
.fw-card.dark .fw-header i { color: var(--c-white); }
.f-num { font-family: var(--font-display); font-weight: 800; color: var(--c-gray-100); font-size: 2rem; }
.fw-card.dark .f-num { color: rgba(255,255,255,0.05); }

.fw-card h4 { margin-bottom: 1.5rem; font-size: 1.25rem; }
.fw-card.dark h4 { color: var(--c-white); }
.fw-card ul { padding-left: 1.25rem; margin: 0; font-size: 1rem; color: var(--c-gray-800); }
.fw-card.dark ul { color: var(--c-gray-200); }
.fw-card li { margin-bottom: 0.75rem; }

.roadmap-diagram {
    display: flex;
    padding: 4rem 3rem;
    border-radius: 32px;
    gap: 2rem;
    position: relative;
    background: var(--grad-primary);
    box-shadow: var(--shadow-hover);
}

.roadmap-diagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 3rem;
    right: 3rem;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
    border-radius: 2px;
}

.road-step {
    flex: 1;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 24px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 4px solid transparent;
    transition: all var(--transition-bounce);
}

.road-step:hover {
    border-top-color: var(--c-red);
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.road-num {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
}

.road-step i {
    font-size: 3rem;
    color: var(--c-white);
    margin-bottom: 1.5rem;
    display: block;
}

.road-step h4 {
    color: var(--c-white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.road-step ul {
    padding-left: 1.25rem;
    margin: 0;
    font-size: 1rem;
    color: var(--c-gray-200);
}
.road-step li { margin-bottom: 0.5rem; }

.tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Slider Revolution Hero
   ========================================================================== */
.in3-rs-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    background: var(--c-navy-dark);
    overflow: hidden;
}

.in3-rs-slider rs-module-wrap,
.in3-rs-slider rs-module {
    width: 100% !important;
    height: 100vh !important;
    height: 100svh !important;
}

.in3-rs-slider sr7-module,
.in3-rs-slider sr7-content {
    height: 100vh !important;
    height: 100svh !important;
}

/* Native Revolution slides: keep the supplied campaign artwork intact. */
.in3-rs-slider sr7-slide.in3-native-slide {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.in3-rs-slider sr7-slide.in3-hero-slide {
    background-color: #07101f !important;
    background-image: url('/web/wp-content/uploads/2026/09/in3-slider/in3-industrial-hero.png') !important;
    background-size: cover !important;
}

.in3-hero-copy {
    position: absolute;
    z-index: 25;
    top: 50%;
    left: clamp(2rem, 8vw, 9rem);
    width: min(720px, 62vw);
    color: #fff;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-44%);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.in3-rs-slider.hero-slide-active .in3-hero-copy {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.in3-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    color: #8fc9ff;
    font-size: clamp(0.7rem, 0.85vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.in3-hero-eyebrow::before {
    content: '';
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e83d3d, #ff8b7f);
}

.in3-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.2vw, 5.4rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.in3-hero-copy h1 em {
    display: inline-block;
    color: #ff5148;
    font-style: normal;
    font-weight: inherit;
}

.in3-hero-copy p {
    max-width: 640px;
    margin: 1.45rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.95rem, 1.25vw, 1.18rem);
    line-height: 1.65;
}

.in3-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.8rem;
}

.in3-hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 52px;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.in3-hero-primary {
    padding: 0.85rem 1.35rem;
    color: #fff;
    background: linear-gradient(135deg, #e63832, #ff655a);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    box-shadow: 0 14px 38px rgba(225, 49, 44, 0.28);
}

.in3-hero-secondary {
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.in3-hero-actions a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.in3-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.7rem;
}

.in3-hero-proof span {
    padding: 0.48rem 0.78rem;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.76rem;
    font-weight: 600;
}

.in3-product-stories {
    position: absolute;
    inset: 0;
    z-index: 25;
    pointer-events: none;
}

.in3-rs-slider sr7-slide.in3-product-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(112deg, transparent 24%, rgba(255, 255, 255, 0.28) 48%, transparent 69%);
    opacity: 0;
    transform: translateX(-115%);
    pointer-events: none;
}

.in3-rs-slider sr7-slide.in3-product-slide.in3-slide-active::before {
    animation: in3SlideSweep 1.45s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.in3-product-story {
    --story-accent: #5ca7ff;
    position: absolute;
    top: 50%;
    left: clamp(2rem, 7vw, 8rem);
    bottom: auto;
    width: min(600px, 46vw);
    padding: 1.5rem 1.7rem 1.6rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(2, 12, 28, 0.91), rgba(3, 23, 47, 0.73));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 3px solid var(--story-accent);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(0, 20, 50, 0.28);
    backdrop-filter: blur(12px) saturate(125%);
    -webkit-backdrop-filter: blur(12px) saturate(125%);
    opacity: 0;
    visibility: hidden;
    transform: translate(-34px, -50%);
    pointer-events: none;
    overflow: hidden;
}

.in3-product-story::after {
    content: '';
    position: absolute;
    right: 8%;
    bottom: -65px;
    width: 170px;
    height: 170px;
    border: 1px solid color-mix(in srgb, var(--story-accent), transparent 65%);
    border-radius: 50%;
    box-shadow: 0 0 55px color-mix(in srgb, var(--story-accent), transparent 72%);
    pointer-events: none;
}

.in3-product-story.is-active {
    visibility: visible;
    pointer-events: auto;
    animation: in3StoryReveal 0.95s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.in3-story-omron { --story-accent: #3185dc; }
.in3-story-supmea { --story-accent: #ef332f; }
.in3-story-slanvert { --story-accent: #2e82d4; }
.in3-story-socomec { --story-accent: #f1c400; }

.in3-story-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.in3-story-logo-shell {
    display: inline-flex;
    width: 176px;
    height: 48px;
    flex: 0 0 176px;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.7rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.in3-story-logo {
    display: block;
    width: auto;
    max-width: 152px;
    max-height: 31px;
    height: auto;
    object-fit: contain;
}

.in3-story-logo-omron {
    width: 138px;
}

.in3-story-logo-slanvert {
    width: 132px;
}

.in3-story-logo-supmea {
    width: 128px;
}

.in3-story-logo-socomec {
    width: 152px;
    max-width: 152px;
    height: auto;
}

.in3-story-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--story-accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.in3-story-kicker::before {
    content: '';
    width: 28px;
    height: 2px;
    background: currentColor;
}

.in3-story-index {
    color: rgba(255, 255, 255, 0.34);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.in3-product-story h2 {
    position: relative;
    z-index: 1;
    margin: 0.6rem 0 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.7vw, 2.65rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.in3-product-story h2 strong {
    color: var(--story-accent);
    font-weight: 800;
}

.in3-product-story p {
    position: relative;
    z-index: 1;
    max-width: 510px;
    margin: 0.75rem 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.55;
}

.in3-product-story a {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 0.7rem;
    margin-top: 1rem;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    border: 0;
}

.in3-product-story a i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: #061426;
    background: var(--story-accent);
    border-radius: 50%;
    transition: transform 0.25s ease;
}

.in3-product-story a:hover {
    color: var(--story-accent);
}

.in3-product-story a:hover i {
    transform: translate(3px, -3px);
}

@keyframes in3StoryReveal {
    0% { opacity: 0; transform: translate(-46px, -50%); filter: blur(7px); }
    100% { opacity: 1; transform: translate(0, -50%); filter: blur(0); }
}

@keyframes in3SlideSweep {
    0% { opacity: 0; transform: translateX(-115%); }
    24% { opacity: 0.42; }
    100% { opacity: 0; transform: translateX(115%); }
}

.in3-rs-slider.hero-slide-active .in3-hero-eyebrow,
.in3-rs-slider.hero-slide-active .in3-hero-copy h1,
.in3-rs-slider.hero-slide-active .in3-hero-copy p,
.in3-rs-slider.hero-slide-active .in3-hero-actions,
.in3-rs-slider.hero-slide-active .in3-hero-proof {
    animation: in3HeroRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.in3-rs-slider.hero-slide-active .in3-hero-eyebrow { animation-delay: 0.1s; }
.in3-rs-slider.hero-slide-active .in3-hero-copy h1 { animation-delay: 0.22s; }
.in3-rs-slider.hero-slide-active .in3-hero-copy p { animation-delay: 0.38s; }
.in3-rs-slider.hero-slide-active .in3-hero-actions { animation-delay: 0.52s; }
.in3-rs-slider.hero-slide-active .in3-hero-proof { animation-delay: 0.64s; }
.in3-rs-slider.hero-slide-active .in3-hero-eyebrow::before {
    animation: in3HeroLine 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes in3HeroRise {
    from { opacity: 0; transform: translateY(28px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes in3HeroLine {
    from { width: 0; }
    to { width: 42px; }
}

@media (max-width: 900px) {
    .in3-rs-slider sr7-slide.in3-product-slide {
        background-position: left center !important;
    }

    .in3-hero-copy {
        left: 7vw;
        width: min(650px, 78vw);
    }

    .in3-hero-copy h1 {
        font-size: clamp(2.15rem, 6.5vw, 3.8rem);
    }
}

@media (max-height: 760px) and (min-width: 601px) {
    .in3-hero-copy h1 {
        font-size: clamp(2.3rem, 4.7vw, 4.3rem);
    }

    .in3-hero-copy p {
        margin-top: 1rem;
        line-height: 1.5;
    }

    .in3-hero-actions {
        margin-top: 1.15rem;
    }

    .in3-hero-proof {
        margin-top: 1rem;
    }

    .in3-product-story {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .in3-product-story h2 {
        font-size: clamp(1.45rem, 2.3vw, 2.15rem);
    }

    .in3-product-story p {
        margin-top: 0.5rem;
    }

    .in3-product-story a {
        margin-top: 0.6rem;
    }
}

@media (max-width: 600px) {
    .in3-rs-slider sr7-module,
    .in3-rs-slider sr7-content {
        height: 100vh !important;
        height: 100svh !important;
    }

    .in3-rs-slider sr7-slide.in3-hero-slide {
        background-position: 58% center !important;
    }

    .in3-rs-slider sr7-slide.in3-product-slide {
        background-position: 46% center !important;
    }

    .in3-hero-copy {
        top: 48%;
        left: 1.25rem;
        width: calc(100% - 2.5rem);
    }

    .in3-hero-copy h1 {
        max-width: 540px;
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.02;
    }

    .in3-hero-copy p {
        max-width: 500px;
        margin-top: 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .in3-hero-actions {
        gap: 1rem;
        margin-top: 1.2rem;
    }

    .in3-hero-actions a {
        min-height: 44px;
        font-size: 0.82rem;
    }

    .in3-hero-proof {
        display: none;
    }

    .in3-product-story {
        left: 1rem;
        top: 50%;
        bottom: auto;
        width: calc(100% - 2rem);
        padding: 1rem 1.1rem;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(2, 12, 28, 0.95), rgba(3, 23, 47, 0.82));
    }

    .in3-story-brand {
        margin-bottom: 0.8rem;
    }

    .in3-story-logo-shell {
        width: 144px;
        height: 40px;
        flex-basis: 144px;
        padding: 0.35rem 0.55rem;
        border-radius: 10px;
    }

    .in3-story-logo {
        max-width: 124px;
        max-height: 25px;
    }

    .in3-story-logo-omron { width: 120px; }
    .in3-story-logo-supmea { width: 110px; }
    .in3-story-logo-slanvert { width: 114px; }
    .in3-story-logo-socomec { width: 124px; }

    .in3-story-kicker {
        gap: 0.5rem;
        font-size: 0.7rem;
        letter-spacing: 0.13em;
    }

    .in3-story-kicker::before {
        width: 22px;
    }

    .in3-product-story h2 {
        font-size: 1.2rem;
    }

    .in3-product-story p {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 0.45rem;
        font-size: 0.78rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .in3-product-story a {
        margin-top: 0.55rem;
        font-size: 0.82rem;
    }
}

.in3-rs-slider sr7-slide.in3-omron-slide {
    background-color: #f4f9ff !important;
    background-image: url('/web/wp-content/uploads/2026/09/in3-slider/omron-products-clean.png') !important;
}

.in3-rs-slider sr7-slide.in3-supmea-slide {
    background-color: #fff !important;
    background-image: url('/web/wp-content/uploads/2026/09/in3-slider/supmea-products-clean.png') !important;
}

.in3-rs-slider sr7-slide.in3-slanvert-slide {
    background-color: #edf7ff !important;
    background-image: url('/web/wp-content/uploads/2026/09/in3-slider/slanvert-products-clean.png') !important;
}

.in3-rs-slider sr7-slide.in3-socomec-slide {
    background-color: #eef6ff !important;
    background-image: url('/web/wp-content/uploads/2026/09/in3-slider/socomec-products-clean.png') !important;
}

/* Compact, brand-aligned Slider Revolution navigation. */
.in3-rs-slider sr7-arrow.custum-arrows {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    top: 50% !important;
    bottom: auto !important;
    left: auto !important;
    width: 54px !important;
    height: 54px !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    border-radius: 50% !important;
    box-shadow: 0 14px 34px rgba(3, 17, 39, 0.2) !important;
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    margin-top: -27px !important;
    transform: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}

.in3-rs-slider sr7-arrow.custum-arrows::before {
    color: #fff !important;
    font-size: 16px !important;
    line-height: 54px !important;
}

.in3-rs-slider sr7-arrow.custum-arrows::after {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: inherit;
    pointer-events: none;
}

.in3-rs-slider sr7-arrow.sr7-leftarrow.custum-arrows {
    right: calc(clamp(1.25rem, 3vw, 3.5rem) + 66px) !important;
    background: rgba(5, 20, 42, 0.78) !important;
}

.in3-rs-slider sr7-arrow.sr7-rightarrow.custum-arrows {
    right: clamp(1.25rem, 3vw, 3.5rem) !important;
    background: linear-gradient(135deg, #e63832, #ff675c) !important;
    box-shadow: 0 14px 34px rgba(220, 50, 45, 0.3) !important;
}

.in3-rs-slider sr7-arrow.custum-arrows:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 18px 42px rgba(3, 17, 39, 0.3) !important;
}

.in3-rs-slider sr7-arrow.sr7-rightarrow.custum-arrows:hover {
    background: linear-gradient(135deg, #c92824, #ff5148) !important;
}

@media (max-width: 600px) {
    .in3-rs-slider sr7-arrow.custum-arrows {
        top: auto !important;
        bottom: 1rem !important;
        width: 46px !important;
        height: 46px !important;
        margin-top: 0 !important;
        transform: none !important;
    }

    .in3-rs-slider sr7-arrow.custum-arrows::before {
        line-height: 46px !important;
    }

    .in3-rs-slider sr7-arrow.sr7-leftarrow.custum-arrows {
        right: 4.75rem !important;
    }

    .in3-rs-slider sr7-arrow.sr7-rightarrow.custum-arrows {
        right: 1rem !important;
    }

    .in3-rs-slider sr7-arrow.custum-arrows:hover {
        transform: scale(1.06) !important;
    }
}

/* 1. Cinematic Gradient Overlay over Slider Background */
.in3-rs-slider sr7-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 37, 67, 0.95) 0%, rgba(13, 59, 130, 0.4) 100%);
    mix-blend-mode: multiply;
    z-index: 10;
    pointer-events: none;
}

/* 2. Fix overlapping title and add premium red accent */
.in3-rs-slider sr7-txt[id$="-2"] {
    font-size: clamp(26px, 3.5vw, 50px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    border-left: 6px solid var(--c-red);
    padding-left: 1.2rem !important;
}

/* 3. Style paragraph to ensure readability */
.in3-rs-slider sr7-txt[id$="-3"] {
    color: rgba(255,255,255,0.85) !important;
    font-size: clamp(14px, 1.2vw, 18px) !important;
}

/* ========================================================================== 
   Individual Brand Product Pages
   ========================================================================== */
.in3-product-page {
    color: #142238;
    background: #f7f9fc;
}

.in3-product-page .product-navbar {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(13, 59, 130, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.in3-product-page .nav-links a:not(.btn) {
    font-size: 0.82rem;
}

.product-hero {
    position: relative;
    min-height: min(850px, 90vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #071324;
}

.product-hero-media,
.product-hero-shade {
    position: absolute;
    inset: 0;
}

.product-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-hero-shade {
    background:
        linear-gradient(90deg, rgba(2, 12, 29, 0.97) 0%, rgba(4, 19, 40, 0.91) 35%, rgba(5, 22, 45, 0.44) 63%, rgba(2, 10, 22, 0.05) 100%),
        linear-gradient(180deg, rgba(4, 15, 31, 0.14), rgba(4, 15, 31, 0.35));
}

.product-hero-shade::after {
    content: '';
    position: absolute;
    left: -9rem;
    bottom: -14rem;
    width: 38rem;
    height: 38rem;
    border: 1px solid rgba(var(--product-accent-rgb), 0.38);
    border-radius: 50%;
    box-shadow: 0 0 120px rgba(var(--product-accent-rgb), 0.2);
}

.product-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 7.5rem;
    padding-bottom: 5rem;
}

.product-hero-copy {
    max-width: 690px;
    color: #fff;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.product-breadcrumb a:hover { color: #fff; }
.product-breadcrumb i { color: var(--product-accent); }

.product-brand-shell {
    width: auto;
    min-width: 188px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.45rem;
    padding: 0.55rem 1rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.product-brand-shell img {
    display: block;
    max-width: 220px;
    max-height: 34px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-eyebrow,
.product-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--product-accent);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.product-eyebrow::before,
.product-section-kicker::before {
    content: '';
    width: 34px;
    height: 2px;
    background: currentColor;
}

.product-hero h1 {
    max-width: 680px;
    margin: 0.65rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.65rem, 5vw, 5.15rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.product-hero-copy > p {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.7;
}

.product-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.product-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.2rem;
    border-radius: 11px;
    font-size: 0.82rem;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-btn:hover { transform: translateY(-3px); }
.product-btn-primary { color: #071324; background: var(--product-accent); box-shadow: 0 14px 35px rgba(var(--product-accent-rgb), 0.28); }
.product-btn-primary:hover { color: #071324; box-shadow: 0 18px 44px rgba(var(--product-accent-rgb), 0.4); }
.product-btn-ghost { color: #fff; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.22); }
.product-btn-ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.14); }

.product-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    margin-top: 1.6rem;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.76rem;
    font-weight: 600;
}

.product-trust span { display: inline-flex; align-items: center; gap: 0.35rem; }
.product-trust i { color: var(--product-accent); font-size: 1rem; }

.product-section { padding: clamp(5rem, 8vw, 8.5rem) 0; }
.product-catalog-section { 
    background: #f7f9fc; 
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.product-section-head {
    max-width: 830px;
    margin-bottom: 3rem;
}

.product-section-head h2,
.product-application-copy h2 {
    margin: 0.7rem 0 1rem;
    color: #0a1930;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.product-section-head > p,
.product-application-copy > p {
    max-width: 720px;
    color: #647187;
    font-size: 1rem;
    line-height: 1.75;
}

.product-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.product-category-card {
    min-height: 285px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 20px;
    box-shadow: 0 20px 55px -40px rgba(6, 25, 55, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-category-card::after {
    content: '';
    position: absolute;
    top: -55px;
    right: -55px;
    width: 135px;
    height: 135px;
    background: rgba(var(--product-accent-rgb), 0.08);
    border-radius: 50%;
}

.product-category-card:hover {
    transform: translateY(-7px);
    border-color: rgba(var(--product-accent-rgb), 0.35);
    box-shadow: 0 30px 70px -42px rgba(6, 25, 55, 0.58);
}

.product-category-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
    color: var(--product-accent);
    background: rgba(var(--product-accent-rgb), 0.1);
    border-radius: 14px;
    font-size: 1.55rem;
}

.product-category-card h3 {
    margin: 1.2rem 0 0.65rem;
    color: #0a1930;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.product-category-card p {
    margin: 0 0 1.2rem;
    color: #68758a;
    font-size: 0.9rem;
    line-height: 1.65;
}

.product-category-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    color: #0d3b82;
    font-size: 0.78rem;
    font-weight: 800;
}

.product-category-card a i { color: var(--product-accent); }

/* WooCommerce is used as a catalog, never as a transactional storefront. */
.woocommerce-catalog-section .products {
    align-items: stretch;
}

.woocommerce-catalog-section li.product {
    display: flex;
    flex-direction: column;
}

.woocommerce-catalog-section .woocommerce-loop-product__title {
    margin-bottom: 0.55rem;
}

.in3-product-card-summary {
    margin: 0;
    color: #68758a;
    font-size: 0.84rem;
    line-height: 1.65;
}

.in3-product-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.in3-catalog-only form.cart,
.in3-catalog-only .single_add_to_cart_button,
.in3-catalog-only .quantity,
.in3-catalog-only .price,
.in3-catalog-only .woocommerce-product-details__short-description + form,
.in3-catalog-only .cart-contents,
.in3-catalog-only .rs-cart-icon {
    display: none !important;
}

.in3-detail-catalog-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(6.5rem, 10vw, 10rem);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--product-accent-rgb), 0.07), transparent 30%),
        #f7f9fc;
}

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

.in3-detail-product-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
    min-height: 310px;
    overflow: hidden;
    border: 1px solid #e4eaf1;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px -38px rgba(5, 18, 36, 0.34);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.in3-detail-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--product-accent-rgb), 0.36);
    box-shadow: 0 30px 70px -38px rgba(5, 18, 36, 0.42);
}

.in3-detail-product-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 1.4rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 15%, rgba(var(--product-accent-rgb), 0.15), transparent 42%),
        linear-gradient(145deg, #f8fafc, #edf2f7);
}

.in3-detail-product-media::after {
    content: '';
    position: absolute;
    inset: auto -25% -35% 10%;
    height: 60%;
    border-radius: 50%;
    background: rgba(var(--product-accent-rgb), 0.08);
    transform: rotate(-12deg);
}

.in3-detail-product-media > img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.in3-detail-product-card:hover .in3-detail-product-media > img {
    transform: scale(1.045);
}

.in3-detail-product-index {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    color: #8190a4;
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.in3-detail-product-fallback {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 76%;
    min-height: 110px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 38px rgba(10, 30, 54, 0.10);
}

.in3-detail-product-fallback img {
    width: 100%;
    max-width: 145px;
    max-height: 52px;
    object-fit: contain;
}

.in3-detail-product-view {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    border-radius: 50%;
    background: var(--product-accent);
    box-shadow: 0 10px 24px rgba(var(--product-accent-rgb), 0.3);
}

.in3-detail-product-body {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.8rem;
}

.in3-detail-product-brand {
    color: var(--product-accent);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.in3-detail-product-body h3 {
    margin: 0.75rem 0 0.8rem;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.12;
}

.in3-detail-product-body h3 a {
    color: #0b1b32;
}

.in3-detail-product-body p {
    margin: 0;
    color: #68758a;
    font-size: 0.86rem;
    line-height: 1.7;
}

.in3-detail-product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1.2rem;
    color: #0b1b32;
    font-size: 0.76rem;
    font-weight: 850;
}

.in3-detail-product-link i {
    color: var(--product-accent);
    transition: transform 0.25s ease;
}

.in3-detail-product-link:hover i {
    transform: translateX(4px);
}

.in3-detail-catalog-empty {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.4rem;
    border: 1px solid #e4eaf1;
    border-radius: 18px;
    background: #fff;
}

.in3-detail-catalog-empty > i {
    color: var(--product-accent);
    font-size: 2rem;
}

.in3-detail-catalog-empty strong,
.in3-detail-catalog-empty span {
    display: block;
}

.in3-detail-catalog-empty span {
    margin-top: 0.2rem;
    color: #68758a;
    font-size: 0.82rem;
}

.in3-detail-catalog-empty > a {
    margin-left: auto;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 800;
}

.product-application-section { color: #fff; background: #071426; }
.product-application-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.product-application-copy h2 { color: #fff; }
.product-application-copy > p { color: rgba(255, 255, 255, 0.66); }

.product-process { display: grid; gap: 0.85rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.product-process li { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.1rem; background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 14px; }
.product-process li > span { color: var(--product-accent); font-family: var(--font-display); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; }
.product-process strong, .product-process small { display: block; }
.product-process strong { color: #fff; font-size: 0.9rem; }
.product-process small { margin-top: 0.15rem; color: rgba(255, 255, 255, 0.55); font-size: 0.78rem; line-height: 1.5; }

.product-app-panel {
    position: relative;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(var(--product-accent-rgb), 0.18), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(var(--product-accent-rgb), 0.35);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22);
}

.product-app-panel > span { color: var(--product-accent); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.product-app-panel ul { display: grid; gap: 0.75rem; margin: 1.3rem 0 1.8rem; padding: 0; list-style: none; }
.product-app-panel li { display: flex; align-items: center; gap: 0.7rem; padding-bottom: 0.75rem; color: rgba(255, 255, 255, 0.82); border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.9rem; }
.product-app-panel li i { color: var(--product-accent); }
.product-app-panel > a { display: inline-flex; align-items: center; gap: 0.55rem; color: #fff; font-size: 0.82rem; font-weight: 800; }

.product-faq-section { background: #fff; }
.product-faq-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.product-faq-list { display: grid; gap: 0.7rem; }
.product-faq-list details { padding: 1.1rem 1.2rem; background: #f7f9fc; border: 1px solid #e6ebf2; border-radius: 14px; }
.product-faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: #10213b; font-size: 0.92rem; font-weight: 750; cursor: pointer; list-style: none; }
.product-faq-list summary::-webkit-details-marker { display: none; }
.product-faq-list summary i { flex: 0 0 auto; color: var(--product-accent); font-size: 1.1rem; transition: transform 0.25s ease; }
.product-faq-list details[open] summary i { transform: rotate(45deg); }
.product-faq-list details p { margin: 0.85rem 0 0; padding-top: 0.85rem; color: #68758a; border-top: 1px solid #e2e7ef; font-size: 0.88rem; line-height: 1.7; }

.product-related-section { padding: clamp(4.5rem, 7vw, 7rem) 0; color: #fff; background: #0b1b32; }
.product-section-head-light h2 { color: #fff; }
.product-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.product-related-grid > a { min-height: 205px; display: flex; flex-direction: column; position: relative; padding: 1.35rem; color: #fff; background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 18px; transition: transform 0.3s ease, background 0.3s ease; }
.product-related-grid > a:hover { color: #fff; transform: translateY(-6px); background: rgba(255, 255, 255, 0.075); }
.product-related-grid a > span { width: 150px; height: 45px; display: flex; align-items: center; justify-content: center; padding: 0.4rem 0.7rem; background: #fff; border-radius: 10px; }
.product-related-grid img { max-width: 128px; max-height: 28px; width: auto; height: auto; object-fit: contain; }
.product-related-grid small { margin-top: auto; color: rgba(255, 255, 255, 0.5); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.product-related-grid strong { max-width: 88%; margin-top: 0.35rem; font-size: 0.95rem; }
.product-related-grid > a > i { position: absolute; right: 1.3rem; bottom: 1.3rem; color: var(--product-accent); font-size: 1.25rem; }

.product-final-cta { padding: 4.5rem 0; background: var(--product-accent); }
.product-final-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.product-final-cta span { color: rgba(5, 18, 36, 0.62); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.16em; }
.product-final-cta h2 { max-width: 760px; margin: 0.45rem 0 0; color: #071426; font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3.5rem); line-height: 1.03; letter-spacing: -0.04em; }
.product-final-cta a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 0.6rem; min-height: 52px; padding: 0.85rem 1.25rem; color: #fff; background: #071426; border-radius: 11px; font-size: 0.82rem; font-weight: 800; box-shadow: 0 16px 40px rgba(4, 18, 37, 0.18); }
.product-final-cta a:hover { color: #fff; transform: translateY(-3px); }

.product-footer { padding: 2.3rem 0; color: rgba(255, 255, 255, 0.66); background: #050d19; }
.product-footer .container { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem; }
.product-footer strong, .product-footer span { display: block; }
.product-footer strong { color: #fff; font-size: 0.82rem; }
.product-footer span { margin-top: 0.2rem; font-size: 0.7rem; }
.product-footer nav { display: flex; gap: 1.2rem; }
.product-footer nav a { color: rgba(255, 255, 255, 0.68); font-size: 0.74rem; font-weight: 700; }
.product-footer nav a:hover { color: #fff; }
.product-footer small { grid-column: 1 / -1; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.66rem; }

/* Custom single-product catalogue page */
.in3-single-product-page { background: #f7f9fc; }
.in3-single-product-page #coming-soon-footer-banner { display: none !important; }
.in3-single-hero {
    position: relative;
    padding: clamp(3.5rem, 5vw, 5rem) 0 clamp(5rem, 8vw, 8rem);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 92% 8%, rgba(var(--product-accent-rgb), 0.22), transparent 28%),
        linear-gradient(145deg, #071426 0%, #0b1b32 68%, #102846 100%);
}
.in3-single-hero::after { content: ''; position: absolute; right: -8vw; bottom: -18vw; width: 44vw; height: 44vw; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 6vw rgba(255,255,255,.025), 0 0 0 12vw rgba(255,255,255,.018); pointer-events: none; }
.in3-single-breadcrumb { position: relative; z-index: 2; display: flex; align-items: center; gap: .6rem; margin-bottom: 2rem; color: rgba(255,255,255,.5); font-size: .67rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.in3-single-breadcrumb a { color: rgba(255,255,255,.7); }
.in3-single-breadcrumb a:hover { color: #fff; }
.in3-single-breadcrumb span { overflow: hidden; max-width: 42ch; text-overflow: ellipsis; white-space: nowrap; }
.in3-single-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.in3-single-media { position: relative; display: grid; place-items: center; min-height: 520px; padding: clamp(2rem, 5vw, 4.5rem); overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,244,249,.94)); box-shadow: 0 40px 90px rgba(0,0,0,.25); }
.in3-single-media > img { position: relative; z-index: 2; width: 100%; max-height: 390px; object-fit: contain; }
.in3-single-media-label { position: absolute; top: 1.3rem; left: 1.5rem; z-index: 3; color: #77879b; font-size: .62rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.in3-single-media-fallback { position: relative; z-index: 2; display: grid; place-items: center; width: min(75%, 340px); min-height: 180px; padding: 2rem; border: 1px solid #e2e8f0; border-radius: 24px; background: #fff; box-shadow: 0 24px 55px rgba(5,18,36,.11); }
.in3-single-media-fallback img { width: 100%; max-width: 240px; max-height: 90px; object-fit: contain; }
.in3-single-media-orbit { position: absolute; right: -28%; bottom: -36%; width: 78%; aspect-ratio: 1; border-radius: 50%; background: rgba(var(--product-accent-rgb), .11); box-shadow: 0 0 0 42px rgba(var(--product-accent-rgb), .045); }
.in3-single-intro .product-brand-shell { margin-bottom: 1.4rem; }
.in3-single-intro .product-eyebrow { color: var(--product-accent); }
.in3-single-product-page .in3-single-intro h1 { max-width: 760px; margin: .85rem 0 1.2rem; color: #fff !important; font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 5.5rem); line-height: .98; letter-spacing: -.05em; }
.in3-single-intro > p { max-width: 680px; margin: 0; color: rgba(255,255,255,.7); font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.75; }
.in3-single-actions { display: flex; align-items: center; gap: 1.25rem; margin-top: 2rem; }
.in3-single-back { display: inline-flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.78); font-size: .78rem; font-weight: 800; }
.in3-single-back:hover { color: #fff; }
.in3-single-intro .product-trust { margin-top: 2rem; }
.in3-single-content-section { padding: clamp(5rem, 8vw, 8rem) 0; background: #fff; }
.in3-single-content-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.in3-single-description h2 { margin: .75rem 0 1.6rem; color: #0b1b32; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.04; letter-spacing: -.04em; }
.in3-single-prose { color: #5e6d81; font-size: 1rem; line-height: 1.85; }
.in3-single-prose > *:first-child { margin-top: 0; }
.in3-single-prose h2, .in3-single-prose h3, .in3-single-prose h4 { color: #10213b; font-family: var(--font-display); }
.in3-single-prose ul { padding-left: 1.2rem; }
.in3-single-prose li { margin: .45rem 0; }
.in3-single-specs { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid #e5eaf0; }
.in3-single-specs h3 { margin: 0 0 1rem; color: #10213b; font-family: var(--font-display); font-size: 1.35rem; }
.in3-single-specs dl { margin: 0; border: 1px solid #e5eaf0; border-radius: 16px; overflow: hidden; }
.in3-single-specs dl > div { display: grid; grid-template-columns: minmax(130px, .4fr) 1fr; gap: 1rem; padding: 1rem 1.2rem; }
.in3-single-specs dl > div + div { border-top: 1px solid #e5eaf0; }
.in3-single-specs dt { color: #68758a; font-size: .78rem; font-weight: 700; }
.in3-single-specs dd { margin: 0; color: #10213b; font-size: .84rem; font-weight: 750; }
.in3-single-support { position: sticky; top: 7.5rem; padding: 2rem; overflow: hidden; color: #fff; border-radius: 24px; background: linear-gradient(145deg, #0b1b32, #102846); box-shadow: 0 28px 65px -35px rgba(5,18,36,.7); }
.in3-single-support > span { color: var(--product-accent); font-size: .65rem; font-weight: 850; letter-spacing: .15em; }
.in3-single-support > i { position: absolute; top: 1.6rem; right: 1.6rem; color: rgba(255,255,255,.12); font-size: 4rem; }
.in3-single-support h2 { max-width: 320px; margin: 1.1rem 0 .8rem; color: #ffffff !important; font-family: var(--font-display); font-size: 2rem; line-height: 1.08; }
.in3-single-support p { margin: 0 0 1.5rem; color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.7; }
.in3-single-support > a { display: flex; justify-content: space-between; align-items: center; gap: .75rem; padding: .9rem 1rem; color: #071426; border-radius: 10px; background: var(--product-accent); font-size: .78rem; font-weight: 850; }
.in3-single-support > a:hover { color: #071426; transform: translateY(-2px); }
.in3-single-support .in3-single-brand-link { margin-top: .7rem; color: #fff; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); }
.in3-single-support .in3-single-brand-link:hover { color: #fff; background: rgba(255,255,255,.1); }
.in3-single-related { padding: clamp(5rem, 8vw, 8rem) 0; background: #f7f9fc; }
.in3-single-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.in3-single-related-grid > a { display: flex; flex-direction: column; min-height: 260px; padding: 1.4rem; color: #10213b; border: 1px solid #e4eaf1; border-radius: 20px; background: #fff; box-shadow: 0 20px 55px -42px rgba(5,18,36,.4); transition: transform .3s ease, box-shadow .3s ease; }
.in3-single-related-grid > a:hover { color: #10213b; transform: translateY(-5px); box-shadow: 0 30px 65px -40px rgba(5,18,36,.48); }
.in3-single-related-grid a > span { display: grid; place-items: center; width: 150px; height: 56px; padding: .65rem; border: 1px solid #edf0f4; border-radius: 10px; background: #fff; }
.in3-single-related-grid img { max-width: 128px; max-height: 34px; object-fit: contain; }
.in3-single-related-grid small { margin-top: auto; color: var(--product-accent); font-size: .62rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.in3-single-related-grid strong { margin-top: .45rem; font-size: 1.05rem; }
.in3-single-related-grid em { display: flex; justify-content: space-between; align-items: center; margin-top: .9rem; color: #68758a; font-size: .72rem; font-style: normal; font-weight: 800; }

@media (max-width: 980px) {
    .in3-single-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .in3-single-media { min-height: 420px; }
    .in3-single-content-grid { grid-template-columns: 1fr; }
    .in3-single-support { position: relative; top: auto; }
}

@media (max-width: 980px) {
    .in3-detail-catalog-grid { grid-template-columns: 1fr; }
    .product-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-application-layout, .product-faq-layout { grid-template-columns: 1fr; }
    .product-app-panel { max-width: 620px; }
}

@media (max-width: 700px) {
    .in3-single-hero { padding-top: 8rem; }
    .in3-single-breadcrumb { align-items: flex-start; flex-wrap: wrap; }
    .in3-single-hero-grid { gap: 2.4rem; }
    .in3-single-media { min-height: 320px; padding: 2rem; border-radius: 22px; }
    .in3-single-intro h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
    .in3-single-actions { align-items: flex-start; flex-direction: column; }
    .in3-single-content-grid { gap: 2.5rem; }
    .in3-single-related-grid { grid-template-columns: 1fr; }
    .in3-single-specs dl > div { grid-template-columns: 1fr; gap: .3rem; }
    .in3-detail-product-card { grid-template-columns: 1fr; }
    .in3-detail-product-media { min-height: 240px; }
    .in3-detail-product-body { min-height: 245px; }
    .in3-detail-catalog-empty { align-items: flex-start; flex-direction: column; }
    .in3-detail-catalog-empty > a { margin-left: 0; }
    .product-hero { min-height: 790px; align-items: flex-end; }
    .product-hero-media img { object-position: 58% center; }
    .product-hero-shade { background: linear-gradient(180deg, rgba(3, 13, 29, 0.3) 0%, rgba(3, 14, 31, 0.86) 38%, rgba(3, 14, 31, 0.98) 100%); }
    .product-hero-inner { padding-top: 8rem; padding-bottom: 3.2rem; }
    .product-hero h1 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
    .product-brand-shell { width: auto; min-width: 155px; height: 46px; margin-bottom: 1rem; border-radius: 11px; }
    .product-brand-shell img { max-width: 180px; max-height: 28px; }
    .product-breadcrumb { margin-bottom: 1rem; font-size: 0.62rem; }
    .product-trust { gap: 0.65rem 1rem; }
    .product-category-grid, .product-related-grid { grid-template-columns: 1fr; }
    .product-category-card { min-height: 245px; }
    .product-related-grid > a { min-height: 180px; }
    .product-final-cta .container { align-items: flex-start; flex-direction: column; }
    .product-footer .container { grid-template-columns: 1fr; }
    .product-footer nav { flex-wrap: wrap; }
    .product-footer small { grid-column: auto; }
}

.in3-slider-fallback {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    color: var(--c-white);
    background: radial-gradient(circle at center, rgba(13, 59, 130, 0.65), var(--c-navy-dark));
}

.in3-slider-fallback h1 {
    max-width: 900px;
    color: inherit;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
}

.in3-slider-fallback p {
    margin-top: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.35rem);
}

@media (max-width: 767px) {
    .in3-rs-slider sr7-txt[id$="-2"] {
        font-size: 22px !important;
        line-height: 26px !important;
        letter-spacing: -0.2px !important;
    }

    .in3-rs-slider sr7-txt[id$="-3"] {
        top: 182px !important;
        font-size: 12px !important;
        line-height: 19px !important;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--c-navy-dark);
    color: var(--c-white);
    padding: 4rem 0 2rem;
    border-top: 6px solid var(--c-red);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(217, 56, 50, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-brand-col {
    padding-right: 2rem;
}

.brand-name {
    color: var(--c-white);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.footer-slogan {
    color: var(--c-gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.red-title {
    color: var(--c-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    display: block;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-list li i {
    color: var(--c-red);
    font-size: 1.2rem;
    margin-top: 0.1rem;
    min-width: 20px;
}

.contact-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--c-white);
}

.link-list li {
    align-items: center;
}

.link-list li::before {
    content: '→';
    color: var(--c-red);
    font-size: 0.9rem;
    margin-right: -0.25rem;
}

.footer-copyright {
    text-align: center;
    color: var(--c-gray-400);
    font-size: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 3rem;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .principles-grid { grid-template-columns: repeat(2, 1fr); }
    .framework-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .pillars-grid, .expertise-grid, .solutions-grid, .industries-grid, .services-grid, .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-mission-grid, .footer-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .product-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workflow-steps, .lifecycle-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step {
        clip-path: none !important;
        border-radius: 16px;
    }
    
    .workflow-steps::before, .arch-arrow {
        display: none;
    }
    
    .partnership-flow {
        flex-direction: column;
        gap: 2rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        animation: pulseArrowVert 2s infinite;
    }
    @keyframes pulseArrowVert {
        0% { transform: rotate(90deg) translateY(0); opacity: 1; }
        50% { transform: rotate(90deg) translateY(-10px); opacity: 0.5; }
        100% { transform: rotate(90deg) translateY(0); opacity: 1; }
    }
    
    .roadmap-diagram {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    
    .roadmap-diagram::before {
        display: none;
    }
    
    .hero-title { font-size: 3.5rem; }
    .footer-manifesto h2 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--c-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-hover);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--transition-base);
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .in3-language-switcher {
        justify-content: center;
        width: 100%;
    }

    .in3-language-menu {
        width: min(260px, 100%);
    }

    .in3-language-menu > summary {
        width: 100%;
    }

    .in3-language-dropdown {
        position: static;
        width: 100%;
        margin-top: 0.55rem;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .principal-grid {
        grid-template-columns: 1fr;
    }

    .principal-card {
        min-height: 280px;
    }
    
    .pillars-grid, .expertise-grid, .solutions-grid, .industries-grid, .services-grid, .reasons-grid, .framework-grid, .roadmap-diagram {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-specs {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   2026 Web Experience Layer
   A web-native visual system built from the company profile's core ideas.
   ========================================================================== */
:root {
    --c-mint: #66cdb7;
    --c-mint-soft: #eaf8f4;
    --c-paper: #f5f7f9;
    --shadow-premium: 0 28px 80px -34px rgba(5, 10, 20, 0.30);
}

body {
    background: var(--c-paper);
}

.site-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 1200;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-red), #ff7a72);
    box-shadow: 0 0 16px rgba(217, 56, 50, 0.45);
    pointer-events: none;
}

.in3-main-navbar {
    border-bottom-color: rgba(10, 17, 32, 0.08);
}

.nav-links a:not(.btn).active {
    color: var(--c-red);
}

.nav-links a:not(.btn).active::after {
    width: 100%;
}

.in3-rs-slider {
    margin-top: 0 !important;
}

.in3-rs-slider::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    z-index: 20;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(5, 10, 20, 0.16));
    pointer-events: none;
}

.capability-ribbon {
    position: relative;
    z-index: 30;
    margin-top: -28px;
}

.capability-ribbon-inner {
    min-height: 150px;
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    padding: 0;
    color: var(--c-white);
    background: rgba(2, 37, 67, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.1);
}

.ribbon-intro,
.ribbon-item {
    padding: 2rem 2.25rem;
}

.ribbon-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.ribbon-kicker,
.editorial-kicker {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--c-red);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ribbon-intro strong {
    color: var(--c-white);
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.ribbon-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.ribbon-item:last-child { border-right: 0; }
.ribbon-item:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); z-index: 2;}

.ribbon-item > i {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--c-white);
    background: linear-gradient(135deg, rgba(217, 56, 50, 0.8), var(--c-red));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 1.6rem;
    box-shadow: 0 5px 15px rgba(217, 56, 50, 0.4);
    transition: transform 0.3s ease;
}

.ribbon-item:hover > i {
    transform: scale(1.1) rotate(5deg);
}

.ribbon-item strong,
.ribbon-item small {
    display: block;
    position: relative;
    z-index: 2;
}

.ribbon-item strong {
    color: var(--c-white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.ribbon-item small {
    margin-top: 0.3rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    line-height: 1.4;
}

.ribbon-number {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.15);
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.ribbon-item:hover .ribbon-number {
    -webkit-text-stroke: 1px rgba(217, 56, 50, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.section-padding {
    padding: clamp(6rem, 9vw, 9rem) 0;
}

.section.bg-light {
    background:
        radial-gradient(circle at 100% 0%, rgba(102, 205, 183, 0.10), transparent 24rem),
        var(--c-paper);
}

.section:not(.bg-light) {
    background: var(--c-white);
}

.section-header {
    position: relative;
    gap: 1.25rem;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-header::after {
    content: '';
    flex: 1;
    height: 1px;
    margin-left: 1rem;
    background: linear-gradient(90deg, rgba(10,17,32,0.15), transparent);
}

.section-number {
    display: none;
}

.section-title {
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.overview-content {
    max-width: 1060px;
    padding-left: clamp(0rem, 7vw, 7rem);
}

.overview-content .lead-text {
    max-width: 980px;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: -0.025em;
}

.overview-content > p:not(.lead-text) {
    max-width: 820px;
    color: #526073;
}

.editorial-kicker {
    color: var(--c-red);
}

.positioning-box,
.pillar-card,
.principle-card,
.expertise-card,
.solution-card,
.service-card,
.reason-card,
.fw-card,
.industry-card {
    box-shadow: var(--shadow-premium);
}

.pillar-card,
.principle-card,
.expertise-card,
.solution-card,
.service-card,
.reason-card,
.fw-card,
.industry-card {
    border-color: rgba(10, 17, 32, 0.08);
}

.pillar-card::after,
.expertise-card::after,
.solution-card::after,
.service-card::after,
.reason-card::after {
    content: '';
    position: absolute;
    inset: auto 1.6rem 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-red), var(--c-mint));
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.pillar-card:hover::after,
.expertise-card:hover::after,
.solution-card:hover::after,
.service-card:hover::after,
.reason-card:hover::after {
    transform: scaleX(1);
}

.floating-contact {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.1rem;
    color: var(--c-white);
    background: var(--c-navy);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    box-shadow: 0 18px 40px -12px rgba(5,10,20,0.45);
    font-size: 0.82rem;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
}

.floating-contact.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-contact i {
    color: var(--c-mint);
    font-size: 1.3rem;
}

.floating-contact:hover {
    color: var(--c-white);
    background: var(--c-red);
    transform: translateY(-3px);
}

@media (max-width: 1100px) {
    .capability-ribbon-inner {
        grid-template-columns: 1.25fr repeat(3, 1fr);
    }
    .ribbon-intro,
    .ribbon-item { padding: 1.7rem 1.4rem; }
    .ribbon-item { gap: 0.7rem; }
}

@media (max-width: 900px) {
    .capability-ribbon { margin-top: -18px; }
    .capability-ribbon-inner { grid-template-columns: repeat(3, 1fr); }
    .ribbon-intro {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .floating-contact {
        width: 48px;
        height: 48px;
        justify-content: center;
        padding: 0;
    }
    .floating-contact span { display: none; }
}

@media (max-width: 768px) {
    .in3-rs-slider { margin-top: 0 !important; }
    .capability-ribbon {
        margin: -12px 1rem 0;
    }
    .capability-ribbon-inner {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }
    .ribbon-intro,
    .ribbon-item {
        padding: 1.35rem 1.5rem;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.09);
    }
    .ribbon-item:last-child { border-bottom: 0; }
    .ribbon-intro strong { font-size: 1.2rem; }
    .section-padding { padding: 5.5rem 0; }
    .section-header {
        align-items: flex-start;
        gap: 0.8rem;
    }
    .section-header::after { display: none; }
    .section-title { font-size: clamp(2.15rem, 12vw, 3.4rem); }
    .overview-content { padding-left: 0; }
    .floating-contact {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Inquiry / Contact Form Section
   ========================================================================== */
.inquiry-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
    border-top: 1px solid #eee;
}

.inquiry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .inquiry-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.inquiry-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .inquiry-form-wrapper {
        padding: 2rem;
    }
}

/* Contact Form 7 Styling */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0d3b82;
    margin-bottom: 0.5rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: #f8fafc;
    font-size: 1rem;
    color: #334155;
    transition: all 0.3s ease;
    font-family: inherit;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #e31e24;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background: #e31e24;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
    margin-top: 1rem;
}

.wpcf7-form input[type="submit"]:hover {
    background: #c81820;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

/* Validation messages */
.wpcf7-not-valid-tip {
    font-size: 0.875rem;
    color: #e31e24;
    margin-top: 0.5rem;
    display: block;
}

div.wpcf7-response-output {
    margin: 1.5rem 0 0 !important;
    padding: 1rem !important;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    border: none !important;
    background-color: #f1f5f9;
}

div.wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #dcfce7;
    color: #166534;
}

div.wpcf7-response-output.wpcf7-validation-errors {
    background-color: #fee2e2;
    color: #991b1b;
}
