/* Cache-busting: v2.0 - Mobile hero image fix */
.firmy-page {
    --hp-primary-color: #1E52A5;
    --hp-primary-light: #e6f0ff;
    --hp-text-dark: #333333;
    --hp-text-medium: #666666;
    --hp-text-light: #000000;
    --hp-bg-white: #ffffff;
    --hp-bg-light: #f8f9fa;
    
    --hp-font-h1: 40px;
    --hp-font-h2: 32px;
    --hp-font-h3: 20px;
    --hp-font-body: 16px;
    --hp-font-small: 15px;
    --hp-font-intro: 18px;
    --hp-weight-bold: bold;
    --hp-weight-medium: 500;
    --hp-line-body: 1.6;
    --hp-line-heading: 1.3;
    
    --hp-pad-section: 60px 20px;
    --hp-pad-section-sm: 50px 20px;
    --hp-pad-card: 30px 20px;
    --hp-pad-card-sm: 25px;
    --hp-gap-lg: 35px;
    --hp-gap-md: 25px;
    --hp-gap-sm: 15px;
    --hp-mb-lg: 60px;
    --hp-mb-md: 45px;
    --hp-mb-sm: 35px;
    --hp-mb-xs: 25px;
    --hp-mb-xxs: 20px;
    --hp-mb-mini: 15px;
    --hp-mb-micro: 12px;
    
    --hp-radius: 8px;
    --hp-radius-sm: 6px;
    --hp-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --hp-shadow-hover: 0 4px 12px rgba(0,0,0,0.12);
    
    --hp-transition: 0.2s ease;
    
    --hp-container: 900px;
    --hp-container-text: 700px;
}

/* Všetky obrázky musia mať border-radius */
.firmy-page img {
    border-radius: var(--hp-radius);
}

.firmy-page .hp-section-white {
    padding: 24px;
    background-color: var(--hp-bg-white);
}

@media (max-width: 768px) {
    .firmy-page .hp-section-white {
        padding: 32px 0;
    }
}

.firmy-page .hp-section-light {
    padding: 0;
    background-color: var(--hp-bg-light);
    border-radius: var(--hp-radius);
}

@media (max-width: 768px) {
    .firmy-page .hp-section-light {
        padding: 0;
    }
}

.firmy-page .hp-section-primary {
    padding: var(--hp-pad-section);
    background-color: var(--hp-primary-color);
    color: var(--hp-bg-white);
    border-radius: var(--hp-radius);
}

.firmy-page .hp-section-primary * {
    color: var(--hp-bg-white);
}

/* Všetky h2 v .firmy-page majú 32px a 24px margin-bottom */
.firmy-page h2 {
    font-size: 32px !important;
    margin-bottom: 24px !important;
}

.firmy-page .hp-section-heading {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
    line-height: var(--hp-line-heading);
}

.firmy-page [class*="-wrapper"]:not(.hp-hero-wrapper),
.firmy-page [class*="-container"] {
    margin: 0 auto;
    padding: 24px;
}

@media (max-width: 768px) {
    .firmy-page [class*="-wrapper"]:not(.hp-hero-wrapper),
    .firmy-page [class*="-container"] {
        padding: 16px 16px;
    }
}

.firmy-page .hp-hero {
}

.firmy-page .hp-hero-wrapper {
    max-width: var(--hp-container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.firmy-page .hp-hero-content {
    width: 100%;
    padding: 0;
    text-align: center;
}

.firmy-page .hp-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--hp-radius);
    object-fit: cover;
}

.firmy-page .hp-hero-heading {
    font-size: 40px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    margin: 0 auto var(--hp-mb-xs) auto !important;
    line-height: var(--hp-line-heading);
    text-align: center !important;
    width: 100%;
    display: block;
}

.firmy-page .hp-hero-subheading {
    font-size: var(--hp-font-intro);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-light);
    margin: 0 0 15px 0;
    text-align: center;
}

.firmy-page .hp-hero-paragraph {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
    margin: 0 0 20px 0;
    text-align: center;
}

.firmy-page .hp-hero-actions {
    margin: 16px 0 8px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.firmy-page .hp-hero-btn {
    display: inline-block;
    padding: 16px 20px;
    margin: 0;
    background-color: var(--hp-primary-color);
    color: var(--hp-bg-white);
    text-decoration: none;
    border-radius: var(--hp-radius-sm);
    font-weight: var(--hp-weight-medium);
    font-size: 16px;
    width: 280px;
    text-align: center;
    white-space: normal;
    border: 2px solid var(--hp-primary-color);
}

.firmy-page .hp-hero-btn:hover {
    background-color: #173d7a;
    border-color: #173d7a;
    color: var(--hp-bg-white);
}

.firmy-page .hp-hero-btn:nth-child(2) {
    background-color: transparent;
    color: var(--hp-primary-color);
    border: 2px solid var(--hp-primary-color);
}

.firmy-page .hp-hero-btn:nth-child(2):hover {
    background-color: var(--hp-primary-color);
    color: var(--hp-bg-white);
}

.firmy-page .hp-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 600px;
    margin: 20px auto 0;
    text-align: left;
}

.firmy-page .hp-hero-list li {
    font-size: var(--hp-font-small);
    color: var(--hp-text-dark);
}


.firmy-page .hp-problems {
}

.firmy-page .hp-problem-container {
    max-width: var(--hp-container);
    margin: 0 auto;
}

.firmy-page .hp-problem-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
    line-height: var(--hp-line-heading);
}

.firmy-page .hp-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hp-gap-md);
    margin-bottom: var(--hp-mb-md);
}

.firmy-page .hp-problem-item {
    background-color: var(--hp-bg-white);
    padding: var(--hp-pad-card-sm);
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.firmy-page .hp-problem-item:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
}

.firmy-page .hp-problem-icon {
    margin-bottom: var(--hp-mb-xxs);
    text-align: center;
}

.firmy-page .hp-problem-icon img {
    width: 64px;
    height: 64px;
    display: inline-block;
    border-radius: var(--hp-radius);
}

.firmy-page .hp-problem-item-title {
    font-size: var(--hp-font-h3);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-mini) 0;
    text-align: center;
}

.firmy-page .hp-problem-item-text {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    color: var(--hp-text-medium);
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

.firmy-page .hp-problems-footer {
    text-align: center;
    font-size: 22px;
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
    margin: var(--hp-mb-md) 0 0 0;
}

.firmy-page .hp-problems-footer strong {
    font-weight: normal;
}

.firmy-page .hp-solution {
}

.firmy-page .hp-solution-container {
    max-width: var(--hp-container);
    margin: 0 auto;
}

.firmy-page .hp-solution-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
}

.firmy-page .hp-solution-intro {
    font-size: var(--hp-font-intro);
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
    text-align: center;
    margin: 0 0 var(--hp-mb-lg) 0;
    max-width: var(--hp-container-text);
    margin-left: auto;
    margin-right: auto;
}

.firmy-page .hp-solution-columns {
    display: flex;
    gap: var(--hp-gap-md);
    margin-top: 32px;
}

.firmy-page .hp-solution-col {
    flex: 1;
    min-width: 0;
}

.firmy-page .hp-solution-card {
    background-color: var(--hp-bg-white);
    padding: 16px;
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
}

.firmy-page .hp-solution-card:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
}

.firmy-page .hp-solution-image {
    margin-bottom: var(--hp-mb-xs);
    text-align: center;
    min-height: 200px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--hp-radius);
    background-color: #f8f9fa;
}

.firmy-page .hp-solution-image img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: var(--hp-radius);
}

.firmy-page .hp-pillar-title {
    font-size: 18px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-xs) 0;
    text-align: center;
}

.firmy-page .hp-pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.firmy-page .hp-pillar-list li {
    margin-bottom: var(--hp-mb-micro);
    font-size: var(--hp-font-small);
    color: var(--hp-text-medium);
    padding-left: 20px;
    position: relative;
}

.firmy-page .hp-pillar-list li:last-child {
    color: var(--hp-text-dark);
}

.firmy-page .hp-pillar-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--hp-primary-color);
    font-size: 28px;
    line-height: 1;
}

.firmy-page .hp-offer {
}

.firmy-page .hp-offer-container {
    max-width: var(--hp-container);
    margin: 0 auto;
    text-align: center;
}

.firmy-page .hp-offer-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    margin-bottom: 24px !important;
    text-align: center;
}

.firmy-page .hp-offer-subheading {
    font-size: var(--hp-font-intro);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-sm) 0;
    text-align: center;
}

.firmy-page .hp-offer-text {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-sm) 0;
    max-width: var(--hp-container-text);
    margin-left: auto;
    margin-right: auto;
}

.firmy-page .hp-offer-capacity {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-xxs) 0;
    text-align: center;
}

.firmy-page .hp-offer-note {
    font-size: var(--hp-font-small);
    line-height: var(--hp-line-body);
    color: var(--hp-text-medium);
    margin: 0 0 var(--hp-mb-sm) 0;
    font-style: italic;
    text-align: center;
}

.firmy-page .hp-offer-cta {
    text-align: center;
    margin-top: var(--hp-mb-sm);
}

.firmy-page .hp-offer-btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--hp-primary-color);
    color: var(--hp-bg-white);
    text-decoration: none;
    border-radius: var(--hp-radius-sm);
    font-weight: var(--hp-weight-medium);
    font-size: 16px;
    border: 2px solid var(--hp-primary-color);
}

.firmy-page .hp-offer-btn:hover {
    background-color: #173d7a;
    border-color: #173d7a;
    color: var(--hp-bg-white);
}

.firmy-page .hp-benefits {
}

.firmy-page .hp-benefits-container {
    max-width: var(--hp-container);
    margin: 0 auto;
}

.firmy-page .hp-benefits-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
}

.firmy-page .hp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hp-gap-md);
}

.firmy-page .hp-benefit-item {
    background-color: var(--hp-bg-white);
    padding: 25px 18px;
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.firmy-page .hp-benefit-item:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
}

.firmy-page .hp-benefit-icon {
    margin-bottom: var(--hp-mb-xxs);
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--hp-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.firmy-page .hp-benefit-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
    color: var(--hp-primary-color);
    display: block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Piggy Bank Icon - fa-piggy-bank */
.firmy-page .hp-icon-piggy::before {
    content: "\f4d3";
}

/* Rocket Icon - fa-rocket */
.firmy-page .hp-icon-rocket::before {
    content: "\f135";
}

/* Shield Icon - fa-shield-alt (fa-shield-halved in FA6) */
.firmy-page .hp-icon-shield::before {
    content: "\f3ed";
}

/* Tools Icon - fa-tools */
.firmy-page .hp-icon-tools::before {
    content: "\f7d9";
}

/* Headset Icon - fa-headset */
.firmy-page .hp-icon-headset::before {
    content: "\f590";
}

/* Truck Icon - fa-truck */
.firmy-page .hp-icon-truck::before {
    content: "\f0d1";
}

/* Gift Icon - fa-gift */
.firmy-page .hp-icon-gift::before {
    content: "\f06b";
}

/* Clock Icon - fa-clock */
.firmy-page .hp-icon-clock::before {
    content: "\f017";
}

/* Award Icon - fa-award */
.firmy-page .hp-icon-award::before {
    content: "\f559";
}

.firmy-page .hp-benefit-item-title {
    font-size: var(--hp-font-h3);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-mini) 0;
}

.firmy-page .hp-benefit-item-text {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    color: var(--hp-text-medium);
    margin: 0;
    flex-grow: 1;
}

.firmy-page .hp-products {
}

.firmy-page .hp-products-wrapper {
    max-width: var(--hp-container);
    margin: 0 auto;
}

.firmy-page .hp-products-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
    line-height: var(--hp-line-heading);
}

.firmy-page .hp-main-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.firmy-page .hp-main-cat {
    background: var(--hp-bg-white);
    padding: 35px 25px;
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    text-align: center;
    border: 2px solid transparent;
}

.firmy-page .hp-main-cat:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
}

.firmy-page .hp-cat-products {
    border-color: var(--hp-primary-color);
}

.firmy-page .hp-cat-services {
    border-color: var(--hp-text-dark);
}

.firmy-page .hp-cat-icon {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
}

.firmy-page .hp-main-cat h3 {
    font-size: 22px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 10px 0;
}

.firmy-page .hp-main-cat p {
    font-size: var(--hp-font-body);
    color: var(--hp-text-medium);
    margin: 0;
}

.firmy-page .hp-products-intro {
    text-align: center;
    margin-bottom: 50px;
}

.firmy-page .hp-products-intro p {
    font-size: var(--hp-font-intro);
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
    margin: 0;
    max-width: var(--hp-container-text);
    margin-left: auto;
    margin-right: auto;
}

.firmy-page .hp-sortiment-heading {
    font-size: var(--hp-font-h3);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 35px 0;
}

.firmy-page .hp-product-accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    grid-auto-rows: auto;
}

.firmy-page .hp-accordion-item {
    background-color: transparent;
    border-radius: var(--hp-radius);
    overflow: visible;
    transition: all var(--hp-transition);
    width: 100%;
}

.firmy-page .hp-accordion-item.active {
    background-color: var(--hp-bg-white);
    overflow: hidden;
    box-shadow: var(--hp-shadow);
}

.firmy-page .hp-accordion-item.active:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
}

.firmy-page .hp-accordion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    cursor: pointer;
    background-color: var(--hp-primary-color);
    transition: all var(--hp-transition);
    border-radius: var(--hp-radius);
}

.firmy-page .hp-accordion-item.active .hp-accordion-header {
    border-radius: var(--hp-radius) var(--hp-radius) 0 0;
}

.firmy-page .hp-accordion-header:hover {
    background-color: #173d7a;
}

.firmy-page .hp-accordion-title {
    flex: 1;
    font-size: 18px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-bg-white);
    margin: 0;
}

.firmy-page .hp-accordion-icon {
    font-size: 24px;
    font-weight: normal;
    color: var(--hp-bg-white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.firmy-page .hp-accordion-item.active .hp-accordion-icon {
    transform: rotate(45deg);
}

.firmy-page .hp-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--hp-bg-white);
    padding: 0 25px;
}

.firmy-page .hp-accordion-item.active .hp-accordion-content {
    padding: 25px;
}

.firmy-page .hp-accordion-content .hp-product-highlight,
.firmy-page .hp-accordion-content .hp-product-desc {
    margin: 0 0 15px 0;
    padding: 0;
    background-color: transparent;
}

.firmy-page .hp-accordion-content .hp-product-list {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.firmy-page .hp-accordion-content .hp-product-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--hp-primary-color);
    color: var(--hp-bg-white);
    text-decoration: none;
    border-radius: var(--hp-radius-sm);
    font-weight: var(--hp-weight-medium);
    transition: all var(--hp-transition);
    margin: 10px 0 0 0;
}

.firmy-page .hp-accordion-content .hp-product-link:hover {
    background-color: #173d7a;
    color: var(--hp-bg-white);
    transform: translateX(3px);
}

.firmy-page .hp-product-card {
    background: var(--hp-bg-white);
    border-radius: var(--hp-radius);
    overflow: hidden;
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    border: 2px solid var(--hp-bg-light);
}

.firmy-page .hp-product-card:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
    border-color: var(--hp-primary-color);
}

.firmy-page .hp-product-card-header {
    background-color: var(--hp-primary-color);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.firmy-page .hp-product-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--hp-bg-white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    flex-shrink: 0;
}

.firmy-page .hp-product-name {
    font-size: 20px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-bg-white);
    margin: 0;
    line-height: 1.3;
}

.firmy-page .hp-product-card-body {
    padding: 30px;
}

.firmy-page .hp-product-highlight {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
    margin: 0 0 15px 0;
    padding: 0;
    background-color: transparent;
}

.firmy-page .hp-product-desc {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
    margin: 0 0 20px 0;
}

.firmy-page .hp-product-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.firmy-page .hp-product-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--hp-text-medium);
    padding-left: 25px;
    position: relative;
    line-height: var(--hp-line-body);
}

.firmy-page .hp-product-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hp-primary-color);
    font-weight: var(--hp-weight-bold);
    font-size: 16px;
}

.firmy-page .hp-product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hp-primary-color);
    text-decoration: none;
    font-weight: var(--hp-weight-medium);
    font-size: 16px;
}

.firmy-page .hp-product-link:hover {
    color: #173d7a;
}

.firmy-page .hp-product-detail {
}

.firmy-page .hp-product-detail-wrapper {
    max-width: var(--hp-container);
    margin: 0 auto;
    padding: 0;
}

.firmy-page .hp-detail-layout {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 30px;
}

.firmy-page .hp-detail-layout-left {
    flex-direction: row;
}

.firmy-page .hp-detail-layout-right {
    flex-direction: row-reverse;
}

.firmy-page .hp-detail-image-col {
    flex: 0 0 35%;
}

.firmy-page .hp-detail-image-col img {
    width: 100%;
    height: auto;
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
}

.firmy-page .hp-detail-content-col {
    flex: 1;
}

.firmy-page .hp-product-detail-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
    line-height: var(--hp-line-heading);
}

.firmy-page .hp-detail-image {
    margin-bottom: var(--hp-mb-md);
    text-align: center;
}

.firmy-page .hp-detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--hp-radius);
}

.firmy-page .hp-detail-problem {
    background-color: var(--hp-bg-light);
    padding: var(--hp-pad-card);
    margin-bottom: var(--hp-mb-md);
    border-radius: var(--hp-radius);
}

.firmy-page .hp-detail-problem-title,
.firmy-page .hp-detail-problem-subtitle {
    font-size: var(--hp-font-h3);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-xxs) 0;
}

.firmy-page .hp-detail-problem-result {
    color: var(--hp-text-dark);
    margin-top: var(--hp-mb-xxs);
}

.firmy-page .hp-detail-solution {
    background-color: var(--hp-bg-light);
    padding: var(--hp-pad-card);
    margin-bottom: var(--hp-mb-md);
    border-radius: var(--hp-radius);
}

.firmy-page .hp-detail-solution-title,
.firmy-page .hp-detail-solution-subtitle {
    font-size: var(--hp-font-h3);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    margin: 0 0 var(--hp-mb-xxs) 0;
}

.firmy-page .hp-detail-benefits {
    margin-bottom: var(--hp-mb-md);
}

.firmy-page .hp-product-detail-wrapper > .hp-detail-benefits,
.firmy-page .hp-service-detail-wrapper > .hp-detail-benefits {
    margin-top: 30px;
}

.firmy-page .hp-detail-accessories-section .hp-detail-benefits {
    flex: 0 0 30%;
    text-align: left;
}

.firmy-page .hp-detail-benefits-title,
.firmy-page .hp-detail-benefits-subtitle {
    font-size: var(--hp-font-h3);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-sm) 0;
}

.firmy-page .hp-detail-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.firmy-page .hp-detail-benefits-list li {
    margin-bottom: var(--hp-mb-micro);
    font-size: var(--hp-font-body);
    color: var(--hp-text-medium);
    padding-left: 25px;
    position: relative;
    line-height: var(--hp-line-body);
}

.firmy-page .hp-detail-benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--hp-primary-color);
}

.firmy-page .hp-detail-benefits-list.hp-two-columns {
    column-count: 2;
    column-gap: 30px;
}

.firmy-page .hp-detail-benefits-list.hp-two-columns li {
    break-inside: avoid;
    page-break-inside: avoid;
}

.firmy-page .hp-detail-layout-60-40 .hp-detail-content-col {
    flex: 0 0 60%;
}

.firmy-page .hp-detail-layout-60-40 .hp-detail-image-col {
    flex: 0 0 40%;
}

.firmy-page .hp-detail-layout-50-50 .hp-detail-content-col,
.firmy-page .hp-detail-layout-50-50 .hp-detail-image-col {
    flex: 0 0 50%;
}

.firmy-page .hp-benefits-compact {
    margin-bottom: 25px;
}

.firmy-page .hp-benefits-no-margin {
    margin-bottom: 0;
}

.firmy-page .hp-ferrofix-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.firmy-page .hp-ferrofix-layout {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.firmy-page .hp-ferrofix-image-col {
    flex: 0 0 50%;
}

.firmy-page .hp-ferrofix-content-col {
    flex: 0 0 50%;
}

.firmy-page .hp-product-image {
    width: 100%;
    height: auto;
    border-radius: var(--hp-radius);
}

.firmy-page .hp-detail-content-col .hp-section-heading {
    text-align: left;
    margin-bottom: 24px !important;
}

.firmy-page .hp-detail-accessories-section {
    margin-top: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.firmy-page .hp-detail-accessories {
    margin-bottom: var(--hp-mb-md);
}

.firmy-page .hp-detail-accessories-title {
    font-size: var(--hp-font-h3);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-sm) 0;
}

.firmy-page .hp-detail-accessories-wrapper {
    flex: 1;
}

.firmy-page .hp-accessories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--hp-gap-md);
    margin-bottom: 30px;
}

.firmy-page .hp-accessory-item {
    background-color: var(--hp-bg-light);
    padding: 8px;
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    display: flex;
    gap: 20px;
    align-items: center;
}

.firmy-page .hp-accessory-item:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-2px);
}

.firmy-page .hp-accessory-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--hp-radius-sm);
}

.firmy-page .hp-accessory-title {
    font-size: 18px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 5px 0;
}

.firmy-page .hp-accessory-desc {
    font-size: var(--hp-font-small);
    color: var(--hp-text-medium);
    margin: 0;
}

.firmy-page .hp-detail-cta {
    text-align: center;
    margin-top: var(--hp-mb-md);
}

.firmy-page .hp-detail-content-col .hp-detail-cta {
    text-align: left;
    margin-top: 25px;
}

.firmy-page .hp-detail-content-col p {
    margin-bottom: 15px;
}

.firmy-page .hp-detail-content-col .hp-subsection-title {
    margin-bottom: 10px;
    margin-top: 20px;
}

.firmy-page .hp-detail-btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--hp-primary-color);
    color: var(--hp-bg-white);
    text-decoration: none;
    border-radius: var(--hp-radius-sm);
    font-weight: var(--hp-weight-medium);
    font-size: 16px;
}

.firmy-page .hp-detail-btn:hover {
    background-color: #173d7a;
    color: var(--hp-bg-white);
}

.firmy-page .hp-product-subsection {
    margin-bottom: var(--hp-mb-lg);
}

.firmy-page .hp-subsection-title {
    font-size: var(--hp-font-h3);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    margin: 0 0 var(--hp-mb-xxs) 0;
}

.firmy-page .hp-subsection-desc {
    font-size: var(--hp-font-body);
    color: var(--hp-text-medium);
    margin: 0 0 var(--hp-mb-sm) 0;
}

.firmy-page .hp-detail-series {
    margin-bottom: var(--hp-mb-md);
}

.firmy-page .hp-detail-series-title {
    font-size: 20px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-xxs) 0;
}

.firmy-page .hp-detail-series-desc {
    font-size: var(--hp-font-body);
    color: var(--hp-text-medium);
    margin: 0 0 var(--hp-mb-sm) 0;
}

.firmy-page .hp-series-types {
    display: flex;
    gap: var(--hp-gap-md);
}

.firmy-page .hp-series-item {
    flex: 1;
}

.firmy-page .hp-series-item h5 {
    font-size: 18px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 10px 0;
}

.firmy-page .hp-series-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.firmy-page .hp-series-item li {
    font-size: var(--hp-font-body);
    color: var(--hp-text-medium);
    margin-bottom: 8px;
}

.firmy-page .hp-service-detail {
}

.firmy-page .hp-service-detail-wrapper {
    max-width: var(--hp-container);
    margin: 0 auto;
}

.firmy-page .hp-service-detail-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
    line-height: var(--hp-line-heading);
}

.firmy-page .hp-stats {
}

.firmy-page .hp-stats-wrapper {
    max-width: var(--hp-container);
    margin: 0 auto;
}

.firmy-page .hp-stats .hp-section-heading {
    color: var(--hp-text-dark) !important;
    margin-bottom: 40px !important;
}

.firmy-page .hp-stats-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
}

.firmy-page .hp-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hp-gap-md);
    margin-bottom: var(--hp-mb-lg);
    width: 100%;
    max-width: 100%;
}

.firmy-page .hp-stat-item {
    background-color: var(--hp-bg-light);
    padding: 24px;
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    text-align: center;
    min-height: 140px;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.firmy-page .hp-stat-item:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
}

.firmy-page .hp-stat-number {
    font-size: 48px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.firmy-page .hp-stat-label {
    font-size: var(--hp-font-body);
    color: var(--hp-text-dark);
    line-height: var(--hp-line-body);
    width: 100%;
}

.firmy-page .hp-delivery-info {
    margin-top: 40px;
    padding-top: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.firmy-page .hp-delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hp-gap-md);
    align-items: stretch;
}

.firmy-page .hp-delivery-item {
    text-align: center;
    background-color: var(--hp-bg-white);
    padding: 16px;
    border-radius: var(--hp-radius);
    border: 2px solid var(--hp-primary-color);
    transition: all var(--hp-transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.firmy-page .hp-delivery-item:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
}

.firmy-page .hp-delivery-item * {
    color: var(--hp-text-dark);
}

.firmy-page .hp-delivery-title {
    font-size: 18px;
    font-weight: var(--hp-weight-bold);
    margin: 0 0 12px 0;
    color: var(--hp-primary-color);
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.firmy-page .hp-delivery-text {
    font-size: var(--hp-font-body);
    margin: 0;
    color: var(--hp-text-medium);
    line-height: var(--hp-line-body);
}

.firmy-page .hp-references {
}

.firmy-page .hp-references-wrapper {
    max-width: var(--hp-container);
    margin: 0 auto;
}

.firmy-page .hp-references-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
}

.firmy-page .hp-references-intro {
    text-align: center;
    margin-bottom: var(--hp-mb-lg);
    max-width: var(--hp-container-text);
    margin-left: auto;
    margin-right: auto;
}

.firmy-page .hp-references-intro p {
    font-size: var(--hp-font-intro);
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
}

.firmy-page .hp-quote-box {
    background-color: var(--hp-primary-color);
    padding: 30px 40px;
    margin-bottom: 40px;
    text-align: center;
    border-radius: var(--hp-radius);
}

.firmy-page .hp-quote-box * {
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-quote-text {
    font-size: 20px !important;
    font-weight: var(--hp-weight-bold) !important;
    color: var(--hp-bg-white) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
    font-style: italic !important;
}

.firmy-page .hp-case-studies {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--hp-gap-md);
}

.firmy-page .hp-case-study-item {
    background-color: var(--hp-bg-white);
    padding: 30px 25px;
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.firmy-page .hp-case-study-item:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
    border-color: var(--hp-primary-color);
}

.firmy-page .hp-case-study-title {
    font-size: 18px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    margin: 0 0 20px 0;
    text-align: left;
}

.firmy-page .hp-case-study-quote {
    font-size: var(--hp-font-body);
    font-style: italic;
    color: var(--hp-text-dark);
    margin: 0 0 20px 0;
    line-height: var(--hp-line-body);
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.firmy-page .hp-case-study-author {
    font-size: var(--hp-font-small);
    color: var(--hp-text-medium);
    font-weight: var(--hp-weight-bold);
    margin: 0;
    text-align: right;
}

.firmy-page .hp-uniqueness {
}

.firmy-page .hp-uniqueness-wrapper {
    max-width: var(--hp-container);
    margin: 0 auto;
}

.firmy-page .hp-uniqueness-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
    line-height: var(--hp-line-heading);
}

.firmy-page .hp-uniqueness-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--hp-gap-lg);
    margin-bottom: var(--hp-mb-lg);
}

.firmy-page .hp-uniqueness-col-title {
    font-size: 22px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 30px 0 24px 0;
    text-align: center;
}

.firmy-page h2.hp-uniqueness-col-title {
    margin-bottom: 24px !important;
}

.firmy-page .hp-feature-item {
    background-color: var(--hp-bg-white);
    padding: 16px;
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    margin-bottom: 20px;
    border: 2px solid transparent;
}

.firmy-page .hp-feature-item:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
    border-color: var(--hp-primary-color);
}

.firmy-page .hp-feature-title {
    font-size: 19px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    margin: 0 0 12px 0;
}

.firmy-page .hp-feature-desc {
    font-size: var(--hp-font-body);
    color: var(--hp-text-dark);
    margin: 0;
    line-height: var(--hp-line-body);
}

.firmy-page .hp-uniqueness-col:nth-child(2) .hp-feature-item {
    background-color: var(--hp-primary-color);
    border-color: var(--hp-primary-color);
}

.firmy-page .hp-uniqueness-col:nth-child(2) .hp-feature-item:hover {
    background-color: #173d7a;
    border-color: #173d7a;
}

.firmy-page .hp-uniqueness-col:nth-child(2) .hp-feature-title {
    color: var(--hp-bg-white);
}

.firmy-page .hp-uniqueness-col:nth-child(2) .hp-feature-desc {
    color: var(--hp-bg-white);
}

.firmy-page .hp-uniqueness-col:nth-child(2) .hp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.firmy-page .hp-uniqueness-col:nth-child(2) .hp-feature-item {
    margin-bottom: 0;
}

.firmy-page .hp-uniqueness-statement {
    background-color: var(--hp-primary-color);
    padding: 35px 40px;
    text-align: center;
    border-radius: var(--hp-radius);
}

.firmy-page .hp-uniqueness-statement * {
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-statement-quote {
    font-size: 20px !important;
    font-weight: var(--hp-weight-bold) !important;
    color: var(--hp-bg-white) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
    font-style: italic !important;
}

.firmy-page .hp-b2b-benefits {
}

.firmy-page .hp-b2b-benefits-wrapper {
    max-width: var(--hp-container);
    margin: 0 auto;
}

.firmy-page .hp-b2b-benefits-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
}

.firmy-page .hp-b2b-intro {
    text-align: center;
    margin-bottom: var(--hp-mb-lg);
    max-width: var(--hp-container-text);
    margin-left: auto;
    margin-right: auto;
}

.firmy-page .hp-b2b-intro p {
    font-size: var(--hp-font-intro);
    color: var(--hp-text-dark);
}

.firmy-page .hp-b2b-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hp-gap-md);
}

.firmy-page .hp-b2b-item {
    background-color: var(--hp-bg-white);
    padding: var(--hp-pad-card);
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    text-align: center;
}

.firmy-page .hp-b2b-item:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-3px);
}

.firmy-page .hp-b2b-icon {
    margin-bottom: var(--hp-mb-xxs);
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--hp-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.firmy-page .hp-b2b-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
    color: var(--hp-primary-color);
    display: block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Percent Icon - fa-percent */
.firmy-page .hp-icon-percent::before {
    content: "\f295";
}

/* Shipping Fast Icon - fa-shipping-fast */
.firmy-page .hp-icon-shipping-fast::before {
    content: "\f48b";
}

/* Gift Icon for B2B - fa-gift */
.firmy-page .hp-icon-gift-b2b::before {
    content: "\f06b";
}

/* Star Icon - fa-star */
.firmy-page .hp-icon-star::before {
    content: "\f005";
}

/* Phone Icon - fa-phone */
.firmy-page .hp-icon-phone::before {
    content: "\f095";
}

/* Plus Circle Icon - fa-plus-circle */
.firmy-page .hp-icon-plus-circle::before {
    content: "\f055";
}

.firmy-page .hp-b2b-item-title {
    font-size: var(--hp-font-h3);
    font-weight: var(--hp-weight-bold);
    color: var(--hp-text-dark);
    margin: 0 0 var(--hp-mb-mini) 0;
}

.firmy-page .hp-b2b-item-text {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    color: var(--hp-text-medium);
    margin: 0;
}

.firmy-page .hp-fomo {
}

.firmy-page .hp-fomo-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.firmy-page .hp-fomo-box {
    background-color: var(--hp-primary-color);
    padding: 35px 30px;
    text-align: center;
    border-radius: var(--hp-radius);
}

.firmy-page .hp-fomo-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    margin-bottom: 24px !important;
    color: var(--hp-bg-white);
}

.firmy-page .hp-fomo-content p {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    margin: 0 0 var(--hp-mb-xxs) 0;
    color: var(--hp-bg-white);
}

.firmy-page .hp-fomo-waitlist {
    margin-bottom: var(--hp-mb-md);
}

.firmy-page .hp-fomo-waitlist strong {
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-fomo-content {
    color: var(--hp-bg-white);
}

.firmy-page .hp-fomo-content * {
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-fomo-btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--hp-bg-white);
    color: var(--hp-primary-color);
    text-decoration: none;
    border-radius: var(--hp-radius-sm);
    font-weight: var(--hp-weight-bold);
    font-size: 16px;
    border: 2px solid var(--hp-bg-white);
}

.firmy-page .hp-fomo-btn:hover {
    background-color: transparent;
    color: var(--hp-bg-white);
    border-color: var(--hp-bg-white);
}

.firmy-page .hp-guarantee {
}

.firmy-page .hp-guarantee-wrapper {
    max-width: var(--hp-container);
    margin: 0 auto;
}

.firmy-page .hp-guarantee-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
}

.firmy-page .hp-guarantee-layout {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.firmy-page .hp-guarantee-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.firmy-page .hp-guarantee-image {
    flex: 0 0 50%;
}

.firmy-page .hp-guarantee-item {
    background-color: var(--hp-bg-white);
    padding: 12px;
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: all var(--hp-transition);
    border: 2px solid transparent;
    width: 100%;
}

.firmy-page .hp-guarantee-item:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateX(5px);
    border-color: var(--hp-primary-color);
}

.firmy-page .hp-guarantee-item-title {
    font-size: 20px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    margin: 0 0 10px 0;
}

.firmy-page .hp-guarantee-item-text {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
    margin: 0;
}

.firmy-page .hp-faq {
}

.firmy-page .hp-faq-wrapper {
    max-width: var(--hp-container-text);
    margin: 0 auto;
}

.firmy-page .hp-faq-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    text-align: center;
    margin-bottom: 24px !important;
}

.firmy-page .hp-faq-item {
    background-color: var(--hp-bg-white);
    padding: 0;
    border-radius: var(--hp-radius);
    border: 2px solid var(--hp-primary-color);
    transition: all var(--hp-transition);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--hp-shadow);
}

.firmy-page .hp-faq-item:hover {
    box-shadow: var(--hp-shadow-hover);
    transform: translateY(-2px);
}

.firmy-page .hp-faq-item.active {
    background-color: var(--hp-primary-color);
    box-shadow: var(--hp-shadow-hover);
}

.firmy-page .hp-faq-question {
    font-size: 18px;
    font-weight: var(--hp-weight-bold);
    color: var(--hp-primary-color);
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: transparent;
    transition: all var(--hp-transition);
}

.firmy-page .hp-faq-question:hover {
    background-color: rgba(30, 82, 165, 0.05);
}

.firmy-page .hp-faq-item.active .hp-faq-question {
    color: var(--hp-bg-white);
}

.firmy-page .hp-faq-icon {
    font-size: 20px;
    font-weight: normal;
    color: var(--hp-primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.firmy-page .hp-faq-item.active .hp-faq-icon {
    transform: rotate(180deg);
    color: var(--hp-bg-white);
}

.firmy-page .hp-faq-answer {
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: transparent;
}

.firmy-page .hp-faq-answer p {
    font-size: var(--hp-font-body);
    line-height: var(--hp-line-body);
    color: var(--hp-text-dark);
    margin: 0;
    padding: 0 25px 20px 25px;
}

.firmy-page .hp-faq-item.active .hp-faq-answer p {
    color: var(--hp-bg-white);
}

.firmy-page .hp-final-cta {
    padding: 32px 0;
    background-color: transparent;
}

.firmy-page .hp-final-cta-wrapper {
    max-width: var(--hp-container);
    margin: 0 auto;
    background-color: var(--hp-primary-color);
    border-radius: var(--hp-radius);
    padding: 50px 30px;
    text-align: center;
}

.firmy-page .hp-final-cta-wrapper * {
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-final-cta-wrapper .hp-final-cta-btn {
    color: var(--hp-primary-color) !important;
}

.firmy-page .hp-final-cta-title {
    font-size: 32px !important;
    font-weight: var(--hp-weight-bold);
    margin-bottom: 24px !important;
    line-height: 1.2;
}

.firmy-page .hp-final-cta-desc {
    margin-bottom: 45px;
}

.firmy-page .hp-final-cta-desc p {
    font-size: 19px;
    line-height: 1.6;
    margin: 0;
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-final-cta-buttons {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
    justify-content: center;
}

.firmy-page .hp-final-cta-button-box {
    flex: 1;
    max-width: 450px;
}

.firmy-page .hp-final-cta-btn {
    display: block;
    padding: 18px 40px;
    background-color: var(--hp-bg-white);
    color: var(--hp-primary-color);
    text-decoration: none;
    border-radius: var(--hp-radius-sm);
    font-weight: var(--hp-weight-bold);
    font-size: 17px;
    margin-bottom: 12px;
    transition: all var(--hp-transition);
}

.firmy-page .hp-final-cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.firmy-page .hp-final-cta-button-desc {
    font-size: 15px;
    margin: 0;
    opacity: 0.9;
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-final-cta-contact {
    margin-bottom: 35px;
}

.firmy-page .hp-contact-item {
    font-size: 17px;
    margin: 0 0 8px 0;
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-contact-item strong {
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-contact-item a {
    color: var(--hp-bg-white);
    text-decoration: none;
    font-weight: var(--hp-weight-bold);
}

.firmy-page .hp-contact-item a:hover {
    text-decoration: underline;
}

.firmy-page .hp-contact-hours {
    font-size: 15px;
    margin: 0;
    opacity: 0.85;
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-final-trust-badges {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.firmy-page .hp-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.firmy-page .hp-badge-icon {
    font-size: 24px;
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-badge-text {
    font-size: 18px;
    font-weight: var(--hp-weight-medium);
    color: var(--hp-bg-white) !important;
}

.firmy-page .hp-final-trust-badges * {
    color: var(--hp-bg-white) !important;
}

@media (max-width: 1200px) {
    .firmy-page {
        --hp-gap-lg: 40px;
        --hp-gap-md: 30px;
    }
}

@media (max-width: 992px) {
    .firmy-page {
        --hp-pad-section: 80px 25px;
        --hp-pad-section-sm: 60px 25px;
        --hp-font-h1: 40px;
        --hp-font-h2: 32px;
        --hp-gap-lg: 35px;
    }
    
    .firmy-page .hp-hero-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    
    .firmy-page .hp-solution-columns {
        flex-direction: column;
        gap: 20px;
    }
    
    .firmy-page .hp-solution-card {
        padding: 16px;
        margin-bottom: 0;
    }
    
    .firmy-page .hp-solution-image {
        height: 180px;
    }
    
    .firmy-page .hp-problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .firmy-page .hp-problem-item {
        padding: 25px 20px;
    }
    
    .firmy-page .hp-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .firmy-page .hp-product-accordion {
        grid-template-columns: 1fr;
    }
    
    .firmy-page .hp-accordion-header {
        padding: 12px;
    }
    
    .firmy-page .hp-accordion-content {
        padding: 0 20px;
    }
    
    .firmy-page .hp-accordion-item.active .hp-accordion-content {
        padding: 12px;
    }
    
    .firmy-page .hp-accordion-title {
        font-size: 15px;
    }
    
    .firmy-page .hp-product-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .firmy-page .hp-main-categories {
        grid-template-columns: 1fr;
    }
    
    .firmy-page .hp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: var(--hp-gap-md);
    }
    
    .firmy-page .hp-stat-item {
        width: 100%;
        box-sizing: border-box;
    }
    
    .firmy-page .hp-delivery-grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    
    .firmy-page .hp-case-studies {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .firmy-page .hp-uniqueness-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .firmy-page .hp-uniqueness-col-title {
        margin-top: 25px;
        margin-bottom: 24px !important;
    }
    
    .firmy-page .hp-feature-item {
        padding: 16px;
        margin-bottom: 15px;
    }
    
    .firmy-page .hp-uniqueness-col:nth-child(2) .hp-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .firmy-page .hp-b2b-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .firmy-page .hp-b2b-icon {
        width: 56px;
        height: 56px;
    }
    
    .firmy-page .hp-b2b-icon::before {
        font-size: 20px;
    }
    
    .firmy-page .hp-b2b-item {
        padding: 25px 20px;
    }
    
    .firmy-page .hp-guarantee-layout {
        flex-direction: column;
        gap: 25px;
    }
    
    .firmy-page .hp-guarantee-item {
        padding: 18px 20px;
    }
    
    .firmy-page .hp-guarantee-content {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .firmy-page .hp-guarantee-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .firmy-page .hp-final-cta-buttons {
        grid-template-columns: 1fr;
    }
    
    .firmy-page .hp-accessories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .firmy-page {
        --hp-pad-section: 40px 20px;
        --hp-pad-section-sm: 35px 20px;
        --hp-font-h1: 36px;
        --hp-font-h2: 32px;
        --hp-font-h3: 20px;
        --hp-gap-lg: 25px;
        --hp-gap-md: 20px;
        --hp-pad-card: 25px 20px;
        --hp-pad-card-sm: 22px;
        --hp-mb-lg: 40px;
        --hp-mb-md: 30px;
        --hp-mb-sm: 25px;
    }
    
    .firmy-page .hp-hero {
        margin-top: -24px;
    }
    
    .firmy-page .hp-hero-image {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: var(--hp-radius) !important;
    }
    
    .firmy-page .hp-hero-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
        border-radius: var(--hp-radius-sm) !important;
    }
    
    .firmy-page .hp-hero-actions {
        margin: 25px 0 25px 0;
        flex-direction: column;
        align-items: center;
    }
    
    .firmy-page .hp-hero-list {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .firmy-page .hp-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .firmy-page .hp-benefit-item {
        min-height: auto;
    }
    
    .firmy-page .hp-benefit-icon {
        width: 56px;
        height: 56px;
    }
    
    .firmy-page .hp-benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .firmy-page .hp-problem-title,
    .firmy-page .hp-solution-title,
    .firmy-page .hp-offer-title,
    .firmy-page .hp-benefits-title {
        margin-bottom: 24px !important;
    }
    
    .firmy-page .hp-main-cat {
        padding: 25px 20px;
    }
    
    .firmy-page .hp-cat-icon {
        font-size: 48px;
    }
    
    .firmy-page .hp-detail-layout {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .firmy-page .hp-detail-image-col {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .firmy-page .hp-detail-accessories-section {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }
    
    .firmy-page .hp-detail-accessories-section .hp-detail-benefits {
        flex: 0 0 auto;
    }
    
    .firmy-page .hp-stats-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    
    .firmy-page .hp-stat-item {
        width: 100%;
        max-width: 100%;
    }
    
    .firmy-page .hp-stat-number {
        font-size: 40px;
    }
    
    .firmy-page .hp-statement-quote {
        font-size: 18px !important;
        font-weight: var(--hp-weight-bold) !important;
        color: var(--hp-bg-white) !important;
        margin: 0 !important;
        line-height: 1.5 !important;
        font-style: italic !important;
        text-align: center !important;
    }
    
    .firmy-page .hp-uniqueness-statement {
        padding: 25px 20px;
        text-align: center !important;
    }
    
    .firmy-page .hp-quote-box {
        padding: 25px 20px;
        text-align: center !important;
    }
    
    .firmy-page .hp-quote-text {
        font-size: 18px !important;
        font-weight: var(--hp-weight-bold) !important;
        color: var(--hp-bg-white) !important;
        margin: 0 !important;
        line-height: 1.5 !important;
        font-style: italic !important;
        text-align: center !important;
    }
    
    .firmy-page .hp-case-study-item {
        padding: 25px 20px;
        min-height: auto;
    }
    
    .firmy-page .hp-stat-item {
        padding: 25px 15px;
        min-height: auto;
    }
    
    .firmy-page .hp-stat-number {
        font-size: 36px;
    }
    
    .firmy-page .hp-delivery-item {
        padding: 25px 20px;
        max-width: 100%;
        width: 100%;
        min-height: 120px;
    }
    
    .firmy-page .hp-delivery-grid {
        gap: 20px;
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    
    .firmy-page .hp-delivery-title {
        min-height: auto;
        font-size: 16px;
    }
    
    .firmy-page .hp-fomo-box {
        padding: 25px 20px;
    }
    
    .firmy-page .hp-ferrofix-grid {
        gap: 20px;
        margin-top: 25px;
    }
    
    .firmy-page .hp-ferrofix-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .firmy-page .hp-ferrofix-image-col {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .firmy-page .hp-ferrofix-content-col {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .firmy-page .hp-main-categories {
        gap: 20px;
    }
    
    .firmy-page .hp-references-intro {
        margin-bottom: 30px;
    }
    
    .firmy-page .hp-quote-box {
        margin-bottom: 30px;
    }
    
    .firmy-page .hp-final-trust-badges {
        gap: 12px;
    }
    
    .firmy-page .hp-badge-text {
        font-size: 16px;
    }
    
    .firmy-page .hp-badge-icon {
        font-size: 20px;
    }
    
    .firmy-page .hp-final-cta-wrapper {
        padding: 40px 25px;
    }
    
    /* MOBILE: Špecifický padding len pre final-cta sekciu s nadpisom "Pripravení na spoluprácu s lídrom trhu?" */
    .firmy-page .hp-final-cta {
        padding: 32px 0 !important;
    }
    
    .firmy-page .hp-final-cta-title {
        font-size: 32px !important;
    }
    
    .firmy-page .hp-final-cta-desc {
        margin-bottom: 30px;
    }
    
    .firmy-page .hp-final-cta-desc p {
        font-size: 16px;
    }
    
    .firmy-page .hp-final-cta-btn {
        font-size: 15px;
        padding: 14px 24px;
        border-radius: var(--hp-radius-sm) !important;
    }
    
    .firmy-page .hp-final-cta-buttons {
        margin-bottom: 30px;
        flex-direction: column;
        gap: 15px;
    }
    
    .firmy-page .hp-final-cta-button-box {
        max-width: 100%;
    }
    
    .firmy-page .hp-final-cta-button-desc {
        font-size: 13px;
    }
    
    .firmy-page .hp-final-cta-contact {
        margin-bottom: 25px;
    }
    
    .firmy-page .hp-faq-question {
        text-align: left;
        padding: 12px;
        font-size: 16px;
    }
    
    .firmy-page .hp-faq-answer p {
        padding: 0 20px 15px 20px;
        text-align: left;
    }
    
    .firmy-page .hp-faq-item {
        margin-bottom: 15px;
    }
    
    /* MOBILE: Accordion titles a list items zarovnané vľavo */
    .firmy-page .hp-accordion-title,
    h4.hp-accordion-title {
        text-align: left !important;
    }
    
    .firmy-page .hp-accordion-content li,
    .firmy-page .hp-accordion-content .hp-product-list li,
    .firmy-page .hp-pillar-list li,
    .firmy-page .hp-product-list li,
    .firmy-page .hp-detail-benefits-list li {
        text-align: left !important;
    }
    
    /* MOBILE: Všetky obrázky musia mať border-radius */
    .firmy-page .hp-hero-image,
    .firmy-page .hp-solution-image img,
    .firmy-page .hp-detail-image-col img,
    /* MOBILE: Accessory items - menšie paddingy, 50/50 layout, texty vľavo */
    .firmy-page .hp-accessory-item {
        padding: 8px !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }
    
    .firmy-page .hp-accessory-image {
        flex: 0 0 50% !important;
        width: 50% !important;
    }
    
    .firmy-page .hp-accessory-image img {
        width: 100% !important;
        height: auto !important;
        min-height: 120px !important;
        max-height: 150px !important;
        object-fit: cover !important;
        border-radius: var(--hp-radius) !important;
    }
    
    .firmy-page .hp-accessory-info {
        flex: 0 0 50% !important;
        width: 50% !important;
        text-align: left !important;
    }
    
    .firmy-page .hp-accessory-title,
    .firmy-page .hp-accessory-desc {
        text-align: left !important;
    }
    
    .firmy-page .hp-hero-btn,
    .firmy-page .hp-offer-btn,
    .firmy-page .hp-detail-btn,
    .firmy-page .hp-fomo-btn,
    .firmy-page .hp-final-cta-btn,
    .firmy-page .hp-accordion-content .hp-product-link {
        border-radius: var(--hp-radius-sm) !important;
        text-align: center !important;
    }
    
}

@media (max-width: 480px) {
    .firmy-page {
        --hp-pad-section: 35px 15px;
        --hp-pad-section-sm: 30px 15px;
        --hp-font-h1: 32px;
        --hp-font-h2: 28px;
        --hp-font-h3: 19px;
        --hp-font-body: 15px;
        --hp-pad-card: 20px 15px;
        --hp-pad-card-sm: 20px;
        --hp-gap-lg: 20px;
        --hp-gap-md: 15px;
        --hp-mb-lg: 30px;
        --hp-mb-md: 25px;
        --hp-mb-sm: 20px;
        --hp-radius: 6px;
        --hp-radius-sm: 4px;
    }
    
    .firmy-page .hp-hero-btn {
        padding: 14px 24px;
        font-size: 15px;
        border-radius: var(--hp-radius-sm) !important;
    }
    
    .firmy-page .hp-final-cta-wrapper {
        padding: 35px 20px;
    }
    
    .firmy-page .hp-final-cta-title {
        font-size: 28px !important;
        margin-bottom: 24px !important;
    }
    
    .firmy-page .hp-final-cta-buttons {
        margin-bottom: 25px;
        gap: 12px;
    }
    
    .firmy-page .hp-final-cta-button-desc {
        font-size: 12px;
    }
    
    .firmy-page .hp-stat-item {
        padding: 20px 15px;
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }
    
    .firmy-page .hp-stat-number {
        font-size: 32px;
    }
    
    .firmy-page .hp-stats-grid {
        width: 100%;
        max-width: 100%;
    }
    
    .firmy-page .hp-hero-image {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: var(--hp-radius) !important;
    }
}

