@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@200;300;400;500;600;700&display=swap');

/* ============================================
   CORE VARIABLES
   ============================================ */
:root {
    --bg-dark: #0b0a09;
    --bg-soft: #13110f;
    --bg-panel: #17140f;
    --surface: #1c1814;
    --accent: #FF5E14;
    --accent-soft: #ff7a3d;
    --accent-glow: rgba(255, 94, 20, 0.18);
    --amber: #f7b267;
    --text-light: #f5f2ec;
    --text-muted: rgba(245, 242, 236, 0.55);
    --text-dim: rgba(245, 242, 236, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.035);
    --glass-border: rgba(255, 255, 255, 0.08);
    --divider: rgba(255, 255, 255, 0.06);
    --spacer: 10rem;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: #0b0a09;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.safety-shield {
    position: relative;
    width: 64px;
    height: 74px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.shield-core {
    position: absolute;
    inset: 4px;
    background: #0b0a09;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-core::after {
    content: '\f132';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 1.5rem;
}

.shield-pulse {
    position: absolute;
    inset: -10px;
    border: 1px solid var(--accent);
    border-radius: 10%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0;
    animation: shield-pulse 2s infinite var(--ease);
}

@keyframes shield-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.preloader-branding {
    text-align: center;
}

.brand-text {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.status-text {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    opacity: 0.8;
}

.loading-bar-wrap {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar {
    width: 0;
    height: 100%;
    background: var(--accent);
    animation: load 2.5s infinite var(--ease);
}

@keyframes load {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 100%;
        left: 0;
        opacity: 0;
    }
}

/* ============================================
   BASE
   ============================================ */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.65;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
}

::selection {
    background: var(--accent);
    color: #fff;
}

/* ============================================
   NAV
   ============================================ */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.5s var(--ease);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(11, 10, 9, 0.85) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--divider);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 42px;
    transition: all 0.4s var(--ease);
}

.navbar .nav-link {
    color: var(--text-light) !important;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 0.5rem 1.25rem !important;
    text-transform: uppercase;
    opacity: 0.65;
    transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
    position: relative;
}

.navbar .nav-link:hover {
    opacity: 1;
    color: var(--accent) !important;
}

.navbar-toggler {
    border: 1px solid var(--glass-border);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Active link — orange accent + underline (skip dropdown-toggles which use ::after for the chevron) */
.navbar .nav-link.active {
    opacity: 1;
    color: var(--accent) !important;
    position: relative;
}

.navbar .nav-link.active:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 0.2rem;
    height: 1.5px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.75;
}

/* Active dropdown parent: give the chevron full opacity */
.navbar .nav-link.dropdown-toggle.active::after {
    opacity: 1;
}

@media (max-width: 991px) {
    .navbar .nav-link.active:not(.dropdown-toggle)::after {
        display: none;
    }
}

/* Dropdown trigger */
.navbar .nav-item.dropdown .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    vertical-align: middle;
    margin-left: 0.35rem;
    opacity: 0.6;
    transition: transform 0.3s var(--ease);
}

.navbar .nav-item.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown menu panel */
.navbar .dropdown-menu {
    background: rgba(17, 14, 11, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.6rem;
    min-width: 260px;
    margin-top: 0.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    animation: dropdownIn 0.25s var(--ease);
}

@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown-item {
    color: var(--text-light);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 0.7rem 1rem 0.7rem 1.25rem;
    border-radius: 8px;
    transition: color 0.3s var(--ease),
        background 0.3s var(--ease),
        padding 0.3s var(--ease);
    font-weight: 400;
    position: relative;
    background: transparent;
}

.navbar .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0.55rem;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 2px;
    height: 55%;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s var(--ease);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(255, 94, 20, 0.08);
    color: var(--accent);
    padding-left: 1.5rem;
}

.navbar .dropdown-item:hover::before,
.navbar .dropdown-item:focus::before {
    transform: translateY(-50%) scaleY(1);
}

/* Active (current page) state — overrides Bootstrap's blue default */
.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item.active:hover,
.navbar .dropdown-item.active:focus {
    background: linear-gradient(90deg, rgba(255, 94, 20, 0.15), rgba(255, 94, 20, 0.03));
    color: var(--accent) !important;
    font-weight: 500;
    padding-left: 1.5rem;
}

.navbar .dropdown-item.active::before {
    transform: translateY(-50%) scaleY(1);
    height: 65%;
    width: 3px;
    box-shadow: 0 0 8px rgba(255, 94, 20, 0.6);
}

/* Nav phone CTA */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 94, 20, 0.08);
    border: 1px solid rgba(255, 94, 20, 0.25);
    border-radius: 100px;
    color: var(--accent) !important;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
    margin-left: 1rem;
}

.nav-cta:hover {
    background: var(--accent);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 94, 20, 0.35);
}

.nav-cta i {
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .navbar .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0.25rem 0 0.5rem 1rem;
        margin-top: 0;
        backdrop-filter: none;
        animation: none;
        min-width: 0;
    }

    .navbar.scrolled,
    .navbar-collapse.show {
        background: rgba(11, 10, 9, 0.98);
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        width: fit-content;
    }
}

/* ============================================
   FOLD 1 — CHATBOT / HERO (Sulata-inspired)
   Light-touch dark palette with warm ambient glow.
   ============================================ */
.chatbot-section {
    min-height: 100vh;
    padding: 9rem 1.5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background:
        radial-gradient(ellipse 90% 60% at 50% 30%, rgba(255, 94, 20, 0.12), transparent 60%),
        radial-gradient(ellipse 70% 50% at 50% 85%, rgba(247, 178, 103, 0.06), transparent 55%),
        linear-gradient(180deg, #0b0a09 0%, #110e0b 70%, #0b0a09 100%);
    overflow: hidden;
}

/* Subtle grain / ambient particles overlay */
.chatbot-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.05) 50%, transparent 50%),
        radial-gradient(1px 1px at 80% 70%, rgba(255, 255, 255, 0.04) 50%, transparent 50%),
        radial-gradient(1px 1px at 40% 80%, rgba(255, 94, 20, 0.08) 50%, transparent 50%);
    background-size: 400px 400px, 300px 300px, 500px 500px;
    pointer-events: none;
    opacity: 0.6;
}

.chatbot-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(255, 94, 20, 0.08), transparent 50%);
    pointer-events: none;
}

.chat-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.chat-intro .eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 94, 20, 0.3);
    border-radius: 100px;
    background: rgba(255, 94, 20, 0.05);
}

.chat-intro h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
    text-transform: none;
}

.chat-intro h1 .accent {
    color: var(--accent);
    font-weight: 500;
    font-style: italic;
}

.chat-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.chat-container {
    max-width: 760px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* ---- Collapsible Conversation Panel ---- */
.chat-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(12px);
    transition:
        max-height 0.6s var(--ease),
        opacity 0.45s var(--ease),
        transform 0.5s var(--ease),
        margin-bottom 0.5s var(--ease);
    margin-bottom: 0;
    pointer-events: none;
}

.chat-container.is-open .chat-panel {
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 0.75rem;
    pointer-events: auto;
}

.chat-panel-inner {
    background: linear-gradient(180deg, rgba(28, 24, 20, 0.78), rgba(17, 14, 11, 0.88));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 18px;
    padding: 1.5rem 1.75rem 1.25rem;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
    position: relative;
}

.chat-panel-inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.3), transparent 40%, transparent 60%, rgba(255, 94, 20, 0.15));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.chat-header {
    padding: 0.25rem 0.25rem 1rem;
    border-bottom: 1px solid var(--divider);
    margin-bottom: 1.25rem;
}

.chat-header h2 {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.1rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.chat-header h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.chat-header p {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin: 0;
}

.chat-header .btn-link {
    color: var(--text-dim) !important;
    font-size: 0.95rem;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    text-decoration: none !important;
    border: 1px solid var(--glass-border);
}

.chat-header .btn-link:hover {
    color: var(--accent) !important;
    background: rgba(255, 94, 20, 0.08);
    border-color: rgba(255, 94, 20, 0.3);
}

.chat-messages {
    padding: 0.25rem;
    max-height: 340px;
    overflow-y: auto;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s var(--ease) both;
}

.message.bot {
    align-items: flex-start;
}

.message.user {
    align-items: flex-end;
}

.bubble {
    padding: 0.9rem 1.25rem;
    border-radius: 14px;
    max-width: 78%;
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 400;
    position: relative;
}

.message.bot .bubble {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    border-bottom-left-radius: 4px;
}

.message.user .bubble {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #fff;
    font-weight: 500;
    border-bottom-right-radius: 4px;
    box-shadow: 0 8px 24px rgba(255, 94, 20, 0.25);
}

.bubble ul {
    margin: 0.5rem 0 0;
    padding-left: 1.1rem;
}

.bubble ul li {
    margin-bottom: 0.25rem;
}

.bubble strong {
    color: var(--accent);
    font-weight: 600;
}

.message.user .bubble strong {
    color: #fff;
    text-decoration: underline;
}

.bubble-sources {
    margin-top: 0.75rem;
    padding-top: 0.6rem;
    border-top: 1px dashed var(--glass-border);
    font-size: 0.72rem;
    color: var(--text-dim);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.bubble-sources .src-label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--accent);
    margin-right: 0.2rem;
}

.bubble-sources .src-pill {
    background: rgba(255, 94, 20, 0.08);
    border: 1px solid rgba(255, 94, 20, 0.2);
    border-radius: 100px;
    padding: 0.15rem 0.55rem;
    color: var(--text-light);
    font-size: 0.7rem;
}

.chat-input-area input:disabled,
.send-btn:disabled,
.suggestion-chip:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Primary standalone search / input bar */
.chat-input-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(180deg, rgba(28, 24, 20, 0.85), rgba(17, 14, 11, 0.9));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 100px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    transition: all 0.4s var(--ease);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 94, 20, 0.05) inset;
    position: relative;
}

.chat-input-area::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.35), transparent 50%, rgba(255, 94, 20, 0.15));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s var(--ease);
}

.chat-input-area:hover::before,
.chat-input-area:focus-within::before {
    opacity: 1;
}

.chat-input-area:focus-within {
    border-color: rgba(255, 94, 20, 0.35);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 6px rgba(255, 94, 20, 0.08);
}

.chat-input-icon {
    color: var(--accent);
    font-size: 0.95rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.chat-input-area input {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    width: 100%;
    padding: 0.85rem 0;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.chat-input-area input::placeholder {
    color: var(--text-dim);
}

.send-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    border: none;
    color: #fff;
    font-size: 0.9rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(255, 94, 20, 0.4);
}

.send-btn:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 94, 20, 0.55);
}

/* Suggestion chips */
.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 2;
}

.suggestion-chip {
    padding: 0.55rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: 'Inter', sans-serif;
}

.suggestion-chip:hover {
    background: rgba(255, 94, 20, 0.08);
    border-color: rgba(255, 94, 20, 0.3);
    color: var(--text-light);
    transform: translateY(-1px);
}

/* Typing Indicator */
.typing-dots {
    display: flex;
    gap: 5px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    width: fit-content;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.3;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FOLD 2 — PARALLAX BREAK
   ============================================ */
.hero-banner-section {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(11, 10, 9, 0.55) 0%, rgba(11, 10, 9, 0.3) 50%, rgba(11, 10, 9, 0.9) 100%),
        url('../images/parallax_bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay-text {
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
}

.banner-overlay-text .section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 94, 20, 0.35);
    border-radius: 100px;
    background: rgba(255, 94, 20, 0.05);
    backdrop-filter: blur(10px);
}

.banner-overlay-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 200;
    letter-spacing: clamp(4px, 1.5vw, 14px);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

/* ============================================
   FOLD 3 — PRODUCT CARDS
   ============================================ */
.products-section {
    padding: var(--spacer) 1.5rem;
    max-width: 1280px;
}

.section-label {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: block;
}

.section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-transform: none;
}

.section-heading .accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
}

.product-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.25rem;
    height: 100%;
    padding: 1.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0.02) 100%);
    border: 1px solid rgba(255, 94, 20, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all 0.4s var(--ease);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 240px;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(255, 94, 20, 0.15), transparent 70%);
    pointer-events: none;
}

.product-card:hover {
    border-color: rgba(255, 94, 20, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: inherit;
}

.product-media {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255, 94, 20, 0.08);
    border: 1px solid rgba(255, 94, 20, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2rem;
    filter: drop-shadow(0 12px 30px rgba(255, 94, 20, 0.25));
    transition: transform 0.4s var(--ease);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.product-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card:hover .product-media {
    transform: scale(1.04) rotate(-2deg);
}

.product-body {
    position: relative;
    z-index: 3;
    min-width: 0;
}

.product-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 0.4rem;
    line-height: 1.3;
    color: var(--text-light);
}

.product-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0 0 0.85rem;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    transition: all 0.3s var(--ease);
}

.product-cta i {
    font-size: 0.7rem;
    transition: transform 0.3s var(--ease);
}

.product-card:hover .product-cta {
    color: var(--accent);
}

.product-card:hover .product-cta i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .product-card {
        grid-template-columns: auto 1fr;
        padding: 1.25rem;
    }

    .product-media {
        width: 72px;
        height: 72px;
        font-size: 1.6rem;
    }
}

/* ============================================
   FOLD 4 — COMPACT CONTACT
   ============================================ */
.contact-section {
    padding: 4rem 1.5rem var(--spacer);
    max-width: 1280px;
}

.contact-card {
    background: linear-gradient(180deg, #161310 0%, #120f0c 100%);
    border: 1px solid var(--divider);
    padding: 3.5rem;
    border-radius: 16px;
}

.contact-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.3px;
    text-transform: none;
    line-height: 1.2;
}

.contact-card h2 .accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-light) !important;
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    font-size: 0.92rem;
    transition: all 0.3s var(--ease);
}

.form-control::placeholder {
    color: var(--text-dim);
}

.form-control:focus {
    background: rgba(255, 94, 20, 0.04);
    border-color: rgba(255, 94, 20, 0.4);
    box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.08);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    border: none;
    border-radius: 8px;
    padding: 0.85rem 2.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 24px rgba(255, 94, 20, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 94, 20, 0.4);
    background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.contact-info-item {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 94, 20, 0.25);
}

.contact-info-item small {
    display: block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.68rem;
    margin-bottom: 0.35rem;
}

.contact-info-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ============================================
   FOLD 5 — FIRE & SAFETY PARALLAX
   ============================================ */
.fire-safety-parallax {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(11, 10, 9, 0.8) 0%, rgba(11, 10, 9, 0.4) 50%, rgba(11, 10, 9, 0.8) 100%),
        url('../images/fire-safety-parallax.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacer);
}

.parallax-content {
    z-index: 10;
    max-width: 800px;
    padding: 0 1.5rem;
}

.parallax-content .section-label {
    margin-bottom: 2rem;
}

.parallax-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 200;
    letter-spacing: clamp(1px, 0.5vw, 4px);
    margin: 0;
    line-height: 1.1;
    text-transform: none;
}

.parallax-content h2 .accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.parallax-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-heritage-parallax {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(11, 10, 9, 0.8) 0%, rgba(11, 10, 9, 0.4) 50%, rgba(11, 10, 9, 0.8) 100%),
        url('../images/about-heritage-parallax.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-parallax {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(11, 10, 9, 0.8) 0%, rgba(11, 10, 9, 0.4) 50%, rgba(11, 10, 9, 0.8) 100%),
        url('../images/contact-parallax.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   PRE-FOOTER — WE REPRESENT + AATISHNAMA
   ============================================ */
.pre-footer {
    background: linear-gradient(180deg, #0b0a09 0%, #0d0c0a 100%);
    border-top: 1px solid var(--divider);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.pre-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 94, 20, 0.06), transparent 60%);
    pointer-events: none;
}

.represent-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.represent-header .section-label {
    margin-bottom: 0.75rem;
}

.represent-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    letter-spacing: -0.3px;
    text-transform: none;
    margin: 0;
}

.represent-header h3 .accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.represent-strip {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.represent-strip .brand-tile {
    background: #f6f3ee;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.1rem;
    transition: all 0.4s var(--ease);
    overflow: hidden;
    position: relative;
}

.represent-strip .brand-tile img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.4s var(--ease);
}

.represent-strip .brand-tile:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 94, 20, 0.25);
}

.represent-strip .brand-tile:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .represent-strip {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 991px) {
    .represent-strip {
        grid-template-columns: repeat(4, 1fr);
    }

    .represent-strip .brand-tile {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .represent-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .represent-strip .brand-tile {
        height: 70px;
        padding: 0.6rem 0.75rem;
    }
}

/* Aatishnama download card */
.aatishnama-card {
    max-width: 960px;
    margin: 4rem auto 0;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0.02) 100%);
    border: 1px solid rgba(255, 94, 20, 0.2);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all 0.4s var(--ease);
}

.aatishnama-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(255, 94, 20, 0.15), transparent 70%);
    pointer-events: none;
}

.aatishnama-card:hover {
    border-color: rgba(255, 94, 20, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.aatishnama-logo {
    width: 110px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.aatishnama-logo img {
    max-width: 100%;
    height: auto;
    max-height: 90px;
    filter: drop-shadow(0 12px 30px rgba(255, 94, 20, 0.35));
    transition: transform 0.4s var(--ease);
}

.aatishnama-card:hover .aatishnama-logo img {
    transform: scale(1.04) rotate(-2deg);
}

.aatishnama-content .section-label {
    margin-bottom: 0.5rem;
}

.aatishnama-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0.35rem;
    color: var(--text-light);
}

.aatishnama-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    max-width: 480px;
}

.aatishnama-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #fff !important;
    border: none;
    border-radius: 100px;
    padding: 0.85rem 1.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 24px rgba(255, 94, 20, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

.aatishnama-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 94, 20, 0.45);
    color: #fff !important;
}

@media (max-width: 768px) {
    .aatishnama-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }

    .aatishnama-logo {
        margin: 0 auto;
    }

    .aatishnama-content p {
        margin: 0 auto;
    }

    .aatishnama-btn {
        justify-self: center;
    }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 5rem 0 0;
    border-top: 1px solid var(--divider);
    background: #080706;
}

footer .footer-grid {
    padding-bottom: 3.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.barry-badge {
    display: inline-block;
    margin-top: 1.5rem;
    transition: transform 0.3s var(--ease);
}

.barry-badge:hover {
    transform: translateY(-2px);
}

.barry-badge img {
    height: 48px;
    width: auto;
    display: block;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s var(--ease);
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(3px);
}

footer h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem !important;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
}

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

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
    line-height: 1.55;
}

.footer-contact i {
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 14px;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.footer-contact a:hover {
    color: var(--accent);
}

footer .input-group .form-control {
    border-radius: 8px 0 0 8px !important;
}

footer .input-group .btn {
    border-radius: 0 8px 8px 0 !important;
    background: rgba(255, 94, 20, 0.1);
    border: 1px solid rgba(255, 94, 20, 0.3) !important;
    color: var(--accent) !important;
    transition: all 0.3s var(--ease);
}

footer .input-group .btn:hover {
    background: var(--accent);
    color: #fff !important;
}

.social-links a {
    color: var(--text-light);
    margin-right: 0.6rem;
    font-size: 0.9rem;
    opacity: 0.5;
    transition: all 0.3s var(--ease);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--divider);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: var(--text-dim);
    font-size: 0.78rem;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom .legal-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.footer-bottom .legal-links a:hover {
    color: var(--accent);
}

.sulata-credit {
    display: inline-flex;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s var(--ease);
    text-decoration: none;
}

.sulata-credit img {
    height: 22px;
    width: auto;
    display: block;
}

.sulata-credit:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   INNER PAGES
   ============================================ */
.page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 1.5rem 6rem;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 50% 40%, rgba(255, 94, 20, 0.14), transparent 60%),
        linear-gradient(180deg, #0b0a09 0%, #14110e 60%, #0b0a09 100%);
    border-bottom: 1px solid var(--divider);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.04) 50%, transparent 50%),
        radial-gradient(1px 1px at 80% 70%, rgba(255, 94, 20, 0.06) 50%, transparent 50%);
    background-size: 350px 350px, 450px 450px;
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-cutouts-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-cutout {
    position: absolute;
    width: 6vw;
    height: calc(var(--h) * 1vh);
    left: calc(var(--x) * 1vw);
    top: calc(var(--y) * 1vh);
    border-radius: 100px;
    transform-origin: top left;
    transform: skewX(-15deg);
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 94, 20, 0.1);
    opacity: 0.6;
    transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}

.hero-cutout-bg {
    position: absolute;
    transform-origin: top left;
    transform: skewX(15deg);
    width: 100vw;
    height: 100vh;
    left: calc(var(--x) * -1vw);
    top: calc(var(--y) * -1vh);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    pointer-events: none;
}

.page-hero:hover .hero-cutout {
    opacity: 0.9;
}

/* Positions using CSS variables for clean math! */
.hero-cutout-left-1 {
    --x: 4;
    --y: 28.75;
    --h: 22.5;
}

.hero-cutout-left-2 {
    --x: 11;
    --y: 21.25;
    --h: 37.5;
}

.hero-cutout-left-3 {
    --x: 18;
    --y: 26.25;
    --h: 27.5;
}

.hero-cutout-right-1 {
    --x: 76;
    --y: 26.25;
    --h: 27.5;
}

/* 100 - 18 - 6 = 76 */
.hero-cutout-right-2 {
    --x: 83;
    --y: 21.25;
    --h: 37.5;
}

/* 100 - 11 - 6 = 83 */
.hero-cutout-right-3 {
    --x: 90;
    --y: 28.75;
    --h: 22.5;
}

/* 100 - 4 - 6 = 90 */

@media (max-width: 991px) {

    .hero-cutout-left-1,
    .hero-cutout-right-3 {
        display: none;
    }

    .hero-cutout-left-2 {
        --x: 5;
        --y: 25;
        --h: 30;
    }

    .hero-cutout-left-3 {
        --x: 14;
        --y: 28.75;
        --h: 22.5;
    }

    .hero-cutout-right-1 {
        --x: 80;
        --y: 28.75;
        --h: 22.5;
    }

    /* 100 - 14 - 6 = 80 */
    .hero-cutout-right-2 {
        --x: 89;
        --y: 25;
        --h: 30;
    }

    /* 100 - 5 - 6 = 89 */
}

@media (max-width: 767px) {
    .hero-cutouts-container {
        opacity: 0.3;
    }

    .hero-cutout-left-3,
    .hero-cutout-right-1 {
        display: none;
    }

    .hero-cutout-left-2 {
        --x: 5;
        --y: 27.5;
        --h: 25;
    }

    .hero-cutout-right-2 {
        --x: 89;
        --y: 27.5;
        --h: 25;
    }
}

.page-hero .eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 94, 20, 0.3);
    border-radius: 100px;
    background: rgba(255, 94, 20, 0.05);
}

.page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-transform: none;
    margin-bottom: 1.25rem;
}

.page-hero h1 .accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.page-hero .lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

.breadcrumb-nav {
    margin-top: 2rem;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.breadcrumb-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.breadcrumb-nav a:hover {
    color: var(--accent);
}

.breadcrumb-nav .sep {
    margin: 0 0.75rem;
    opacity: 0.4;
}

.breadcrumb-nav .current {
    color: var(--accent);
}

/* Content block */
.page-section {
    padding: var(--spacer) 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-section .section-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.content-block {
    max-width: 820px;
}

.content-block p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.content-block p:first-of-type::first-letter {
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    font-size: 3rem;
    font-weight: 500;
    float: left;
    line-height: 0.9;
    padding-right: 0.75rem;
    padding-top: 0.3rem;
}

.content-block strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Leadership card */
.leader-card {
    background: linear-gradient(180deg, #161310 0%, #120f0c 100%);
    border: 1px solid var(--divider);
    border-radius: 14px;
    padding: 2.25rem 2rem;
    height: 100%;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}

.leader-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 94, 20, 0.25);
}

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

.leader-card .avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.leader-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.25rem;
}

.leader-card .role {
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

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

/* Certification band */
.cert-band {
    background: linear-gradient(180deg, #13100d 0%, #0d0b09 100%);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 4rem 1.5rem;
}

.cert-band .cert-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
}

.cert-band .cert-icon {
    width: 96px;
    height: 96px;
    background: rgba(255, 94, 20, 0.08);
    border: 1px solid rgba(255, 94, 20, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.cert-band h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}

.cert-band p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .cert-band .cert-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .cert-band .cert-icon {
        margin: 0 auto;
    }
}

/* Brand strip */
.brand-strip {
    padding: var(--spacer) 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brand-strip .section-heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 3rem;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-tile {
    background: linear-gradient(180deg, #161310 0%, #120f0c 100%);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 2rem 1.25rem;
    text-align: center;
    transition: all 0.4s var(--ease);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.brand-tile:hover {
    border-color: rgba(255, 94, 20, 0.3);
    color: var(--accent);
    transform: translateY(-3px);
    background: linear-gradient(180deg, #1c1814 0%, #161310 100%);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    :root {
        --spacer: 7rem;
    }

    .hero-banner-section {
        background-attachment: scroll;
    }

    .contact-card {
        padding: 2.5rem 1.75rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacer: 5rem;
    }

    .chatbot-section {
        padding: 7rem 1rem 4rem;
    }

    .chat-window {
        padding: 1.5rem 1.25rem 1rem;
    }

    .chat-intro {
        margin-bottom: 2rem;
    }

    .bubble {
        max-width: 90%;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .product-card {
        grid-template-columns: auto 1fr;
        padding: 1.1rem;
        gap: 1rem;
    }

    .product-media {
        width: 64px;
        height: 64px;
        font-size: 1.4rem;
        border-radius: 12px;
    }

    .product-body h3 {
        font-size: 1.05rem;
    }

    .product-body p {
        font-size: 0.82rem;
        margin-bottom: 0.65rem;
    }

    .contact-card {
        padding: 2rem 1.25rem;
    }

    .navbar .nav-link {
        padding: 0.75rem 0 !important;
    }
}

/* ============================================
   FIXED RIGHT CONTACT PANEL
   ============================================ */
.fixed-contact-wrapper {
    position: fixed;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1050;
    display: flex;
    align-items: flex-start;
}

.fixed-contact-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 1.25rem 0.5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s var(--ease);
}

.fixed-contact-btn:hover {
    background: var(--accent-soft);
    padding-left: 0.75rem;
}

.fixed-contact-btn i {
    transform: rotate(90deg);
    font-size: 1.1rem;
}

.fixed-contact-panel {
    width: 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(28, 24, 20, 0.98), rgba(17, 14, 11, 0.98));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-right: none;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
    transition: width 0.4s var(--ease), padding 0.4s var(--ease), opacity 0.4s var(--ease);
    border-radius: 18px 0 0 18px;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
    opacity: 0;
}

.fixed-contact-wrapper.is-open .fixed-contact-panel {
    width: 380px;
    padding: 2rem 2rem 2.5rem;
    opacity: 1;
}

.fixed-contact-wrapper.is-open .fixed-contact-btn {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.btn-close-panel {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s var(--ease);
    padding: 0;
}

.btn-close-panel:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .fixed-contact-wrapper.is-open .fixed-contact-panel {
        width: 320px;
        padding: 1.5rem;
    }
}


/* ============================================
   PRODUCT CATEGORIES PAGE
   ============================================ */
.category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.06) 0%, rgba(255, 94, 20, 0.01) 100%);
    border: 1px solid rgba(255, 94, 20, 0.15);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all 0.4s var(--ease);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(255, 94, 20, 0.12), transparent 70%);
    pointer-events: none;
}

.category-card:hover {
    border-color: rgba(255, 94, 20, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    color: inherit;
}

.category-media {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255, 94, 20, 0.1);
    border: 1px solid rgba(255, 94, 20, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 3;
}

.category-card:hover .category-media {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 15px 35px rgba(255, 94, 20, 0.25);
}

.category-body {
    position: relative;
    z-index: 3;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 0.75rem;
    line-height: 1.3;
    color: var(--text-light);
}

.category-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.category-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--divider);
}

.category-count {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 94, 20, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 94, 20, 0.2);
}

.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}

.category-cta i {
    font-size: 0.7rem;
    transition: transform 0.3s var(--ease);
}

.category-card:hover .category-cta {
    color: var(--accent);
}

.category-card:hover .category-cta i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .category-card {
        padding: 1.5rem;
    }

    .category-media {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }

    .category-body h3 {
        font-size: 1.1rem;
    }

    .category-body p {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .category-card {
        padding: 1.25rem;
    }

    .category-media {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        border-radius: 12px;
    }

    .category-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}


/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-image {
    position: relative;
}

.product-image-wrapper {
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.1) 0%, rgba(255, 94, 20, 0.02) 100%);
    border: 1px solid rgba(255, 94, 20, 0.2);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(255, 94, 20, 0.15), transparent 70%);
    pointer-events: none;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.product-image-wrapper i {
    font-size: 8rem;
    color: var(--accent);
    opacity: 0.85;
    filter: drop-shadow(0 20px 50px rgba(255, 94, 20, 0.4));
}

.product-quick-actions .btn {
    padding: 1rem 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.product-detail-info .product-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.product-detail-info .product-sku,
.product-detail-info .product-brand {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
}

.product-detail-info .product-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.product-features h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    border-bottom: 1px solid var(--divider);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* Specification Card */
.spec-card {
    background: linear-gradient(180deg, #161310 0%, #120f0c 100%);
    border: 1px solid var(--divider);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
}

.spec-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.spec-card h3 i {
    color: var(--accent);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--divider);
    vertical-align: top;
}

.spec-table th {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.9rem;
    width: 40%;
    letter-spacing: 0.5px;
}

.spec-table td {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table tr:hover {
    background: rgba(255, 94, 20, 0.03);
}

/* Applications Card */
.applications-card {
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0.02) 100%);
    border: 1px solid rgba(255, 94, 20, 0.15);
    border-radius: 16px;
    padding: 2rem;
}

.applications-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.applications-card h3 i {
    color: var(--accent);
}

.applications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.application-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 94, 20, 0.08);
    border: 1px solid rgba(255, 94, 20, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-light);
    transition: all 0.3s var(--ease);
}

.application-tag:hover {
    background: rgba(255, 94, 20, 0.15);
    border-color: rgba(255, 94, 20, 0.35);
    color: var(--accent);
}

/* Certifications Card */
.certifications-card {
    background: linear-gradient(180deg, #161310 0%, #120f0c 100%);
    border: 1px solid var(--divider);
    border-radius: 16px;
    padding: 2rem;
}

.certifications-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.certifications-card h3 i {
    color: var(--accent);
}

.cert-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .product-image-wrapper {
        min-height: 280px;
        padding: 2rem;
    }

    .product-image-wrapper i {
        font-size: 6rem;
    }
}

@media (max-width: 767px) {
    .product-detail-info .product-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .spec-card,
    .applications-card,
    .certifications-card {
        padding: 1.5rem;
    }

    .spec-table th {
        width: 45%;
    }
}


/* ============================================
   SERVICES PAGE
   ============================================ */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.06) 0%, rgba(255, 94, 20, 0.01) 100%);
    border: 1px solid rgba(255, 94, 20, 0.15);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all 0.4s var(--ease);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(255, 94, 20, 0.12), transparent 70%);
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(255, 94, 20, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    color: inherit;
}

.service-media {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255, 94, 20, 0.1);
    border: 1px solid rgba(255, 94, 20, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 3;
}

.service-card:hover .service-media {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 15px 35px rgba(255, 94, 20, 0.25);
}

.service-body {
    position: relative;
    z-index: 3;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 0.75rem;
    line-height: 1.3;
    color: var(--text-light);
}

.service-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--divider);
}

.service-highlight {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 94, 20, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 94, 20, 0.2);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}

.service-cta i {
    font-size: 0.7rem;
    transition: transform 0.3s var(--ease);
}

.service-card:hover .service-cta {
    color: var(--accent);
}

.service-card:hover .service-cta i {
    transform: translateX(4px);
}

/* Stats Card */
.stat-card {
    background: linear-gradient(180deg, #161310 0%, #120f0c 100%);
    border: 1px solid var(--divider);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.stat-card:hover {
    border-color: rgba(255, 94, 20, 0.25);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Certifications Showcase */
.certifications-showcase {
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0.02) 100%);
    border: 1px solid rgba(255, 94, 20, 0.15);
    border-radius: 16px;
    padding: 2rem;
}

.certifications-showcase h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

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

.cert-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--divider);
}

.cert-list li:last-child {
    border-bottom: none;
}

.cert-list li i {
    color: var(--accent);
    font-size: 1rem;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-icon .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.1) 0%, rgba(255, 94, 20, 0.02) 100%);
    border: 1px solid rgba(255, 94, 20, 0.2);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.service-detail-icon .service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(255, 94, 20, 0.15), transparent 70%);
    pointer-events: none;
}

.service-detail-icon .service-icon-wrapper i {
    font-size: 7rem;
    color: var(--accent);
    opacity: 0.85;
    filter: drop-shadow(0 20px 50px rgba(255, 94, 20, 0.4));
}

.service-quick-info .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.service-quick-info .info-label {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.service-quick-info .info-value {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.service-quick-actions .btn {
    padding: 1rem 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.service-detail-info .service-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
}

/* Process Card */
.process-card {
    background: linear-gradient(180deg, #161310 0%, #120f0c 100%);
    border: 1px solid var(--divider);
    border-radius: 16px;
    padding: 2rem;
}

.process-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.process-card h3 i {
    color: var(--accent);
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: none;
}

.process-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--divider);
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list .step-number {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(255, 94, 20, 0.1);
    border: 1px solid rgba(255, 94, 20, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.process-list .step-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    padding-top: 0.3rem;
}

/* Benefits Card */
.benefits-card {
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0.02) 100%);
    border: 1px solid rgba(255, 94, 20, 0.15);
    border-radius: 16px;
    padding: 2rem;
}

.benefits-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.benefits-card h3 i {
    color: var(--accent);
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.benefit-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 94, 20, 0.1);
    border: 1px solid rgba(255, 94, 20, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-light);
    transition: all 0.3s var(--ease);
}

.benefit-tag:hover {
    background: rgba(255, 94, 20, 0.18);
    border-color: rgba(255, 94, 20, 0.4);
    color: var(--accent);
}

@media (max-width: 991px) {
    .service-media {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    .service-detail-icon .service-icon-wrapper {
        min-height: 220px;
        padding: 2rem;
    }

    .service-detail-icon .service-icon-wrapper i {
        font-size: 5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .service-media {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        border-radius: 12px;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}