@font-face {
    font-family: 'Myriad Arabic';
    src: url('Myriad Arabic Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.eyebrow,
nav {
    display: flex;
    align-items: center
}

.eyebrow-label,
.logo-by {
    font-family: Poppins, sans-serif;
    text-transform: uppercase
}

.btn-arrow:hover,
.hero-h1 .accent,
.logo-name .dash,
.nav-links a.active,
.nav-links a:hover {
    color: var(--gold)
}

.eyebrow-label {
    color: var(--navy);
}

#about-hindustan-nylons,
#contact-manufacturers-of-ptfe-products,
#ptfe-products {
    padding: 40px 6%;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
}

#ptfe-products-manufacturers-and-exporters {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 1024px) {

    #about-hindustan-nylons,
    #contact-manufacturers-of-ptfe-products,
    #ptfe-products {
        padding: var(--pad);
    }

    #ptfe-products-manufacturers-and-exporters {
        display: grid;
        grid-template-columns: 58% 42%;
        min-height: 100vh;
    }
}

:root {
    --white: #FFFFFF;
    --off-white: #F7F6F2;
    --navy: #0B2545;
    --navy-mid: #0B2545;
    --gold: #FCC417;
    --gold-hover: #D4A017;
    --gold-glow: rgba(252, 196, 23, 0.12);
    --charcoal: #1A2535;
    --grey: #555555;
    --grey-light: #E4E4DE;
    --text: #1C2B3A;
    --pad: 120px 8%
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: #1a1a1a;
    overflow-x: hidden;
    line-height: 1.8;
    font-weight: 500;
}

.btn-gold,
.btn-submit,
.fade-in,
.hero-ghost,
.nav-links a,
.split-prod-item {
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0)
}

.page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity .6s ease, visibility .6s ease
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden
}

.loader-container {
    position: relative;
    width: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.loader-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    z-index: 2;
    margin-bottom: 5px;
}

.loader-ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 4px solid rgba(11, 37, 69, 0.08);
    border-top: 4px solid var(--navy);
    border-radius: 50%;
    animation: loader-spin 1.2s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
    z-index: 1;
    top: -35px;
}

.loader-progress-container {
    width: 100%;
    height: 4px;
    background: rgba(11, 37, 69, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.loader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width 0.4s ease;
}

.loader-status {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-top: 5px;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .5s ease-out, transform .5s ease-out
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.eyebrow {
    gap: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.eyebrow-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 6px 16px;
    border-radius: 2px;
    display: inline-block;
}

#ptfe-products .eyebrow-label,
.hero-right .eyebrow-label,
footer .eyebrow-label {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif
}

.section-title {
    font-size: clamp(2.2rem, 10vw, 4.8rem);
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: .93;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    height: 3px;
    background: var(--gold);
    width: 0;
    margin-top: 14px;
    border-radius: 2px;
    transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}

.section-title.visible::after {
    width: 58px;
}

.section-sub {
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
    line-height: 1.85;
    max-width: 680px;
}

nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: 85px;
    z-index: 1000;
    background: #050d18;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    height: 70px;
    background: #050d18f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo,
.nav-right {
    align-items: center;
    display: flex
}

.modal-close,
.modal-header {
    display: flex;
    align-items: center
}

.logo {
    gap: 15px;
    text-decoration: none;
    position: relative;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
    border-left: 2px solid var(--gold);
    padding-left: 15px;
}

.logo-name {
    font-family: 'Myriad Arabic', sans-serif;
    font-size: 32px;
    letter-spacing: 0.5px;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
}

.logo-by {
    font-family: 'Space Mono', monospace;
    font-size: .6rem;
    letter-spacing: .05em;
    color: var(--gold);
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .logo-by {
        display: none;
    }

    .logo-name {
        font-size: 24px;
    }
}

.btn-nav,
.nav-links a {
    letter-spacing: .16em;
    text-decoration: none;
    font-family: Poppins, sans-serif
}

.btn-gold,
.btn-nav,
.hero-eye-text,
.nav-links a {
    font-weight: 500;
    text-transform: uppercase
}

.nav-right {
    gap: 36px
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--white);
    position: relative;
    padding: 5px 15px;
    transition: all .3s;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.nav-links a::before,
.nav-links a::after {
    content: '';
    position: absolute;
    color: var(--gold);
    font-weight: 300;
    opacity: 0;
    transition: all 0.3s;
}

.nav-links a::before {
    content: '[';
    left: 0;
}

.nav-links a::after {
    content: ']';
    right: 0;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::before {
    opacity: 1;
    left: -5px;
}

.nav-links a:hover::after {
    opacity: 1;
    right: -5px;
}

.nav-links a.active::before,
.nav-links a.active::after {
    opacity: 1;
    color: var(--white);
}

.nav-links a.active::before {
    left: 2px;
}

.nav-links a.active::after {
    right: 2px;
}

.btn-nav {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    color: #000;
    background: var(--gold);
    border: none;
    padding: 12px 35px;
    border-radius: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-nav:hover {
    background: var(--white);
    color: var(--navy);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(252, 196, 23, 0.4);
}

.btn-gold,
.chip {
    border-radius: 2px
}

#ptfe-products-manufacturers-and-exporters {
    min-height: auto;
    padding-top: 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px 6% 60px 6%;
    position: relative;
    background: var(--white);
    min-height: 60vh;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-left {
        padding: 150px 5% 80px 9%;
        min-height: auto;
    }
}

.hero-btns,
.hero-eyebrow {
    align-items: center;
    display: flex
}

.btn-gold,
.hero-eye-line {
    background: var(--gold)
}

.feat:hover .feat-icon {
    background: var(--gold);
    color: var(--navy);
}

.feat:hover .feat-icon svg {
    stroke: var(--navy);
}

.hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(11, 37, 69, 0.022) 28px, rgba(11, 37, 69, 0.022) 29px), linear-gradient(rgba(11, 37, 69, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 37, 69, .055) 1px, transparent 1px);
    background-size: 29px 29px, 44px 44px, 44px 44px;
}

.hero-eyebrow {
    gap: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1
}

.hero-eye-line {
    width: 30px;
    height: 2px
}

.hero-eye-text {
    display: none;
}

.hero-eyebrow-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-pill {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(11, 37, 69, 0.06);
    border: 1px solid rgba(11, 37, 69, 0.18);
    padding: 5px 13px;
    border-radius: 2px;
}

.hero-pill-sep {
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
}

.hero-h1,
.hero-h1-sub {
    font-family: 'Bebas Neue', sans-serif;
    z-index: 1;
    position: relative
}

.hero-h1 {
    font-size: clamp(3rem, 15vw, 7.2rem);
    line-height: .9;
    color: var(--navy);
    letter-spacing: .015em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.hero-h1-sub {
    font-size: clamp(1.2rem, 4vw, 2.6rem);
    color: black;
    letter-spacing: .06em;
    margin-bottom: 24px;
    line-height: 1;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 1.25rem;
    color: #2a2a2a;
    line-height: 1.9;
    max-width: 540px;
    margin-bottom: 48px;
    font-weight: 500;
    position: relative;
    z-index: 1
}

.btn-arrow,
.btn-gold {
    font-size: .82rem;
    text-decoration: none
}

.hero-btns {
    gap: 18px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.btn-gold {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    padding: 14px 34px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold:hover {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 5px 20px rgba(11, 37, 69, 0.2);
    transform: translateY(-3px);
}

.btn-arrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--navy);
    padding: 14px 28px;
    border: 2px solid var(--navy);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
    background: transparent;
}

.btn-arrow:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.1);
}

.btn-arrow .arr {
    transition: transform .25s ease;
    font-size: 1.2rem;
}

.btn-arrow:hover .arr {
    transform: translateX(5px);
    color: var(--white);
}

.btn-arrow:hover .arr {
    transform: translateX(6px)
}

.hero-chips {
    display: flex;
    gap: 10px;
    margin-top: 44px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.iso-box,
.stats-panel {
    z-index: 2;
    width: 100%;
    max-width: 310px
}

.chip {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    padding: 6px 14px;
    border: 1px solid var(--grey-light)
}

.hero-ghost,
.stat-num {
    font-family: 'Bebas Neue', sans-serif
}

.chip.gold-chip {
    border-color: var(--navy);
    color: var(--navy)
}

.hero-right {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 6% 50px 6%;
    min-height: 320px;
}

@media (min-width: 1024px) {
    .hero-right {
        padding: 130px 44px 60px 44px;
        min-height: auto;
    }
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 52px 52px
}

#ptfe-products {
    background: var(--navy);
    color: var(--white);
    position: relative;
}

#ptfe-products .section-title {
    color: var(--white);
}

#ptfe-products .section-sub {
    color: rgba(255, 255, 255);
}

.feat:hover {
    background: #0f2b4a;
}

.hero-ghost {
    position: absolute;
    font-size: 22vw;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    letter-spacing: .05em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    user-select: none;
    pointer-events: none
}

#ptfe-products,
.iso-box,
.stats-panel {
    position: relative
}

.stat-row {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 26px 0;
    display: flex;
    align-items: flex-end;
    gap: 14px
}

.info-row:last-of-type,
.stat-row:last-child {
    border-bottom: none
}

.stat-num {
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: .02em
}

.iso-box-lbl,
.stat-lbl {
    letter-spacing: 0.3em;
    margin-bottom: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase
}

.stat-info {
    padding-bottom: 6px
}

.stat-lbl {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.99)
}

.stat-val {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .95)
}

.iso-box {
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 30px;
    text-align: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    max-width: 480px;
}

.iso-box-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
    display: block;
}

.iso-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: center;
}

.iso-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.iso-main-img {
    width: 65px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(184, 150, 12, 0.15));
    transition: transform 0.3s ease;
}

.iso-main-img:hover {
    transform: scale(1.15);
}

.iso-badge-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.iso-box-val {
    display: none;
}

#about-hindustan-nylons,
#contact-manufacturers-of-ptfe-products {
    background: #e5e6e7;
}

.about-grid {
    display: grid;
    gap: 80px;
    align-items: start;
    margin-bottom: 64px
}

.about-left .section-title,
.checkbox-group {
    margin-bottom: 24px
}

.about-body {
    font-size: 1.2rem;
    color: #1a1a1a;
    line-height: 1.9;
    font-weight: 400;
}

.about-body p {
    margin-bottom: 24px;
}

.about-body strong {
    color: var(--navy);
    font-weight: 700
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px
}

.big-stat {
    border-left: 3px solid var(--gold);
    padding: 4px 0 4px 20px
}

.big-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 10vw, 3.4rem);
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.big-stat-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    font-weight: 700
}

@media (min-width: 1024px) {
    .big-stat-lbl {
        font-size: 1.1rem;
        letter-spacing: 0.25em;
    }
}

.feat-title,
.prod-cat-header {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase
}

.features {
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    gap: 1px
}

.feat {
    gap: 12px;
    display: flex;
    flex-direction: column;
    background: var(--navy);
    padding: 20px 15px;
    align-items: center;
    text-align: center;
    transition: background .2s;
}

@media (min-width: 768px) {
    .feat {
        flex-direction: row;
        padding: 30px 25px;
        align-items: flex-start;
        text-align: left;
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .feat {
        padding: 35px 30px;
        gap: 18px;
    }
}

.feat-icon {
    width: 44px;
    height: 44px;
    background: #142E4B;
    border: 1px solid var(--gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .2s;
    color: var(--gold);
}

.feat-icon svg {
    display: block;
    stroke: var(--gold);
    color: var(--gold);
}

.feat-title {
    font-size: .95rem;
    letter-spacing: .05em;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 800;
}

.feat-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.6
}

.address-strip {
    margin-top: 36px;
    background: var(--navy);
    padding: 18px 26px;
    border-radius: 3px;
    align-items: center
}

.addr-icon {
    flex-shrink: 0;
    color: var(--gold)
}

.addr-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgb(255, 255, 255)
}

.addr-text strong {
    color: #fff
}

#ptfe-products::before {
    content: '';
    position: absolute;
    background-image: radial-gradient(circle, rgba(11, 37, 69, .055) 1px, transparent 1px);
    background-size: 28px 28px
}

.products-split-container {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--grey-light);
    background: var(--white);
    position: relative;
    z-index: 5;
}

@media (min-width: 1024px) {
    .products-split-container {
        flex-direction: row;
        min-height: 600px;
    }
}

.products-list-pane {
    width: 100%;
    height: 350px;
    border-bottom: 1px solid var(--grey-light);
    overflow-y: auto;
    background: #d3d4d5;
}

@media (min-width: 1024px) {
    .products-list-pane {
        width: 40%;
        height: 700px;
        border-right: 1px solid #757e87;
        border-bottom: none;
    }
}

.products-list-pane::-webkit-scrollbar {
    width: 4px
}

.products-list-pane::-webkit-scrollbar-track {
    background: var(--off-white)
}

.products-list-pane::-webkit-scrollbar-thumb {
    background: var(--grey-light);
    border-radius: 0
}

.products-list-pane::-webkit-scrollbar-thumb:hover {
    background: var(--gold)
}

.prod-cat-group {
    border-bottom: 2px solid var(--off-white)
}

.prod-cat-header {
    padding: 15px 25px;
    background: #e0e1e1;
    font-size: 1.05rem;
    letter-spacing: 0.25em;
    color: #000000;
    border-bottom: 1px solid var(--grey-light);
    position: sticky;
    top: 0;
    z-index: 2;
}

.preview-id,
.split-prod-num {
    font-family: 'Space Mono', monospace
}

.split-prod-item {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-bottom: 1px solid var(--off-white);
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    position: relative
}

.split-prod-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--navy);
    transition: width .3s
}

.split-prod-item.active,
.split-prod-item:hover {
    background: var(--off-white)
}

.split-prod-item.active::after,
.split-prod-item:hover::after {
    width: 4px
}

.split-prod-num {
    font-size: 1rem;
    color: var(--navy);
    opacity: 0.8;
    width: 30px
}

.split-prod-name {
    font-size: 1rem;
    font-weight: 1000;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .02em
}

.products-preview-pane {
    width: 100%;
    height: auto;
    min-height: 600px;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #e0e1e1;
    overflow-y: auto;
}

@media (min-width: 1024px) {
    .products-preview-pane {
        width: 60%;
        height: 700px;
        position: sticky;
        top: 0;
    }
}

.preview-placeholder {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #050d18;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    width: 100%;
    position: relative;
}

.placeholder-grid::before,
.placeholder-grid::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
    pointer-events: none;
}

.placeholder-grid::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
}

.placeholder-grid::after {
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
}

.placeholder-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.placeholder-header {
    background: #0b2545;
    color: var(--white);
    padding: 12px 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(0.7rem, 1.5vw, 0.95rem);
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid var(--gold);
    z-index: 2;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .placeholder-header {
        font-size: 0.6rem;
        padding: 8px 5px;
    }
}

.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.placeholder-item:hover .placeholder-img {
    transform: scale(1.08);
}

.info-icon-box,
.preview-image {
    border: 1px solid var(--grey-light)
}

.preview-content {
    animation: .4s forwards fadeIn;
    padding: 50px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.preview-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--grey-light);
    padding-bottom: 12px;
}

.preview-id {
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
    color: var(--navy);
    font-weight: 700;
}

.preview-category-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--grey);
    background: var(--off-white);
    padding: 6px 12px;
    border: 1px solid var(--grey-light);
}

.preview-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy);
    line-height: 1;
    margin-bottom: 30px;
}

.preview-hero-section {
    position: relative;
    margin-bottom: 40px;
}

.preview-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border: 1px solid var(--grey-light);
    background: var(--off-white);
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
}

.preview-info-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}

.preview-desc-panel {
    width: 100%;
}

.preview-data-panels {
    width: 100%;
}

.panel-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--navy);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--grey-light);
    padding-bottom: 8px;
}

.preview-desc {
    font-size: 1.25rem;
    color: #1a1a1a;
    line-height: 1.85;
    text-align: left;
}

.preview-data-panels {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block-item {
    background: #fcfcfc;
    border: 1px solid var(--grey-light);
    border-top: 4px solid var(--navy);
    padding: 35px;
}

.specs-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 30px;
    display: block;
}

.specs-list-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list-group li {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
}

.specs-list-group li::before {
    content: '→';
    color: var(--navy);
    margin-right: 12px;
    font-weight: bold;
}

.specs-list-group li:last-child {
    border-bottom: none;
}

.preview-actions {
    border-top: 1px solid var(--grey-light);
    padding-top: 30px;
    margin-top: auto;
}

.specs-disclaimer {
    font-size: 0.85rem;
    color: #444;
    margin-top: 25px;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .preview-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.form-card-title,
.form-label {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: .2em;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase
}

.preview-btn {
    align-self: flex-start;
    margin-top: auto
}

#contact-manufacturers-of-ptfe-products .section-title {
    margin-bottom: 48px
}

.contact-grid {
    display: grid;
    gap: 72px;
    align-items: start
}

.form-card {
    background: var(--off-white);
    padding: 38px;
    border-radius: 3px;
    border-top: 3px solid var(--gold)
}

.form-card-title {
    font-size: 0.9rem;
    margin-bottom: 30px
}

.form-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 8px
}

.form-input,
.form-textarea {
    width: 100%;
    font-family: Barlow, sans-serif;
    font-size: .9rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--grey-light);
    border-radius: 3px;
    padding: 11px 15px;
    outline: 0;
    transition: border-color .2s, box-shadow .2s
}

.form-textarea {
    resize: vertical;
    min-height: 120px
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow)
}

.btn-submit {
    width: 100%;
    letter-spacing: .18em;
    text-transform: uppercase;
    background: var(--navy);
    color: var(--white);
    border: none;
    margin-top: 8px;
    padding: 15px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(252, 196, 23, 0.2);
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 0
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--grey-light)
}

.info-row:first-child {
    padding-top: 0
}

.info-icon-box {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #0b2545;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .2s;
}

.info-row:hover .info-icon-box {
    background: var(--navy);
    border-color: var(--navy)
}

.info-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 6px
}

.info-val {
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.55
}

.foot-col-title,
.footer-iso {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase
}

.info-val a {
    color: var(--navy);
    text-decoration: none
}

.map-box {
    margin-top: 26px;
    border: 1px solid var(--grey-light);
    border-radius: 3px;
    overflow: hidden
}

.map-box iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block
}

footer {
    background: var(--charcoal);
    padding: 68px 8% 0
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.foot-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(252, 196, 23, 0.15);
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.foot-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 0;
}

.foot-list li {
    font-size: 0.95rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s, padding-left .2s;
    cursor: default
}

.foot-list li:hover {
    color: rgba(255, 255, 255, .8);
    padding-left: 4px
}

.foot-list li::before {
    content: '–';
    color: rgba(184, 150, 12, .35);
    font-size: .7rem;
    flex-shrink: 0
}

.foot-list a {
    text-decoration: none;
    color: inherit
}

.footer-bar {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.footer-copy {
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: .03em
}

.footer-iso {
    font-size: .68rem;
    letter-spacing: .16em;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bar-gold {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 25px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid var(--gold);
    width: 100%;
    box-sizing: border-box;
}

.footer-trust-gold {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-trust-gold img {
    height: 35px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer-trust-gold img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-visits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.visits-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
}

.visits-digits {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 5px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visits-digits .digit {
    background: #0f1b29;
    color: var(--gold);
    border: 1px solid rgba(252, 196, 23, 0.2);
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    letter-spacing: normal;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #ffffff;
    border: 1px solid #1a2535;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    padding: 0;
}

.social-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

@media (max-width: 991px) {
    .footer-bar-gold {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 5%;
    }
    .footer-visits-container {
        align-items: center;
    }
}

.footer-trust-band {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 40px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item img {
    max-height: 45px;
    width: auto;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.4s ease;
}

.trust-item:hover img {
    filter: grayscale(0) opacity(1);
    transform: translateY(-3px);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: start;
}

@media (max-width: 1023px) {
    .footer-trust-band {
        gap: 30px;
        padding: 30px 5%;
    }

    .trust-item img {
        max-height: 40px;
    }
}

color: rgba(184, 150, 12, .55)
}

@media (max-width:960px) {
    .products-split-container {
        flex-direction: column;
        border: 1px solid var(--grey-light);
        border-radius: 4px;
        background: var(--white);
        box-shadow: 0 5px 25px rgba(11, 37, 69, .05)
    }

    .products-list-pane {
        width: 100%;
        height: 320px;
        border-right: none;
        border-bottom: 2px solid var(--off-white)
    }

    .products-preview-pane {
        width: 100%;
        height: auto;
        padding: 25px 20px;
        position: static
    }

    .preview-title {
        font-size: 1.8rem
    }

    #ptfe-products-manufacturers-and-exporters,
    .about-grid,
    .contact-grid,
    .features {
        grid-template-columns: 1fr
    }

    .btn-gold.preview-btn {
        width: 100%;
        font-size: 0.75rem;
        padding: 15px 20px;
    }

    :root {
        --pad: 50px 5%
    }

    .hero-right {
        min-height: 320px;
        padding: 110px 20px 40px 20px
    }

    .hero-left {
        padding: 120px 5% 50px 5%;
        text-align: center;
        align-items: center
    }

    .about-grid,
    .contact-grid {
        gap: 30px
    }

    .footer-cols {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .section-title {
        font-size: 2rem;
        line-height: 1
    }

    .hero-h1 {
        font-size: 2.6rem
    }

    .hero-h1-sub {
        font-size: 1.1rem;
        margin-bottom: 20px
    }

    .hero-desc {
        font-size: .85rem;
        line-height: 1.6;
        margin-bottom: 25px
    }

    .hero-btns {
        gap: 12px
    }

    .btn-gold {
        padding: 10px 20px;
        font-size: .75rem
    }

    .hero-chips {
        margin-top: 30px
    }

    .about-grid {
        gap: 25px;
        margin-bottom: 40px
    }

    .about-body {
        font-size: .9rem
    }

    .contact-grid {
        gap: 30px
    }

    .form-card {
        padding: 25px
    }

    .hero-ghost {
        font-size: 50vw
    }

    .desktop-only {
        display: none !important
    }

    .mobile-only {
        display: block !important
    }

    .preview-title {
        font-size: 1.6rem;
        margin-bottom: 15px
    }

    .preview-image {
        height: 160px;
        margin-bottom: 15px
    }

    .preview-desc {
        font-size: .9rem;
        margin-bottom: 20px
    }
}

@media (min-width:961px) {
    .desktop-only {
        display: block !important
    }

    .mobile-only {
        display: none !important
    }
}

.menu-toggle {
    display: none;
    background: 0 0;
    border: none;
    color: var(--navy);
    cursor: pointer;
    padding: 10px;
    z-index: 1001
}

.btn-gold,
.btn-submit,
.fade-in,
.nav-links a,
.split-prod-item {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased
}

@media (max-width:960px) {
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 2100;
        color: var(--white)
    }

    .nav-links {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        gap: 30px;
        top: 0;
        left: 0;
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        color: var(--white);
        font-size: 2.2rem;
        font-family: 'Bebas Neue', sans-serif;
        letter-spacing: .08em;
        padding: 10px 40px;
    }

    .nav-links a::before,
    .nav-links a::after {
        font-size: 1.8rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links a.active,
    .nav-links a:hover {
        color: var(--gold)
    }

    .btn-nav {
        margin-top: 20px;
        font-size: 1.2rem;
        padding: 18px 50px;
        background: var(--gold);
        border: none;
        color: var(--navy);
        clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    }

    .desktop-only {
        display: none !important
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 37, 69, .45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay ::before {
    background-color: #143d72;
    position: inherit;
    border: ridge #fff
}

.modal-content {
    background: var(--white);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(.9);
    transition: transform .3s
}

.modal-overlay.active .modal-content {
    transform: scale(1)
}

.modal-header {
    justify-content: space-between;
    padding: 24px 30px 20px;
    border-bottom: 1px solid var(--grey-light);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--navy);
    letter-spacing: .02em
}

.modal-close {
    background: 0 0;
    border: none;
    font-size: 2rem;
    color: var(--grey);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    justify-content: center;
    border-radius: 4px;
    transition: color .2s, background .2s
}

.modal-close:hover {
    color: var(--navy);
    background: rgba(11, 37, 69, .08)
}

.enquiry-form {
    padding: 30px
}

.form-group {
    margin-bottom: 20px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.form-group label {
    display: block;
    font-family: Poppins, sans-serif;
    font-size: .85rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--grey-light);
    border-radius: 4px;
    font-family: Poppins, sans-serif;
    font-size: .9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow)
}

.form-group textarea {
    resize: vertical;
    min-height: 80px
}

.form-group select {
    cursor: pointer
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-weight: 400 !important;
    color: var(--text) !important;
    cursor: pointer;
    user-select: none
}

.checkbox-label input[type=checkbox] {
    width: auto;
    margin: 0;
    cursor: pointer
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid var(--grey-light)
}

.btn-cancel,
.btn-submit {
    padding: 12px 24px;
    border-radius: 2px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cancel:hover {
    background: #d4d4cd;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

color: var(--navy);
border: 1px solid var(--grey-light)
}

.btn-cancel:hover {
    background: var(--white);
    border-color: var(--grey)
}

.btn-submit {
    background: var(--gold);
    color: #fff;
}

.btn-submit:hover {
    background: var(--white);
}

@media (max-width:768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh
    }

    .modal-header {
        padding: 20px 20px 16px
    }

    .enquiry-form {
        padding: 20px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .form-actions {
        flex-direction: column
    }

    .btn-cancel,
    .btn-submit {
        width: 100%
    }
}

.doc-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.doc-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.doc-link-item:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(184, 150, 12, 0.1);
}

.doc-link-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gold);
    transition: width 0.3s ease;
}

.doc-link-item:hover::before {
    width: 4px;
}

.doc-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.doc-link-item:hover .doc-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.doc-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.doc-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.doc-meta {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 600px) {
    .doc-selection-grid {
        grid-template-columns: 1fr;
    }

    .doc-link-item {
        padding: 12px 15px;
    }
}

.why-strip {
    background: var(--off-white);
    padding: 60px 8%;
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.why-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.why-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    font-size: 1rem;
}

.trust-band {
    background: var(--white);
    padding: 50px 8%;
    text-align: center;
}

.trust-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #000000;
    margin-bottom: 30px;
    display: block;
    font-weight: bold;
}

.trust-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    filter: grayscale(1);
    transition: opacity 0.3s;
}

.trust-logos:hover {
    opacity: 1;
    filter: none;
}

.trust-logo-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-cta {
    background: var(--navy);
    padding: 80px 8%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(252, 196, 23, 0.05) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.stat-num.animating {
    color: var(--gold);
}

#nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    z-index: 1001;
    transition: width 0.1s linear;
}

.hero-left::after,
.hero-right::before {
    transform: translateY(calc(var(--scroll-y, 0px) * 0.15));
    transition: transform 0.1s linear;
}

@media (max-width: 1023px) {

    .hero-left::after,
    .hero-right::before {
        transform: none !important;
        background-size: 50px 50px !important;
    }
}

.floating-group {
    position: relative;
    margin-bottom: 30px;
}

.floating-group .form-input,
.floating-group .form-textarea {
    padding: 24px 16px 10px 16px;
    background: var(--off-white);
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

.floating-group .form-input:focus,
.floating-group .form-textarea:focus {
    background: var(--white);
    border-bottom-color: var(--gold);
    outline: none;
}

.floating-group .form-label {
    position: absolute;
    top: 18px;
    left: 16px;
    font-size: 1rem;
    color: var(--grey);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.floating-group .form-input:focus~.form-label,
.floating-group .form-input:not(:placeholder-shown)~.form-label,
.floating-group .form-textarea:focus~.form-label,
.floating-group .form-textarea:not(:placeholder-shown)~.form-label {
    top: 6px;
    left: 14px;
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.preview-hero-section {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.zoom-lens {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    z-index: 100;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease;
}

.contact-header-row {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: -16px;
    flex-wrap: wrap;
}

.contact-header-row .section-title {
    flex-shrink: 0;
    margin-bottom: 0;
}

.contact-seo-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.75;
    flex: 1;
    min-width: 240px;
    padding-left: 16px;
    border-left: 3px solid var(--gold);
    font-weight: 400;
    margin-bottom: 65px;
}

@media (max-width: 768px) {
    .contact-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-seo-intro {
        padding-left: 12px;
    }
}

.footer-network-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(252, 196, 23, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.footer-network-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-network-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-network-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 4px 16px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-network-links a:hover {
    color: var(--gold);
}

.fn-sep {
    display: inline-block;
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer-network-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-network-links a {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
}

.footer-websites-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 35px 2%;
    border-top: 1px solid var(--gold);
    margin-top: 20px;
}

.footer-websites-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-websites-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-website-item {
    border-left: 3px solid var(--gold);
    padding-left: 14px;
    display: flex;
    align-items: center;
}

.footer-website-item a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    font-weight: 500;
}

.footer-website-item a:hover {
    color: var(--gold);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .footer-websites-grid {
        gap: 15px;
    }

    .footer-website-item {
        padding-left: 10px;
    }

    .footer-website-item a {
        font-size: 0.85rem;
    }
} .footer-legal-strip { display: flex; justify-content: center; align-items: center; gap: 15px; padding: 20px 8%; border-top: 1px solid var(--gold); flex-wrap: wrap; margin-top: 10px; } .footer-legal-strip a { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.2s; font-weight: 500; } .footer-legal-strip a:hover { color: var(--gold); } .legal-sep { color: rgba(255, 255, 255, 0.15); font-size: 0.8rem; } @media (max-width: 768px) { .footer-legal-strip { gap: 8px; flex-direction: column; text-align: center; padding: 15px 5%; } .legal-sep { display: none; } }