/* Tenaciou Font Face Declarations */
@font-face {
    font-family: 'Tenaciou';
    src: url('assets/fonts/Tenaciou/Web-PS/Tenaciou-Heavy.woff2') format('woff2'),
         url('assets/fonts/Tenaciou/OpenType-TT/Tenaciou-Heavy.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tenaciou';
    src: url('assets/fonts/Tenaciou/Web-PS/Tenaciou-Light.woff2') format('woff2'),
         url('assets/fonts/Tenaciou/OpenType-TT/Tenaciou-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Mobile-first, grayscale, system fonts only */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent text breaks - wrap only at word boundaries */
body, * {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    white-space: normal;
}

/* Allow breaking only for very long URLs or code */
a[href], code, pre {
    word-break: break-all;
    overflow-wrap: anywhere;
}

html {
    scroll-behavior: smooth;
}

/* Prevent text breaks - wrap only at word boundaries */
body, * {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* Allow breaking only for very long URLs or strings */
a, code, pre {
    word-break: break-all;
    overflow-wrap: anywhere;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gray-900);
    color: var(--gray-100);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

:root {
    /* Ace & Alan Tool Color Palette */
    --steel-midnight: #1B1F2A;
    --graphite-blue: #3E4147;
    --steel-beige: #B7B2A9;
    --clean-metal-white: #E5E2DC;
    --industrial-red: #C43D2E; /* Brick red calculated from CMYK C29 M91 Y93 K30 */
    
    /* Legacy grayscale variables mapped to new palette */
    --gray-100: var(--clean-metal-white);
    --gray-200: var(--steel-beige);
    --gray-300: var(--steel-beige);
    --gray-400: var(--graphite-blue);
    --gray-500: var(--graphite-blue);
    --gray-600: var(--graphite-blue);
    --gray-700: var(--graphite-blue);
    --gray-800: var(--steel-midnight);
    --gray-900: var(--steel-midnight);
}

body {
    font-family: 'BioRhyme', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, serif;
    font-weight: 300; /* BioRhyme Light for body text */
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-100);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--gray-900);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 1rem;
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    flex-shrink: 0;
}

.header-nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

.header-line-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.header-line-link:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    flex-shrink: 0;
}

.lang-switcher-item {
    flex-shrink: 0;
}

.line-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.contact-line-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-line-link:hover {
    opacity: 0.8;
}

.mobile-line-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
    border-bottom: 1px solid var(--gray-800);
}

.mobile-line-link:hover,
.mobile-line-link:focus {
    opacity: 0.8;
    background-color: var(--gray-800);
}

@media (max-width: 767px) {
    .nav-center {
        display: none !important;
    }
    
    .line-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .logo-img {
        max-height: 50px !important;
        height: auto !important;
        max-width: 150px !important;
    }
    
    .nav-logo img {
        max-height: 45px !important;
        height: auto !important;
    }
    
    #header-dv-logo {
        max-height: 35px !important;
    }
    
    .footer-logo {
        max-height: 100px !important;
        height: auto !important;
        max-width: 250px !important;
    }
}

.desktop-only {
    display: flex;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem; /* Increased for better touch target */
    min-width: 44px; /* Minimum touch target size */
    min-height: 44px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--gray-100);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--gray-900);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    right: 0;
    display: block;
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-700);
    display: flex;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-nav-link {
    font-family: 'BioRhyme', serif; /* BioRhyme for navigation */
    color: var(--gray-200);
    text-decoration: none;
    padding: 1.25rem 1.5rem; /* Increased for better touch target */
    font-weight: 400;
    font-size: 1.125rem;
    transition: all 0.2s ease, transform 0.2s ease;
    border-bottom: 1px solid var(--gray-800);
    display: flex;
    align-items: center;
    min-height: 48px; /* Minimum touch target size */
}

.mobile-nav-link:active {
    transform: scale(0.98);
    background-color: var(--gray-800);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background-color: var(--gray-800);
    color: var(--gray-100);
    outline: 3px solid var(--clean-metal-white);
    outline-offset: -3px;
}

.nav-link {
    font-family: 'BioRhyme', serif; /* BioRhyme for navigation */
    color: var(--gray-200);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.05rem;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    padding: 0.75rem 1rem; /* Increased for better touch target */
    position: relative;
    white-space: nowrap;
    min-height: 44px; /* Minimum touch target size */
    display: flex;
    align-items: center;
    border-radius: 6px;
}

.nav-link:active {
    transform: scale(0.95);
}

.nav-link:hover {
    color: var(--gray-100);
}

.nav-link:focus {
    outline: 2px solid var(--gray-100);
    outline-offset: 4px;
    border-radius: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gray-100);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-logo {
    color: var(--gray-100);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.85;
}

.nav-logo img {
    transition: transform 0.2s ease;
}

.nav-logo:hover img {
    transform: scale(1.02);
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 200px;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    image-rendering: high-quality;
    object-fit: contain;
    object-position: center;
    /* Convert logo to off-white color from palette */
    filter: brightness(0) saturate(100%) invert(91%) sepia(3%) saturate(500%) hue-rotate(15deg) brightness(98%) contrast(92%);
}

.footer-logo {
    height: 160px;
    width: auto;
    max-width: 300px;
    margin-bottom: 1rem;
    opacity: 0.95;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    image-rendering: high-quality;
    object-fit: contain;
    object-position: center;
    /* Convert logo to off-white color from palette */
    filter: brightness(0) saturate(100%) invert(91%) sepia(3%) saturate(500%) hue-rotate(15deg) brightness(98%) contrast(92%);
}

.lang-switcher-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switcher {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 2rem;
    line-height: 1;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.lang-switcher:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-switcher:focus {
    outline: 3px solid var(--clean-metal-white);
    outline-offset: 2px;
    border-radius: 4px;
    background-color: rgba(229, 226, 220, 0.1);
}

.lang-switcher.active {
    opacity: 1;
    font-size: 2.5rem;
    transform: scale(1.15);
}

.lang-switcher .flag {
    display: block;
}

/* Main Content */
main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem 0.5rem 1rem;
    background-color: var(--gray-100);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 0;
}


.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.hero-content h1 {
    font-family: 'Tenaciou', 'Oswald', sans-serif; /* Tenaciou for headlines */
    font-size: 2rem;
    font-weight: 700; /* Heavy/Bold */
    color: var(--steel-midnight);
    margin-bottom: 1rem;
    letter-spacing: 0.02em; /* Slightly increased for all-caps feel */
    line-height: 1.2;
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtext {
    font-family: 'BioRhyme', serif; /* BioRhyme for body/subtext */
    font-size: 1.125rem;
    font-weight: 300; /* Light */
    color: var(--graphite-blue);
    margin-bottom: 2rem;
}

.hero-content .hero-subtext.framed {
    display: inline-block;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 16px;
    background: var(--clean-metal-white);
    box-shadow: 0 8px 24px rgba(27, 31, 42, 0.12), 0 2px 6px rgba(27, 31, 42, 0.08);
    margin-bottom: 0;
    font-family: 'BioRhyme', serif; /* BioRhyme for body/subtext */
    font-weight: 300; /* Light */
    letter-spacing: 0.01em;
    font-size: 1.125rem;
    color: var(--steel-midnight);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-content .hero-bullets {
    list-style: none;
    margin: 2rem 0 0 0; /* Match mobile margin */
    display: flex;
    flex-direction: row;
    gap: 0.875rem; /* Match mobile gap */
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.hero-bullets li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    position: relative;
}

.hero-bullets li.framed-bullet {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--clean-metal-white) 0%, rgba(229, 226, 220, 0.95) 100%);
    box-shadow: 0 4px 16px rgba(27, 31, 42, 0.08), 0 2px 4px rgba(27, 31, 42, 0.04);
    margin: 0;
    text-align: center;
    font-family: 'BioRhyme', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--steel-midnight);
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease both;
    overflow: hidden;
    position: relative;
}

.hero-bullets li.framed-bullet span:not(.bullet-icon),
.hero-content .hero-bullets li.framed-bullet span:not(.bullet-icon) {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em;
    font-family: 'BioRhyme', serif;
    word-wrap: normal;
    overflow-wrap: normal;
    hyphens: none;
    max-width: 100%;
    line-height: 1.35;
    padding: 0;
    font-size: 1.05rem;
    color: var(--steel-midnight);
    flex: 1;
    text-align: center;
    white-space: normal;
}

.hero-bullets li.framed-bullet:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-bullets li.framed-bullet:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-bullets li.framed-bullet:nth-child(3) {
    animation-delay: 0.4s;
}

.bullet-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    line-height: 1;
    width: 72px;
    height: 72px;
    background: rgba(27, 31, 42, 0.04);
    border-radius: 12px;
    padding: 0.75rem;
}

/* Hero CTA Section */
.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-line-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #00C300;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 195, 0, 0.3);
    animation: gentleBounce 2s ease-in-out infinite;
}

.btn-line-hero:hover {
    background: #00B000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 195, 0, 0.4);
}

.btn-line-hero .line-logo-img {
    width: 32px;
    height: 32px;
}

.hero-social-proof {
    font-size: 0.95rem;
    color: var(--graphite-blue);
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.hero-content .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

/* Enhanced Focus States for Accessibility */
*:focus-visible {
    outline: 3px solid var(--industrial-red);
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--industrial-red);
    outline-offset: 2px;
}

.nav-link:focus-visible,
.mobile-nav-link:focus-visible {
    outline: 3px solid var(--industrial-red);
    outline-offset: 4px;
    background-color: rgba(220, 38, 38, 0.1);
}

.lang-switcher:focus-visible {
    outline: 3px solid var(--industrial-red);
    outline-offset: 3px;
}

.btn-line-hero:focus-visible,
.floating-line-btn:focus-visible,
.product-line-btn:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
}

/* Section Styles - Consistent Spacing */
.products-section {
    padding: 5rem 1rem;
    background: var(--clean-metal-white);
    margin-top: 0;
    scroll-margin-top: 100px; /* Account for sticky header */
}

.trust-section {
    padding: 5rem 1rem;
    background: var(--clean-metal-white);
    scroll-margin-top: 100px;
    border-top: 1px solid rgba(27, 31, 42, 0.08);
}

.testimonials-section {
    padding: 5rem 1rem;
    background: var(--steel-beige);
    scroll-margin-top: 100px;
    border-top: 1px solid rgba(27, 31, 42, 0.08);
}

.about-section {
    padding: 5rem 1rem;
    background: var(--clean-metal-white);
    scroll-margin-top: 100px;
    border-top: 1px solid rgba(27, 31, 42, 0.08);
}

.faq-section {
    padding: 5rem 1rem;
    background: var(--steel-beige);
    scroll-margin-top: 100px;
    border-top: 1px solid rgba(27, 31, 42, 0.08);
}

.contact-section {
    padding: 5rem 1rem;
    background-color: var(--clean-metal-white);
    scroll-margin-top: 100px;
    border-top: 1px solid rgba(27, 31, 42, 0.08);
}

.products-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}


.mission-section {
    padding: 4rem 1rem;
    background: var(--clean-metal-white);
    text-align: center;
    border-top: 1px solid var(--steel-beige);
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-800);
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .mission-statement {
        font-size: 1.375rem;
        line-height: 1.9;
    }
}

.trust-section {
    padding: 5rem 1rem;
    background: var(--clean-metal-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    background: var(--clean-metal-white);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(27, 31, 42, 0.12), 0 2px 6px rgba(27, 31, 42, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.trust-card.visible {
    opacity: 1;
    transform: translateY(0);
}


.trust-card:nth-child(1) {
    transition-delay: 0s;
}

.trust-card:nth-child(2) {
    transition-delay: 0.1s;
}

.trust-card:nth-child(3) {
    transition-delay: 0.2s;
}

.trust-card:nth-child(4) {
    transition-delay: 0.3s;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.trust-card h3 {
    font-family: 'BioRhyme', serif; /* BioRhyme Semi-Bold for sub-heads */
    font-size: 1.25rem;
    font-weight: 600; /* Semi-Bold */
    color: var(--steel-midnight);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    letter-spacing: -0.01em;
}

.contact-section {
    background-color: var(--clean-metal-white);
    border-top: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Tenaciou', 'Oswald', sans-serif; /* Tenaciou for headlines */
    font-size: 2.25rem;
    font-weight: 700; /* Heavy/Bold */
    color: var(--steel-midnight);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em; /* Slightly increased for all-caps feel */
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 4rem;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2rem;
    color: var(--steel-midnight);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--gray-600);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    text-align: center;
    border: 2px solid var(--gray-800);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--steel-midnight);
    color: var(--clean-metal-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--steel-midnight);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background-color: var(--graphite-blue);
    border-color: var(--graphite-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 31, 42, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gray-800);
}

.btn-secondary:hover {
    background-color: var(--gray-200);
}

/* LINE Button */
@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.btn-line {
    background-color: #06C755;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.15s ease;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(6, 199, 85, 0.2);
    position: relative;
    overflow: hidden;
    animation: gentleBounce 2s ease-in-out infinite;
}

.btn-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-line:hover::before {
    left: 100%;
}

.btn-line:hover {
    background-color: #05B048;
    box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
    transform: translateY(-2px);
    color: white;
    animation: none;
}

.btn-line:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(6, 199, 85, 0.2);
}

.btn-line span {
    position: relative;
    z-index: 1;
}

.line-icon {
    font-size: 1.25rem;
    line-height: 1;
}


.btn-line:focus {
    outline: 2px solid var(--gray-100);
    outline-offset: 2px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.product-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(27, 31, 42, 0.1), 0 1px 3px rgba(27, 31, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 300px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    background-color: var(--steel-beige); /* Fallback background color */
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(27, 31, 42, 0.15), 0 4px 12px rgba(27, 31, 42, 0.1);
}

.product-card:active {
    transform: translateY(-2px);
}

/* Loading state for product cards */
.product-card.loading {
    background: linear-gradient(90deg, 
        var(--steel-beige) 0%, 
        var(--clean-metal-white) 50%, 
        var(--steel-beige) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes shimmer-overlay {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Error state for product cards */
.product-card.image-error {
    background-image: linear-gradient(135deg, var(--steel-midnight) 0%, var(--graphite-blue) 100%);
}

.product-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}


.product-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    text-align: center;
}

.product-card h3 {
    font-family: 'Tenaciou', 'Oswald', sans-serif; /* Tenaciou for headlines */
    font-size: 1.5rem;
    font-weight: 700; /* Heavy/Bold */
    color: white;
    margin-bottom: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.product-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.products-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.company-details {
    margin-bottom: 2rem;
}

.company-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--steel-midnight);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.location {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.business-type {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.business-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.business-hours h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.hours-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hours-days {
    display: block;
    margin-bottom: 0.25rem;
}

.hours-time {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--steel-midnight);
}

.hours-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.qr-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-container p {
    color: var(--gray-600);
}

/* Privacy Content */
.privacy-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

/* Footer */
footer {
    background-color: var(--steel-midnight);
    color: var(--clean-metal-white);
    text-align: center;
    padding: 2rem 1rem;
    margin-top: auto;
}

footer p {
    margin: 0.5rem 0;
    color: var(--steel-beige);
}

/* Family owned text in footer - off-white */
footer p[style*="Family Owned"] {
    color: var(--clean-metal-white) !important;
}

.footer-mission {
    max-width: 800px;
    margin: 1.5rem auto;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--steel-beige);
    font-weight: 400;
    font-style: italic;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .footer-mission {
        font-size: 1rem;
        margin: 2rem auto;
    }
}

.footer-link {
    color: var(--steel-beige);
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--clean-metal-white);
}

.footer-link:focus {
    outline: 3px solid var(--clean-metal-white);
    outline-offset: 3px;
    border-radius: 4px;
    background-color: rgba(229, 226, 220, 0.2);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px; /* Increased for better touch target */
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    background-color: var(--gray-800);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1001; /* Above floating LINE button (z-index: 1000) */
    opacity: 0;
    transform: scale(0.8);
}

.scroll-to-top.visible {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.scroll-to-top:hover {
    background-color: var(--gray-700);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px) scale(1.05);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

.scroll-to-top:focus {
    outline: 3px solid var(--clean-metal-white);
    outline-offset: 3px;
    background-color: var(--graphite-blue);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Tablet and up */
/* Mobile optimizations */
@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-nav {
        display: none !important;
    }
    
    .hero {
        padding: 3rem 1rem;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-content .hero-subtext.framed {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content .hero-bullets {
        margin: 2rem 0 0 0;
        gap: 0.875rem;
        flex-direction: column;
        max-width: 100%;
    }
    
    .hero-content .hero-bullets li.framed-bullet {
        flex: 1;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
        flex-direction: row;
        text-align: center;
        justify-content: center;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .hero-content .hero-bullets li.framed-bullet span:last-child {
        font-size: 0.95rem;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.02em;
        font-family: 'BioRhyme', serif;
        word-wrap: normal;
        overflow-wrap: normal;
        hyphens: none;
        white-space: normal;
        max-width: 100%;
        line-height: 1.3;
        padding: 0;
        color: var(--steel-midnight);
        text-align: center;
        flex: 1;
    }
    
    .bullet-icon {
        font-size: 3rem;
        line-height: 1;
        width: 64px;
        height: 64px;
        padding: 0.625rem;
    }
    
    .products-section {
        padding: 2rem 1rem;
    }
    
    .products-section .hero-bullets {
        margin-bottom: 1.5rem;
        gap: 0.75rem;
        flex-direction: row;
    }
    
    .products-section .hero-bullets li.framed-bullet {
        flex: 1;
        min-width: 0;
        padding: 1rem 0.75rem;
        gap: 0.5rem;
        text-align: center;
        flex-direction: column;
    }
    
    .products-section .bullet-icon {
        font-size: 1.75rem;
    }
    
    .products-section .hero-bullets li.framed-bullet span:last-child {
        font-size: 0.8rem;
    }
    
    .products-cta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .products-grid {
        gap: 0.625rem;
    }
    
    .product-card {
        min-height: 70px;
        flex-direction: row;
        align-items: center;
        border-radius: 10px;
    }
    
    .product-card::before {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
    
    .product-content {
        padding: 0.875rem 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
        text-align: center;
    }
    
    .product-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0;
        flex: 0 0 auto;
        white-space: nowrap;
        letter-spacing: 0.05em;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .product-card p {
        font-size: 0.75rem;
        display: none;
    }
    
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 768px) {
    .lang-switcher.active {
        font-size: 2.75rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .hero-subtext.framed {
        padding: 1.5rem 2.5rem;
        font-size: 1.25rem;
    }

    .hero-content .hero-bullets {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.875rem; /* Match mobile gap */
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content .hero-bullets li.framed-bullet {
        flex: 1;
        min-width: 200px;
        max-width: 300px;
        padding: 1.5rem 1.25rem; /* Match mobile padding */
        text-align: center;
        flex-direction: row; /* Match mobile row layout */
        gap: 1.25rem; /* Match mobile gap */
        justify-content: center;
        font-weight: 700; /* Bold - consistent with mobile */
        text-transform: uppercase; /* All caps - consistent with mobile */
        letter-spacing: 0.02em; /* Match mobile letter spacing */
    }
    
    .hero-content .hero-bullets li.framed-bullet span:last-child {
        font-size: 0.95rem; /* Match mobile font size */
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.02em;
        font-family: 'BioRhyme', serif;
        word-wrap: normal;
        overflow-wrap: normal;
        hyphens: none;
        white-space: normal;
        max-width: 100%;
        line-height: 1.3;
        padding: 0;
        color: var(--steel-midnight);
        text-align: center;
        flex: 1;
    }

    .bullet-icon {
        font-size: 3rem; /* Match mobile size */
        width: 64px; /* Match mobile width */
        height: 64px; /* Match mobile height */
        padding: 0.625rem; /* Match mobile padding */
    }

    .hero-content .hero-ctas {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        margin-bottom: 4.5rem;
        font-size: 1.25rem;
    }

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

    .product-card {
        min-height: 320px;
    }

    .product-content {
        padding: 2.25rem;
    }

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

    .trust-card {
        padding: 2.25rem 2rem;
    }

    .ask-availability-btn {
        width: auto;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }
    
    main {
        padding: 0;
    }

    .hero {
        padding: 5rem 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.25rem;
    }

    .product-card {
        min-height: 350px;
    }

    .product-content {
        padding: 2.5rem;
    }

    .product-card h3 {
        font-size: 1.625rem;
    }

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

    .trust-card {
        padding: 2.5rem 2rem;
    }

    .trust-icon {
        font-size: 3.5rem;
    }

    .contact-content {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 4rem;
    }

    .contact-info {
        text-align: left;
    }
}


/* Testimonials Section - styles moved to Section Styles above */

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--clean-metal-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(27, 31, 42, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--steel-midnight);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: 'BioRhyme', serif;
}

.testimonial-author {
    border-top: 1px solid rgba(27, 31, 42, 0.1);
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--steel-midnight);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-location {
    font-size: 0.875rem;
    color: var(--graphite-blue);
    margin: 0;
}

/* About Section - styles moved to Section Styles above */

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.companies-section {
    padding: 5rem 1rem;
    background: var(--clean-metal-white);
    scroll-margin-top: 100px;
    border-top: 1px solid rgba(27, 31, 42, 0.08);
}

.companies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

.company-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.company-card {
    background: var(--clean-metal-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(27, 31, 42, 0.1), 0 2px 8px rgba(27, 31, 42, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(27, 31, 42, 0.08);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--industrial-red), var(--graphite-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-card-link:hover .company-card {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(27, 31, 42, 0.15), 0 6px 16px rgba(27, 31, 42, 0.1);
    border-color: var(--industrial-red);
}

.company-card-link:hover .company-card::before {
    opacity: 1;
}

.company-card-link:hover .company-cta {
    background: var(--industrial-red);
    color: white;
    transform: translateX(4px);
}

.company-card-link:hover .cta-arrow {
    transform: translateX(4px);
}

.company-logo-wrapper {
    background: linear-gradient(135deg, rgba(27, 31, 42, 0.02), rgba(27, 31, 42, 0.05));
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border-bottom: 2px solid rgba(27, 31, 42, 0.05);
}

.company-logo {
    max-width: 280px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: none; /* No filter - logos display in their original colors */
}

/* Ace & Alan logo - make it black */
.company-card:has(img[alt*="Ace & Alan"]) .company-logo,
.company-card img[alt*="Ace & Alan"] {
    filter: brightness(0) saturate(100%);
}

.company-card-link:hover .company-logo {
    transform: scale(1.05);
}

.company-logo-text {
    font-family: 'Tenaciou', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--steel-midnight);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* ShopWare logo - uses ShopWare brand font */
.company-card-shopware .company-logo-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    text-transform: none;
    color: transparent; /* Fallback removed since we're using gradient */
}

.company-card-link:hover .company-logo-text {
    transform: scale(1.05);
    color: var(--industrial-red);
}

.company-card-link:hover .company-card-shopware .company-logo-text {
    transform: scale(1.05);
    /* Keep gradient on hover */
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-content {
    padding: 2rem 2.5rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.company-content h3 {
    font-family: 'Tenaciou', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--steel-midnight);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.company-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    flex: 1;
}

.company-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(27, 31, 42, 0.08);
}

.feature-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(27, 31, 42, 0.05);
    color: var(--steel-midnight);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.company-card-link:hover .feature-badge {
    background: rgba(200, 16, 46, 0.1);
    color: var(--industrial-red);
}

.company-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(27, 31, 42, 0.03);
    border-radius: 12px;
    margin-top: auto;
    transition: all 0.3s ease;
    border: 2px solid rgba(27, 31, 42, 0.08);
}

.cta-text {
    font-family: 'Tenaciou', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--steel-midnight);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-arrow {
    font-size: 1.5rem;
    color: var(--industrial-red);
    font-weight: 700;
    transition: transform 0.3s ease;
    display: inline-block;
}

.company-card-shopware .company-logo-wrapper {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05), rgba(27, 31, 42, 0.05));
}

.company-card-dealio .company-logo-wrapper {
    background: linear-gradient(135deg, rgba(27, 31, 42, 0.05), rgba(200, 16, 46, 0.05));
}

.hero-description {
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--steel-midnight);
    text-align: center;
    font-family: 'BioRhyme', serif;
    font-weight: 400;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--steel-midnight);
    margin-bottom: 1.5rem;
    font-family: 'BioRhyme', serif;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(27, 31, 42, 0.1);
}

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

.stat-number {
    font-family: 'Tenaciou', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--industrial-red);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--graphite-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FAQ Section - styles moved to Section Styles above */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--clean-metal-white);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(27, 31, 42, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    font-family: 'Tenaciou', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--steel-midnight);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--graphite-blue);
    margin: 0;
    font-family: 'BioRhyme', serif;
}

/* Floating LINE Button (Mobile) */
.floating-line-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: gentleBounce 2s ease-in-out infinite;
    width: auto;
    height: auto;
}

.floating-line-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.floating-line-btn .line-logo-img {
    width: 85px; /* Slightly bigger */
    height: 85px; /* Slightly bigger */
    display: block;
}

/* Enhanced QR Code */
.qr-text {
    font-weight: 600;
    color: var(--steel-midnight);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-align: center;
}

.qr-subtext {
    font-size: 0.875rem;
    color: var(--graphite-blue);
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.qr-image {
    max-width: 280px !important;
    box-shadow: 0 4px 16px rgba(27, 31, 42, 0.15) !important;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    padding: 0.5rem 1rem;
    background: #00C300;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Product LINE Button */
.product-line-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--steel-midnight);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.product-line-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Styles for New Sections */
@media (max-width: 767px) {
    .hero-cta {
        margin-top: 2rem;
    }
    
    .btn-line-hero {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .hero-social-proof {
        font-size: 0.875rem;
    }
    
    .floating-line-btn {
        display: flex;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-content img {
        max-width: 280px !important;
        margin-bottom: 1.5rem !important;
        /* Convert hero logo to off-white color from palette */
        filter: brightness(0) saturate(100%) invert(91%) sepia(3%) saturate(500%) hue-rotate(15deg) brightness(98%) contrast(92%);
    }
    
    .companies-section {
        padding: 3rem 1rem;
    }
    
    .company-card {
        border-radius: 16px;
    }
    
    .company-logo-wrapper {
        padding: 2rem 1.5rem;
        min-height: 150px;
    }
    
    .company-logo {
        max-width: 220px;
        max-height: 100px;
    }
    
    .company-logo-text {
        font-size: 2.5rem;
    }
    
    .company-content {
        padding: 1.5rem 1.75rem 2rem;
    }
    
    .company-features {
        gap: 0.4rem;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .company-cta {
        padding: 0.875rem 1.25rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
    
    .testimonials-section,
    .about-section,
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .faq-list {
        gap: 1.25rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.125rem;
    }
    
    .product-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.4rem 0.875rem;
        font-size: 0.7rem;
    }
    
    .product-line-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .qr-image {
        max-width: 240px !important;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
        margin-top: 2.5rem;
    }
    
    .hero-content img {
        max-width: 450px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .floating-line-btn {
        display: none;
    }
}

/* Print Styles */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .sticky-header,
    .mobile-menu-toggle,
    .mobile-menu,
    .mobile-menu-backdrop,
    .scroll-to-top,
    .btn-line {
        display: none !important;
    }
    
    .hero {
        page-break-after: avoid;
        padding: 2rem 0;
    }
    
    .products-section,
    .trust-section,
    .contact-section {
        page-break-inside: avoid;
    }
    
    .product-card {
        page-break-inside: avoid;
        border: 1px solid #ccc;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
    
    .footer {
        page-break-inside: avoid;
        margin-top: 2rem;
        padding-top: 1rem;
        border-top: 1px solid #ccc;
    }
    
    @page {
        margin: 2cm;
    }
}
