/* ======================================================
   CREATED  : 03.02.2026
   RELEASE  : 30.03.2026
   AUTHOR   : Danny Lotz
   WEBSITE  : https://1fire.de
   ====================================================== */

/* ======================================================
   FONTS
   ====================================================== */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/Inter-Light.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Inter-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/Inter-Medium.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Inter-Bold.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../fonts/Inter-ExtraBold.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/Inter-Black.woff2") format("woff2");
}

/* ======================================================
   VARIABLES (:ROOT)
   ====================================================== */
:root {
    --of-font-main: "Inter", system-ui, -apple-system, sans-serif;
    --of-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

    --of-sys-text-heading: #020617;
    --of-sys-text-main: #293548;
    --of-sys-text-muted: #35465e;

    --of-primary: #dc3545;
    --of-primary-rgb: 242, 65, 65;
    --of-primary-hover: #e03636;
    --of-primary-dark: #ca313f;
    --of-secondary: #FF4554;

    --of-link: #B2303B;
    --of-link-hover: #FF4554;

    --of-sys-bg-main: #ffffff;

    --of-bg-white: #ffffff;
    --of-gray-primary: #F1F1F1;
    --of-gray-secondary: #F7F7F7;

    --of-sys-border: #cdd1d5;

    --of-nav-bg: #ffffff;
    --of-nav-text: #15181c;
    --of-nav-hover-bg: #f4f4f4;
    --of-nav-border: #e9ecef;
    --of-dd-bg: #ffffff;
    --of-dd-border: rgba(0, 0, 0, 0.08);
    --of-dd-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.1);
    --of-glass-bg: rgba(255, 255, 255, 0.8);

    --of-topbar-bg: #ca313f;
    --of-topbar-text: #ffffff;
    --of-topbar-link: #ffffff;
    --of-topbar-link-hover: #ff9152;

    /*--of-gray-subtle: #F6F5F8;*/
    --of-gray-subtle: #FCFAFA;
    --of-gray-light: #f7f7f7;
    --of-gray-medium: #f1f1f1;

    --of-primary-card: #dc3545;
    --of-primary-card-dark: #ca313f;

    --of-bg-card: #ffffff;
    --of-bg-card-gray: #f2f2f2;

    --of-code-bg: #f0f0f0;
    --of-code-text: #242d39;

    --of-accent-fuchsia: #d946ef;
    --of-accent-cyan: #06b6d4;
    --of-royal-900: #1e1b4b;
    --of-royal-700: #4338ca;
    --of-royal-500: #6366f1;
    --of-blend-900: #0f172a;
    --of-blend-500: #64748b;

    --of-h-mb-xs:  0.25rem;
    --of-h-mb-s:   0.5rem;
    --of-h-mb-m:   0.75rem;
    --of-h-mb-l:   clamp(1rem, 2vw, 1.5rem);
    --of-h-mb-xl:  clamp(1.5rem, 4vw, 2.5rem);
    --of-h-mb-xxl: clamp(3rem, 8vw, 5.5rem);
    --of-h-mb-3xl: clamp(5rem, 12vw, 8rem);

    --of-fs-display-xl: clamp(2.5rem, 7vw, 4.5rem);
    --of-fs-display-lg: clamp(2.0rem, 5vw, 3.0rem);
    --of-fs-display-md: clamp(1.5rem, 4vw, 2.25rem);
    --of-fs-display-sm: clamp(1.25rem, 3vw, 1.6rem);
    --of-fs-display-xs: clamp(1.1rem, 1.5vw, 1.25rem);
    --of-fs-display-xxs: clamp(0.95rem, 1.1vw, 1.1rem);

    --of-fs-lead: clamp(1.1rem, 1.2vw, 1.15rem);

    --of-section-py-sm: clamp(2rem, 4vw, 3rem);
    --of-section-py-md: clamp(3rem, 6vw, 5rem);
    --of-section-py-lg: clamp(4rem, 10vw, 8rem);
    --of-section-py-xl: clamp(5rem, 10vw, 11rem);
    --of-section-py-xxl: clamp(6rem, 10vw, 14rem);

    --of-mt-sm: clamp(1rem, 0.5rem + 2.5vw, 2rem);
    --of-mt-md: clamp(2rem, 1rem + 5vw, 4rem);
    --of-mt-lg: clamp(3rem, 1.5rem + 7.5vw, 6rem);
    --of-mt-xl: clamp(4rem, 2rem + 10vw, 8rem);

    --of-mb-sm: clamp(1rem, 0.5rem + 2.5vw, 2rem);
    --of-mb-md: clamp(2rem, 1rem + 5vw, 4rem);
    --of-mb-lg: clamp(3rem, 1.5rem + 7.5vw, 6rem);
    --of-mb-xl: clamp(4rem, 2rem + 10vw, 8rem);

    --of-header-mt-sm: 1.5rem;
    --of-header-mt-md: 3rem;
    --of-header-mt-lg: 5rem;
    --of-header-mb-sm: 2.5rem;

    --of-header-mb-md: clamp(2.5rem, 5vw, 4rem);
    --of-header-mb-lg: clamp(4rem, 8vw, 6rem);

    --of-section-title-mb: 1rem;

    --of-width-sm: 600px;
    --of-width-md: 700px;
    --of-width-lg: 850px;
    --of-width-xl: 1000px;
}

[data-bs-theme="dark"] {
    --of-sys-bg-main: #131314;
    --of-sys-bg-secondary: #131314;
    --of-sys-bg-surface: #1E1F20;

    --of-sys-text-main: #D3D3D3;
    --of-sys-text-muted: #e6e6e6;
    --of-sys-text-heading: #ffffff;

    --of-sys-border: #2c2c2c;

    --of-nav-bg: #0e0e0e;
    --of-nav-text: #f1f1f1;
    --of-nav-hover-bg: #2c2c2c;
    --of-nav-border: #2c2c2c;
    --of-dd-bg: #1e1e1e;
    --of-dd-border: #2c2c2c;
    --of-dd-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.3);
    --of-glass-bg: rgba(18, 18, 18, 0.8);

    --of-bg-white: #262629;
    --of-gray-primary: #1b1d22;
    --of-gray-secondary: #1b1d22;

    --of-bg-card: #1e1f21;
    --of-bg-card-gray: #1e1f21;

    --of-code-bg: #1e1e1e;
    --of-code-text: var(--of-primary);
}

/* ======================================================
   BASE STYLES
   ====================================================== */
html {
    scroll-behavior: smooth;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #DC3545FF #333339;
}

::selection {
    background-color: var(--of-primary);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #131314FF;
}

::-webkit-scrollbar-thumb {
    background: var(--of-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-corner {
    background: var(--of-primary);
}

body {
    font-family: var(--of-font-main), sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--of-sys-text-main);
    background-color: var(--of-sys-bg-main);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin: 0;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 700;
    color: var(--of-sys-text-heading);
    margin-bottom: var(--of-h-mb-m);
    line-height: 1.2;
}

a {
    color: var(--of-link);
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: var(--of-link-hover);
}

code {
    background-color: var(--of-code-bg);
    color: var(--of-code-text);
    padding: 0.15em 0.3em;
    border-radius: 0.25rem;
    font-size: 0.92em;
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/*** SECTION HEADER ***/
.of-header-group {
    text-align: center;
    max-width: var(--of-width-md);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--of-header-mb-md);
}

.of-header-group-left {
    text-align: left;
    max-width: var(--of-width-lg);
    margin-left: 0;
    margin-right: auto;
    margin-bottom: var(--of-header-mb-md);
}

.of-title {
    font-size: var(--of-fs-display-md);
    color: var(--of-sys-text-heading);
    margin-top: 0;
    margin-bottom: var(--of-section-title-mb);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.of-title:last-child {
    margin-bottom: 0;
}

.of-lead {
    font-size: var(--of-fs-lead);
    color: var(--of-sys-text-main);
    line-height: 1.6;
    margin-bottom: 0;
}

/*** SECTION DEFAULT PADDING ***/
.of-section-sm { padding: var(--of-section-py-sm) 0 !important; }
.of-section-md { padding: var(--of-section-py-md) 0 !important; }
.of-section-lg { padding: var(--of-section-py-lg) 0 !important; }
.of-section-xl { padding: var(--of-section-py-xl) 0 !important; }
.of-section-xxl { padding: var(--of-section-py-xxl) 0 !important; }

/* ======================================================
   KOMPONENTEN
   ====================================================== */

/*** LANGE TEXTE CLEAN ***/
.onefire-article-container .of-article-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.onefire-article-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    /*margin-bottom: 1.5rem;*/
}

.onefire-article-container h2 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.onefire-article-container h3 {
    font-size: 1rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.onefire-article-container h4,
.onefire-article-container h5 {
    font-size: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.onefire-article-container p,
.onefire-article-container li {
    font-size: 1rem;
    line-height: 1.6;
}

.onefire-article-container p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.onefire-article-container ul,
.onefire-article-container ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.onefire-article-container li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.onefire-article-container li:last-child {
    margin-bottom: 0;
}
.onefire-article-container .of-anchor {
    scroll-margin-top: 100px;
}
.onefire-article-container .onefire-data-table {
    font-size: 0.95rem;
}

.onefire-article-container .onefire-highlight-box {
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 2.5rem 0;
}
.onefire-article-container .onefire-highlight-box h2 {
    margin-top: 0;
}
.onefire-article-container .onefire-highlight-box h4 {
    margin-bottom: 0;
}

/*** CALLOUTS ***/
.onefire-callout .of-callout {
    display: flex;
    flex-direction: column;
    background-color: var(--of-bg-card);
    border: 1px solid #adb5bd;
    border-left: 4px solid transparent;
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
}

.onefire-callout .of-callout-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.onefire-callout .of-callout-title {
    font-size: 1rem;
    color: var(--of-sys-text-heading);
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.onefire-callout .of-callout-title i {
    margin-right: 0.4rem;
    font-size: 1.15rem;
    line-height: 1;
}

.onefire-callout .of-callout-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.onefire-callout .of-callout-info { border-left-color: #0d6efd; }
.onefire-callout .of-callout-success { border-left-color: #198754; }
.onefire-callout .of-callout-gray { border-left-color: #495057; }
.onefire-callout .of-callout-error { border-left-color: var(--of-primary); }
.onefire-callout .of-callout-error .of-callout-title i { color: var(--of-primary); }
.onefire-callout .of-callout-warning { border-left-color: #ffc107; }
.onefire-callout .of-callout-community { border-left-color: #5865f2; }
.onefire-callout .of-callout-tip { border-left-color: #6c757d; }

[data-bs-theme="dark"] .onefire-callout .of-callout {
    background-color: #000000;
}

[data-bs-theme="dark"] .onefire-callout .of-callout-gray { border-left-color: #adb5bd; }
[data-bs-theme="dark"] .onefire-callout .of-callout-tip { border-left-color: #495057; }

/*** FORMULAR DESIGN ***/
.onefire-form-container {
    background-color: var(--of-bg-card);
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: clamp(1.5rem, 3cqw, 3.5rem);
}

.onefire-form-container .of-form-main-title {
    font-size: 1.35rem;
    color: var(--of-sys-text-heading);
    margin-bottom: 2.5rem;
}

.onefire-form-container .of-form-section-title {
    border-left: 3px solid var(--of-primary);
    padding-left: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--of-sys-text-heading);
    margin-bottom: 1.5rem;
}

.onefire-form-container .of-tech-input {
    background-color: var(--of-bg-card);
    border: 1px solid var(--bs-border-color);
    border-radius: 4px;
    color: var(--of-sys-text-main);
    padding: 1rem 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.15s ease-in-out;
}

.onefire-form-container .form-select.of-tech-input {
    padding-top: 1.75rem;
    padding-bottom: 0.625rem;
}

.onefire-form-container .of-tech-input:focus {
    background-color: var(--of-bg-card);
    border: 1px solid var(--of-sys-text-heading);
    color: var(--of-sys-text-heading);
    box-shadow: none;
    outline: none;
}

.onefire-form-container .form-floating > label {
    color: var(--of-sys-text-muted);
    padding: 1rem 0.75rem;
    font-weight: 400;
    font-size: 0.925rem;
}

.onefire-form-container .form-floating > .of-tech-input:focus ~ label,
.onefire-form-container .form-floating > .of-tech-input:not(:placeholder-shown) ~ label {
    color: var(--of-sys-text-muted);
    font-weight: 600;
    transform: scale(0.8) translateY(-0.9rem) translateX(0.15rem);
}

.onefire-form-container .of-helper-text {
    font-size: 0.85rem;
    color: var(--of-sys-text-muted);
    margin-top: 0.5rem;
    line-height: 1.3;
}

.onefire-form-container .btn-of {
    background-color: var(--of-sys-text-heading);
    color: var(--of-bg-card);
    border: 1px solid var(--of-sys-text-heading);
    padding: 0.875rem 3rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: none;
    width: auto;
    min-width: 220px;
    transition: all 0.2s ease-in-out;
}

.onefire-form-container .btn-of:hover {
    background-color: var(--of-primary);
    border-color: var(--of-primary);
    color: #ffffff;
}

.onefire-form-container .invalid-feedback {
    color: var(--of-primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.onefire-form-container .of-form-footer-text {
    font-size: 0.9rem;
    color: var(--of-sys-text-muted);
    line-height: 1.5;
}

.onefire-form-container .of-form-link {
    color: var(--of-primary);
    text-decoration: none;
    font-weight: 600;
}

.onefire-form-container .of-form-link:hover {
    text-decoration: underline;
}

.onefire-form-container .of-legal-statement-box {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--bs-border-color);
    padding: 1.5rem;
    border-radius: 4px;
}

.onefire-form-container .of-legal-checkbox-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--of-sys-text-heading);
    line-height: 1.6;
    cursor: pointer;
    padding-left: 0.5rem;
    user-select: none;
}

.onefire-form-container .form-check-input {
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid var(--bs-border-color);
    background-color: var(--of-bg-card);
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.15em;
}

.onefire-form-container .form-check-input:focus {
    box-shadow: none;
    border-color: var(--of-sys-text-heading);
}

.onefire-form-container .form-check-input:checked {
    background-color: var(--of-sys-text-heading);
    border-color: var(--of-sys-text-heading);
}

[data-bs-theme="dark"] .onefire-form-container .of-legal-statement-box {
    background-color: rgba(255, 255, 255, 0.04);
}

[data-bs-theme="dark"] .onefire-form-container .of-tech-input {
    background-color: #000000;
    border-color: #495057;
}

[data-bs-theme="dark"] .onefire-form-container .btn-of {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

[data-bs-theme="dark"] .onefire-form-container .btn-of:hover {
    background-color: var(--of-primary);
    border-color: var(--of-primary);
    color: #ffffff;
}

[data-bs-theme="dark"] .onefire-form-container .form-check-input:checked {
    background-color: #ffffff;
    border-color: #ffffff;
}

[data-bs-theme="dark"] .onefire-form-container .form-check-input:focus {
    border-color: #ffffff;
}

/*** ACCORDION ***/
.onefire-accordion .of-accordion-item {
    background-color: var(--of-bg-card);
    border: 1px solid var(--of-sys-border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.onefire-accordion .accordion-item:first-of-type,
.onefire-accordion .accordion-item:last-of-type,
.onefire-accordion .accordion-item {
    border-radius: 1rem;
}

.onefire-accordion .of-accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--of-sys-text-heading);
    background-color: transparent;
    padding: 1.25rem 1.5rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.onefire-accordion .of-accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.2s ease-in-out;
}

[data-bs-theme="dark"] .onefire-accordion .of-accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f8f9fa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.onefire-accordion .of-accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc3545'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.onefire-accordion .of-accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.onefire-accordion .of-accordion-button:focus-visible {
    border-color: rgba(var(--of-primary-rgb), 0.5);
    box-shadow: 0 0 0 0.25rem rgba(var(--of-primary-rgb), 0.15);
    z-index: 3;
    outline: none;
}

.onefire-accordion .of-accordion-button:not(.collapsed) {
    color: var(--of-primary);
    background-color: transparent;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
}

[data-bs-theme="dark"] .onefire-accordion .of-accordion-button:not(.collapsed) {
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.05);
}

.onefire-accordion .of-accordion-body {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--of-sys-text-main);
}

/*** MODAL ***/
.onefire-modal .modal-content.of-modal-content {
    background-color: var(--of-bg-card);
    border: none;
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
}

.onefire-modal .of-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--of-sys-text-main);
    z-index: 10;
}

.onefire-modal .of-modal-accent-group {
    border-left: 3px solid var(--of-primary);
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.onefire-modal .of-modal-accent-title {
    font-size: 23px;
    margin-bottom: 0;
    color: var(--of-sys-text-main);
}

.onefire-modal .of-modal-accent-subtitle {
    font-size: 1.1rem;
    color: var(--of-sys-text-main);
    margin-bottom: 0;
}

.onefire-modal .of-modal-body-text {
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--of-sys-text-main);
}

.onefire-modal .of-modal-link-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.onefire-modal .of-modal-link {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    color: var(--of-sys-text-main);
    transition: color 0.2s ease;
}

.onefire-modal .of-modal-link:hover {
    color: var(--of-primary);
}

.onefire-modal .of-modal-link i {
    font-size: 1.2rem;
    color: var(--of-primary);
}

@media (max-width: 576px) {
    .onefire-modal .modal-content.of-modal-content {
        padding: 2rem 1.5rem;
    }
}

/*** SWITCH ***/
.onefire-vserver-tabs .of-tabs-nav-wrapper {
    margin-bottom: 70px;
}

.onefire-vserver-tabs .of-tabs-list {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: inline-flex;
    border: none;
}

.onefire-vserver-tabs .of-tabs-btn {
    color: #000000;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 700;
    border: none;
    background: transparent;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    display: flex;
    align-items: center;
}

.onefire-vserver-tabs .of-tabs-btn i {
    margin-right: 8px;
}

.onefire-vserver-tabs .of-badge-new {
    background-color: var(--of-primary);
    color: #ffffff;
    font-size: 0.65rem;
    margin-left: 8px;
    padding: 4px 8px;
    text-transform: uppercase;
}

.onefire-vserver-tabs .nav-pills .of-tabs-btn.nav-link.active {
    background-color: var(--of-primary);
    color: #ffffff;
}

.onefire-vserver-tabs .nav-pills .of-tabs-btn.nav-link.active .of-badge-new {
    background-color: #ffffff;
    color: var(--of-primary);
}

.onefire-vserver-tabs .of-tabs-btn:hover:not(.active) {
    color: var(--of-primary);
}

@media (max-width: 576px) {
    .onefire-vserver-tabs .of-tabs-nav-wrapper {
        margin-bottom: 40px;
    }

    .onefire-vserver-tabs .of-tabs-list {
        flex-direction: column;
        width: 100%;
    }

    .onefire-vserver-tabs .of-tabs-btn {
        width: 100%;
        justify-content: center;
    }
}

/*** SIDEBAR NAV ***/
.onefire-sticky-group {
    position: sticky;
    top: 100px;
}

.onefire-sticky-group .onefire-sidebar-nav {
    position: static !important;
}

.of-sidebar-graphic {
    max-height: 80px;
    width: auto;
    display: block;
}

.onefire-sidebar-nav {
    position: sticky;
    top: 100px;
    padding: 1.5rem;
    border: 1px solid var(--of-sys-border);
    border-radius: 0.75rem;
}

.onefire-sidebar-nav .of-nav-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--of-sys-text-heading);
    margin-bottom: 1.25rem;
}

.onefire-sidebar-nav .of-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.onefire-sidebar-nav .of-nav-item:not(:last-child) {
    margin-bottom: 1rem;
}

.onefire-sidebar-nav .of-nav-link {
    font-size: 0.95rem;
    color: var(--of-sys-text-main);
    display: flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.onefire-sidebar-nav .of-nav-link:hover {
    color: var(--of-link-hover);
}

/*** Scroll Ancor Sidebar ***/
.onefire-toc-group {
    position: sticky;
    top: 100px;
    align-self: start;
    z-index: 10;
}

.onefire-toc-group .onefire-toc-nav {
    position: static !important;
}

.onefire-toc-nav {
    padding: 1.5rem;
    border: 1px solid var(--of-sys-border);
    border-radius: 0.75rem;
}

.onefire-toc-nav .of-nav-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--of-sys-text-heading);
    margin-bottom: 1.25rem;
}

.onefire-toc-nav .of-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.onefire-toc-nav .of-nav-item:not(:last-child) {
    margin-bottom: 1rem;
}

.onefire-toc-nav .of-nav-link {
    font-size: 0.95rem;
    color: var(--of-sys-text-main);
    display: flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.onefire-toc-nav .of-nav-link:hover,
.onefire-toc-nav .of-nav-link.active {
    color: var(--of-link-hover);
}

.onefire-toc-nav .of-nav-link.active {
    font-weight: 700;
}

.onefire-article-container .of-anchor {
    scroll-margin-top: 120px;
}

/*** TABELLEN ***/
.onefire-data-table {
    margin: 2rem 0;
    border: 1px solid var(--of-sys-border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.onefire-data-table .of-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.onefire-data-table .of-table th {
    background-color: var(--of-sys-bg-secondary);
    color: var(--of-sys-text-heading);
    font-weight: 700;
    text-align: left;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--of-sys-border);
}

.onefire-data-table .of-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--of-sys-border);
    vertical-align: top;
    color: var(--of-sys-text-main);
}

@media (min-width: 768px) {
    .onefire-data-table .of-table th:not(:last-child),
    .onefire-data-table .of-table td:not(:last-child) {
        border-right: 1px solid var(--of-sys-border);
    }
}

.onefire-data-table .of-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 767px) {
    .onefire-data-table .of-table,
    .onefire-data-table .of-table thead,
    .onefire-data-table .of-table tbody,
    .onefire-data-table .of-table th,
    .onefire-data-table .of-table td,
    .onefire-data-table .of-table tr {
        display: block;
    }

    .onefire-data-table .of-table thead {
        display: none;
    }

    .onefire-data-table .of-table tr {
        border-bottom: 1px solid var(--of-sys-border);
        padding: 1rem 0;
    }

    .onefire-data-table .of-table tr:last-child {
        border-bottom: none;
    }

    .onefire-data-table .of-table td {
        border: none;
        padding: 0.5rem 1.25rem;
        position: relative;
    }

    .onefire-data-table .of-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        color: var(--of-primary);
        margin-bottom: 0.25rem;
    }
}

/*** BUTTONS ***/
.btn-link-of {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--of-primary);
    font-weight: 700;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    background: transparent;
    border: none;
}

.btn-link-of i {
    transition: transform 0.2s ease;
    font-size: 1.1em;
    line-height: 1;
}

.btn-link-of:hover {
    color: var(--of-primary-hover);
}

.btn-link-of:hover i {
    transform: translateX(5px);
}

[data-bs-theme="dark"] .btn-link-of {
    color: var(--of-primary);
}

.btn-of,
.btn-outline-of,
.btn-secondary-of,
.btn-dark-of,
.btn-outline-dark-of {
    border-radius: 0.25rem;
}

.btn-of {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--of-primary);
    --bs-btn-border-color: var(--of-primary);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #c81c26; /* Deutlich dunkleres Rot für besseres Feedback */
    --bs-btn-hover-border-color: #b5050f;
}

.btn-outline-of {
    --bs-btn-color: var(--of-primary);
    --bs-btn-border-color: var(--of-primary);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--of-primary);
    --bs-btn-hover-border-color: var(--of-primary);
}

.btn-secondary-of {
    --bs-btn-color: #111315;
    --bs-btn-bg: #ededed;
    --bs-btn-border-color: #ededed;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #1a1d1f; /* Wechselt auf Dunkelgrau statt Rot */
    --bs-btn-hover-border-color: #1a1d1f;
}

.btn-dark-of {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #1a1d1f;
    --bs-btn-border-color: #1a1d1f;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--of-primary);
    --bs-btn-hover-border-color: var(--of-primary);
}

.btn-outline-dark-of {
    --bs-btn-color: var(--of-sys-text-heading);
    --bs-btn-border-color: var(--of-sys-text-heading);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--of-sys-text-heading);
    --bs-btn-hover-border-color: var(--of-sys-text-heading);
}

.of-btn-sm {
    padding: 0.35rem 0.85rem;
    font-size: 0.875rem;
}

.of-btn-md {
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
}

.of-btn-lg {
    padding: 1rem 2.2rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.of-btn-square {
    border-radius: 0 !important;
}

.of-btn-icon-animate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.of-btn-icon-animate i {
    transition: transform 0.2s ease-in-out;
}

.of-btn-icon-animate:hover i {
    transform: translateX(4px);
}

[data-bs-theme="dark"] .btn-secondary-of,
[data-bs-theme="dark"] .btn-dark-of {
    --bs-btn-bg: #2d2e30;
    --bs-btn-border-color: #2d2e30;
    --bs-btn-color: #ffffff;
}

[data-bs-theme="dark"] .btn-outline-dark-of {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: #ffffff;
    --bs-btn-hover-color: #000000;
}

/*** PAYMENT BAR ***/
.onefire-of-payment-bar .onefire-of-payment-row {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.onefire-of-payment-bar .onefire-of-payment-item i {
    font-size: 2rem;
    color: var(--of-sys-text-muted);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: color 0.2s ease-in-out;
}

.onefire-of-payment-bar .onefire-of-payment-item p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--of-sys-text-muted);
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

.onefire-of-payment-bar .onefire-of-payment-item-paypal:hover i {
    color: #0070ba;
}

.onefire-of-payment-bar .onefire-of-payment-item-card:hover i {
    color: #1a1f71;
}

.onefire-of-payment-bar .onefire-of-payment-item-klarna:hover i {
    color: #ffb3c7;
}

.onefire-of-payment-bar .onefire-of-payment-item-stripe:hover i {
    color: #635bff;
}

.onefire-of-payment-bar .onefire-of-payment-item-bank:hover i {
    color: #0056b3;
}

.onefire-of-payment-bar .onefire-of-payment-item-sepa:hover i {
    color: #0091ff;
}

/*** Fußnoten ***/
.onefire-footnotes {
   /* margin-top: 80px;*/
    border-top: 1px solid #e0e0e0;
}

.onefire-footnotes.of-no-border {
    border-top: none;
}

.onefire-footnotes .of-footnotes-container {
    padding-top: 30px;
}

.onefire-footnotes.of-no-border .of-footnotes-container {
    padding-top: 0;
}

.onefire-footnotes .of-footnotes-label {
    font-size: 0.875rem;
    color: var(--of-sys-text-muted);
    margin-bottom: 20px;
    font-weight: 700;
}

.onefire-footnotes .of-footnote-row {
    display: flex;
    margin-bottom: 12px;
}

.onefire-footnotes .of-footnote-row:last-child {
    margin-bottom: 0;
}

.onefire-footnotes .of-footnote-num {
    color: var(--of-sys-text-muted);
    min-width: 25px;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.onefire-footnotes .of-footnote-text {
    color: var(--of-sys-text-main);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .onefire-footnotes {
        margin-top: 50px;
    }
}

/* ======================================================
   6. LAYOUT
   ====================================================== */

/*** TOPBAR ***/
.onefire-topbar {
    background-color: var(--of-topbar-bg);
    color: var(--of-topbar-text);
    font-size: 0.85rem;
    padding: 5px 0;
    height: 30px;
    display: flex;
    align-items: center;
}

.onefire-topbar .of-link {
    color: var(--of-topbar-link);
    transition: color 0.2s ease-in-out;
}

.onefire-topbar .of-link:hover {
    color: var(--of-topbar-link-hover);
}

.onefire-topbar .of-theme-toggle {
    color: inherit !important;
}

/*** MAIN NAVI ***/
.onefire-navbar {
    background-color: var(--of-nav-bg);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--of-nav-border);
    padding: 0.8rem 0;
}

.onefire-navbar.onefire-scrolled {
    background-color: var(--of-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.onefire-navbar.onefire-solid-force {
    background-color: var(--of-nav-bg) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid var(--of-nav-border) !important;
    box-shadow: none !important;
    transition: none !important;
}

.onefire-navbar .onefire-logo {
    height: 36px;
    width: auto;
    display: block;
}

.onefire-navbar .onefire-brand .logo-dark { display: none; }
.onefire-navbar .onefire-brand .logo-light { display: block; }

[data-bs-theme="dark"] .onefire-navbar .onefire-brand .logo-light { display: none; }
[data-bs-theme="dark"] .onefire-navbar .onefire-brand .logo-dark { display: block; }

.onefire-navbar .nav-link {
    color: var(--of-nav-text);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 50rem;
    transition: background-color 0.2s, color 0.2s;
    margin: 0 2px;
}

.onefire-navbar .nav-link:hover,
.onefire-navbar .nav-link.show {
    background-color: var(--of-nav-hover-bg);
    color: var(--of-primary);
}

.onefire-navbar .onefire-login-link {
    color: var(--of-nav-text);
    transition: background-color 0.2s, color 0.2s;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
}

.onefire-navbar .onefire-login-link:hover {
    color: var(--of-primary);
    background-color: var(--of-nav-hover-bg);
}

@media (min-width: 992px) and (max-width: 1250px) {
    .onefire-navbar .nav-link {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        font-size: 0.95rem;
    }
    .onefire-navbar .onefire-brand {
        margin-right: 1rem !important;
    }
}

.onefire-navbar .dropdown-menu {
    background-color: var(--of-dd-bg);
    border: 1px solid var(--of-dd-border);
    box-shadow: var(--of-dd-shadow);
    border-radius: 12px;
    margin-top: 6px !important;
    padding: 8px;
}

.onefire-navbar .onefire-dropdown-wide {
    min-width: 100%;
    width: 100%;
}

@media (min-width: 992px) {
    .onefire-navbar .onefire-dropdown-wide {
        min-width: 450px;
        width: auto;
    }
}

.onefire-navbar .onefire-dropdown-desc {
    max-width: 100%;
    white-space: normal;
}

@media (min-width: 992px) {
    .onefire-navbar .onefire-static-parent { position: static !important; }
    .onefire-navbar .onefire-dropdown-split {
        width: 750px;
        max-width: 96vw;
        position: absolute;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        margin-top: -10px !important;
    }
}

.onefire-navbar .onefire-dropdown-split { padding: 0; overflow: hidden; }
.onefire-navbar .onefire-split-container { display: flex; flex-direction: column; }

@media (min-width: 992px) {
    .onefire-navbar .onefire-split-container { flex-direction: row; }
}

.onefire-navbar .onefire-split-nav { flex: 1; padding: 8px; }

.onefire-navbar .onefire-split-sidebar {
    width: 100%;
    background-color: var(--of-nav-hover-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    border-left: 1px solid var(--of-nav-border);
}

@media (min-width: 992px) {
    .onefire-navbar .onefire-split-sidebar { width: 320px; flex-shrink: 0; }
}

.onefire-navbar .onefire-sidebar-icon {
    font-size: 4rem;
    color: var(--of-primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.onefire-sidebar-img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 1.25rem auto;
    object-fit: contain;
}

[data-bs-theme="dark"] .onefire-sidebar-img { filter: brightness(0) invert(0.9); }
.onefire-sidebar-img:hover { transform: scale(1.05); }

.onefire-navbar .dropdown-item {
    color: var(--of-nav-text);
    border-radius: 8px;
    margin-bottom: 4px;
    padding: 10px 15px;
}

.onefire-navbar .dropdown-item:hover {
    background-color: var(--of-nav-hover-bg);
    color: var(--of-nav-text);
}

.onefire-navbar .onefire-dropdown-desc { max-width: 250px; }

.onefire-navbar .onefire-icon {
    color: var(--of-secondary);
    transition: color 0.2s;
}

.onefire-navbar .dropdown-item:hover .onefire-icon { color: var(--of-primary); }

.onefire-navbar .dropdown-divider { border-top-color: var(--of-dd-border); }

.onefire-navbar .dropdown-toggle::after { display: none; }

.onefire-navbar .onefire-chevron {
    font-size: 0.7em;
    transition: transform 0.2s;
    margin-top: 2px;
}

.onefire-navbar .nav-link.show .onefire-chevron { transform: rotate(180deg); }

.onefire-navbar .onefire-offcanvas {
    background-color: var(--of-nav-bg);
    color: var(--of-nav-text);
}

.onefire-navbar .btn-close { filter: var(--bs-btn-close-filter); }

.onefire-navbar.of-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: transparent !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
}

.onefire-navbar.of-nav-overlay.onefire-scrolled {
    position: fixed;
    background-color: var(--of-glass-bg) !important;
    border-bottom: 1px solid var(--of-nav-border) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

/* --- FOOTER --- */
.onefire-footer {
    background-color: #131010;
    color: #f1f1f1;
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.onefire-footer .onefire-logo {
    height: 40px;
    width: auto;
    display: block;
}

.onefire-footer .of-footer-desc {
    color: #d1d1d1;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 380px;
}

.onefire-footer .of-footer-title {
    color: #ffffff;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.02em;
}

.onefire-footer .of-footer-social-title {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

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

.onefire-footer .of-footer-list li {
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.onefire-footer .of-footer-link {
    color: #d1d1d1;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.onefire-footer .of-footer-link:hover {
    color: var(--of-primary);
    transform: translateX(4px);
}

.onefire-footer .of-footer-social {
    display: flex;
    gap: 0.75rem;
}

.onefire-footer .of-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.25rem;
    background-color: #1e1b1b;
    color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.onefire-footer .of-social-icon:hover {
    background-color: var(--of-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.of-footer-divider {
    height: 1px;
    background-color: #2a2525;
    margin: clamp(2rem, 5vw, 3rem) 0;
}

.onefire-footer .of-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: #d1d1d1;
}

.onefire-footer .of-footer-legal a {
    color: #d1d1d1;
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.2s;
}

.onefire-footer .of-footer-legal a:hover {
    color: var(--of-primary);
}

.onefire-footer .of-back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #1e1b1b;
    color: #ffffff;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    margin-left: auto;
}

.onefire-footer .of-back-to-top:hover {
    background-color: var(--of-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 1199px) {
    .onefire-footer .of-footer-desc {
        max-width: 600px;
    }
}

@media (max-width: 991px) {
    .onefire-footer .of-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .onefire-footer .of-footer-legal a {
        margin: 0 0.75rem;
    }
    .onefire-footer .of-back-to-top {
        margin: 1rem auto 0;
    }
}

/* ======================================================
   7. HELPER / UTILITIES
   ====================================================== */

/* --- ABSTÄNDE MT/MB --- */
.of-mt-sm { margin-top: var(--of-mt-sm); }
.of-mt-md { margin-top: var(--of-mt-md); }
.of-mt-lg { margin-top: var(--of-mt-lg); }
.of-mt-xl { margin-top: var(--of-mt-xl); }

.of-mb-sm { margin-bottom: var(--of-mb-sm); }
.of-mb-md { margin-bottom: var(--of-mb-md); }
.of-mb-lg { margin-bottom: var(--of-mb-lg); }
.of-mb-xl { margin-bottom: var(--of-mb-xl); }

/* --- LAYOUT UTILITIES --- */
.of-mw-sm { max-width: var(--of-width-sm) !important; }
.of-mw-md { max-width: var(--of-width-md) !important; }
.of-mw-lg { max-width: var(--of-width-lg) !important; }
.of-mw-xl { max-width: var(--of-width-xl) !important; }
.of-mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* --- TYPOGRAPHY UTILITIES --- */
.of-display-xl { font-size: var(--of-fs-display-xl) !important; line-height: 1.1; letter-spacing: -0.03em; }
.of-display-lg { font-size: var(--of-fs-display-lg) !important; line-height: 1.2; letter-spacing: -0.02em; }
.of-display-md { font-size: var(--of-fs-display-md) !important; line-height: 1.3; letter-spacing: -0.01em; }
.of-display-sm { font-size: var(--of-fs-display-sm) !important; line-height: 1.4; letter-spacing: -0.01em; }
.of-display-xs { font-size: var(--of-fs-display-xs) !important; line-height: 1.4; }
.of-display-xxs { font-size: var(--of-fs-display-xxs) !important;line-height: 1.3; letter-spacing: 0.01em;}

.of-text-lead { font-size: var(--of-fs-lead) !important; line-height: 1.6; }
.of-text-body { font-size: 1rem !important; line-height: 1.6; }

.of-text-xs { font-size: 0.875rem !important; line-height: 1.4; }
.of-text-sm { font-size: 0.975rem !important; line-height: 1.5; }

.of-text-balance { text-wrap: balance; }
.of-text-pretty { text-wrap: pretty; }

/* --- HEADING SPACING UTILITIES --- */
.of-mb-none { margin-bottom: 0 !important; }
.of-mb-xs   { margin-bottom: var(--of-h-mb-xs) !important; }
.of-mb-s    { margin-bottom: var(--of-h-mb-s) !important; }
.of-mb-m    { margin-bottom: var(--of-h-mb-m) !important; }
.of-mb-l    { margin-bottom: var(--of-h-mb-l) !important; }
.of-mb-xl   { margin-bottom: var(--of-h-mb-xl) !important; }
.of-mb-xxl  { margin-bottom: var(--of-h-mb-xxl) !important; }
.of-mb-3xl  { margin-bottom: var(--of-h-mb-3xl) !important; }

/* --- BACKGROUNDS --- */
.of-bg-white {background-color: var(--of-bg-white) !important;}

.of-bg-gray-primary { background-color: var(--of-gray-primary) !important; }
.of-bg-gray-secondary { background-color: var(--of-gray-secondary) !important; }

.of-bg-gray-subtle { background-color: var(--of-gray-subtle) !important; }
.of-bg-gray-light { background-color: var(--of-gray-light) !important; }
.of-bg-gray-medium { background-color: var(--of-gray-medium) !important; }

.of-bg-primary {
    background-color: var(--of-primary) !important;
    --of-sys-text-main: #ffffff;
    --of-sys-text-heading: #ffffff;
}
.of-bg-secondary {
    background-color: var(--of-secondary) !important;
    --of-sys-text-main: #ffffff;
    --of-sys-text-heading: #ffffff;
}

.of-bg-dark {
    background-color: #020202 !important;
    --of-sys-text-main: #f1f5f9;
    --of-sys-text-heading: #ffffff;
}

/* --- BACKGROUND GRADIENTS (Smart Context) --- */
.of-bg-gradient-primary {
    background: linear-gradient(135deg, var(--of-primary) 0%, #8b1e28 100%) !important;
    --of-sys-text-main: #ffffff; --of-sys-text-heading: #ffffff;
}
.of-bg-gradient-fire {
    background: linear-gradient(135deg, var(--of-primary) 0%, #ffc107 100%) !important;
    --of-sys-text-main: #ffffff; --of-sys-text-heading: #ffffff;
}
.of-bg-gradient-mystic {
    background: linear-gradient(135deg, var(--of-royal-900) 10%, var(--of-accent-fuchsia) 90%) !important;
    --of-sys-text-main: #ffffff; --of-sys-text-heading: #ffffff;
}
.of-bg-gradient-tech {
    background: linear-gradient(135deg, var(--of-royal-900) 0%, var(--of-accent-cyan) 100%) !important;
    --of-sys-text-main: #ffffff; --of-sys-text-heading: #ffffff;
}
.of-bg-gradient-corp {
    background: linear-gradient(135deg, var(--of-blend-900) 0%, var(--of-blend-500) 100%) !important;
    --of-sys-text-main: #ffffff; --of-sys-text-heading: #ffffff;
}
.of-bg-gradient-cyber {
    background: linear-gradient(135deg, var(--of-royal-700) 0%, var(--of-accent-fuchsia) 100%) !important;
    --of-sys-text-main: #ffffff; --of-sys-text-heading: #ffffff;
}
.of-bg-gradient-galaxy {
    background: linear-gradient(120deg, var(--of-blend-900) 0%, var(--of-royal-500) 50%, var(--of-accent-fuchsia) 100%) !important;
    --of-sys-text-main: #ffffff; --of-sys-text-heading: #ffffff;
}

/* --- EXPLICIT TEXT OVERRIDES --- */
.of-text-white { color: #ffffff !important; --of-sys-text-main: #ffffff; --of-sys-text-heading: #ffffff; }
.of-text-dark { color: #000000 !important; --of-sys-text-main: #212529; --of-sys-text-heading: #000000; }
.of-text-primary { color: var(--of-primary) !important; }
.of-text-muted { color: var(--of-sys-text-muted) !important; }

/* --- TEXT GRADIENTS --- */
.of-text-gradient {
    --of-grad-start: var(--of-primary);
    --of-grad-end: #ff8a75;
    background: linear-gradient(135deg, var(--of-grad-start) 0%, var(--of-grad-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.of-gradient-blue { --of-grad-start: #0d6efd; --of-grad-end: #0dcaf0; }
.of-gradient-green { --of-grad-start: #198754; --of-grad-end: #20c997; }
.of-gradient-purple { --of-grad-start: #6610f2; --of-grad-end: #d63384; }
.of-gradient-fire { --of-grad-start: #dc3545; --of-grad-end: #ffc107; }
.of-gradient-gold { --of-grad-start: #d97706; --of-grad-end: #fbbf24; }
.of-gradient-crimson { --of-grad-start: #991b1b; --of-grad-end: #ef4444; }
.of-gradient-obsidian { --of-grad-start: #000000; --of-grad-end: #4b5563; }
.of-gradient-titanium { --of-grad-start: #334155; --of-grad-end: #64748b; }
.of-gradient-steel { --of-grad-start: #475569; --of-grad-end: #94a3b8; }
.of-gradient-horizon { --of-grad-start: #0284c7; --of-grad-end: #7dd3fc; }
.of-gradient-cosmos { --of-grad-start: #7c3aed; --of-grad-end: #2563eb; }
.of-gradient-cyber { --of-grad-start: #0891b2; --of-grad-end: #c026d3; }
.of-gradient-midnight { --of-grad-start: #1e3a8a; --of-grad-end: #581c87; }

/* --- TEXT HELPERS --- */
.of-font-500 { font-weight: 500 !important; }
.of-font-600 { font-weight: 600 !important; }
.of-font-700 { font-weight: 700 !important; }
.of-font-800 { font-weight: 800 !important; }
.of-ls-tight { letter-spacing: -0.02em !important; }

[data-bs-theme="dark"] .of-text-gradient:not([class*="of-gradient-"]) {
    background: none;
    -webkit-text-fill-color: var(--of-primary);
    color: var(--of-primary);
}

.of-gradient-fix {
    display: inline-block;
    padding-bottom: 0.2em;
    margin-bottom: -0.2em;
    line-height: 1.1;
}

[data-bs-theme="dark"] .of-gradient-gold { --of-grad-start: #FFD700; --of-grad-end: #FDB931; }
[data-bs-theme="dark"] .of-gradient-crimson { --of-grad-start: #ef4444; --of-grad-end: #fca5a5; }
[data-bs-theme="dark"] .of-gradient-obsidian { --of-grad-start: #ffffff; --of-grad-end: #94a3b8; }
[data-bs-theme="dark"] .of-gradient-titanium { --of-grad-start: #f1f5f9; --of-grad-end: #cbd5e1; }
[data-bs-theme="dark"] .of-gradient-steel { --of-grad-start: #94a3b8; --of-grad-end: #e2e880; }
[data-bs-theme="dark"] .of-gradient-horizon { --of-grad-start: #38bdf8; --of-grad-end: #bae6fd; }
[data-bs-theme="dark"] .of-gradient-cosmos { --of-grad-start: #a78bfa; --of-grad-end: #60a5fa; }
[data-bs-theme="dark"] .of-gradient-cyber { --of-grad-start: #22d3ee; --of-grad-end: #e879f9; }
[data-bs-theme="dark"] .of-gradient-midnight { --of-grad-start: #6366f1; --of-grad-end: #a855f7; }

.of-gfx-wrapper {
    display: grid;
    place-items: center;
    width: 100%;
}

.of-gfx-shape {
    grid-area: 1 / 1;
    z-index: 1;
    width: var(--of-shape-size, 85%);
}

.of-gfx-wrapper img {
    grid-area: 1 / 1;
    z-index: 2;
    position: relative;
}

.of-shape-sm {
    --of-shape-size: 60%;
}

.of-shape-md {
    --of-shape-size: 85%;
}

.of-shape-lg {
    --of-shape-size: 110%;
}

.of-shape-blob {
    aspect-ratio: 1 / 1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.of-shape-blob-soft {
    aspect-ratio: 1 / 1;
    border-radius: 50% 45% 55% 45% / 45% 55% 45% 55%;
}

.of-shape-blob-fluid {
    aspect-ratio: 1 / 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.of-shape-blob-wide {
    aspect-ratio: 2 / 1;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.of-shape-square {
    aspect-ratio: 1 / 1;
    border-radius: 2rem;
    transform: rotate(-6deg);
}

.of-shape-organic {
    aspect-ratio: 4 / 3;
    border-radius: 30% 12% 40% 15%;
}

/* ======================================================
   8. HEROS
   ====================================================== */

/*** HERO Universal ***/
.onefire-hero-universal {
    position: relative;
    z-index: 1;
}

.onefire-hero-universal .of-hero-shape-divider {
    display: none;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

/* Modifikator: Welle */
.onefire-hero-universal.of-modifier-wave {
    padding-bottom: clamp(6rem, 12vw, 12rem) !important;
}

.onefire-hero-universal.of-modifier-wave .of-hero-shape-divider {
    display: block;
}

/* Modifikator: Diagonal */
.onefire-hero-universal.of-modifier-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    padding-bottom: clamp(6rem, 12vw, 12rem) !important;
}

/* Modifikator: Bogen (Arch) */
.onefire-hero-universal.of-modifier-arch {
    clip-path: ellipse(150% 100% at 50% 0%);
    padding-bottom: clamp(6rem, 12vw, 12rem) !important;
}

.onefire-hero-universal .of-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--of-sys-text-heading);
    margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.onefire-hero-universal .of-hero-lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--of-sys-text-main);
    margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
    line-height: 1.6;
    max-width: 650px;
}

.onefire-hero-universal .of-hero-list {
    margin-bottom: clamp(2rem, 3.5vw, 3rem);
    padding: 0;
    list-style: none;
}

.onefire-hero-universal .of-hero-list li {
    display: flex;
    align-items: flex-start;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--of-sys-text-main);
    margin-bottom: 0.85rem;
}

.onefire-hero-universal .of-hero-list i {
    color: var(--of-primary);
    font-size: 1.25rem;
    margin-right: 0.85rem;
    line-height: 1.4;
}

.onefire-hero-universal .of-illustration-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.onefire-hero-universal .of-illustration-wrapper.of-modifier-img-md img {
    max-width: 80%;
}

.onefire-hero-universal .of-illustration-wrapper.of-modifier-img-sm img {
    max-width: 60%;
}

.onefire-hero-universal .of-illustration-wrapper.of-modifier-img-xs img {
    max-width: 40%;
}

.onefire-hero-universal .of-hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 2px);
    height: clamp(50px, 10vw, 120px);
}

.onefire-hero-universal .of-shape-fill {
    fill: var(--of-sys-bg-main);
}

@media (max-width: 991px) {
    .onefire-hero-universal {
        text-align: center;
    }

    .onefire-hero-universal .of-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .onefire-hero-universal .of-hero-list {
        display: inline-block;
        text-align: left;
    }

    .onefire-hero-universal .of-hero-actions {
        margin-bottom: 3.5rem;
    }

    .onefire-hero-universal .of-illustration-wrapper img {
        max-width: 85%;
    }
}

.onefire-hero-universal .of-illustration-wrapper.of-modifier-img-md img,
.onefire-hero-universal .of-illustration-wrapper.of-modifier-img-sm img,
.onefire-hero-universal .of-illustration-wrapper.of-modifier-img-xs img {
    max-width: 70%;
}

@media (max-width: 767px) {
    .onefire-hero-universal.of-modifier-arch {
        clip-path: ellipse(300% 100% at 50% 0%);
    }
}

@media (max-width: 575px) {
    .onefire-hero-universal {
        padding-top: 2rem;
    }

    .onefire-hero-universal .of-hero-title {
        font-size: 1.85rem;
    }
}

/*** Domain HERO ***/
.onefire-domain-hero .of-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--of-sys-text-heading);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.onefire-domain-hero .of-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--of-sys-text-main);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.onefire-domain-hero .of-search-capsule {
    background-color: var(--of-bg-card);
    border-radius: 0.75rem;
    padding: 0.5rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
    border: none;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.onefire-domain-hero .of-search-capsule:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px -12px rgba(0, 0, 0, 0.15);
}

.onefire-domain-hero .of-search-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.onefire-domain-hero .of-search-icon {
    font-size: 1.25rem;
    color: var(--of-sys-text-muted);
    padding-left: 1.25rem;
    padding-right: 0.5rem;
}

.onefire-domain-hero .of-domain-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 1rem 0.5rem;
    font-size: 1.1rem;
    color: var(--of-sys-text-heading);
    min-width: 0;
}

.onefire-domain-hero .of-domain-input:focus {
    outline: none;
    box-shadow: none;
}

.onefire-domain-hero .of-search-btn {
    border-radius: 0.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    white-space: nowrap;
    font-weight: 700;
}

.onefire-domain-hero .of-trust-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.onefire-domain-hero .of-trust-item {
    display: flex;
    align-items: center;
    color: var(--of-sys-text-main);
    font-size: 1rem;
}

.onefire-domain-hero .of-trust-icon {
    color: var(--of-primary);
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

@media (max-width: 767px) {
    .onefire-domain-hero .of-search-form {
        flex-direction: column;
    }

    .onefire-domain-hero .of-search-icon {
        display: none;
    }

    .onefire-domain-hero .of-domain-input {
        width: 100%;
        padding: 1rem;
        text-align: center;
    }

    .onefire-domain-hero .of-search-btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .onefire-domain-hero .of-trust-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ======================================================
   VERSCHIEDENE CARDS
   ====================================================== */

/*** CARD UTILITIES ***/
.of-card-border {
    border: 1px solid #e4e4e4;
}

[data-bs-theme="dark"] .of-card-border {
    border-color: #2d2e30;
}

.of-card-shadow {
    box-shadow: 0 4px 12px #f1f3f5;
}

.of-card-square {
    border-radius: 0 !important;
}

.of-card-rounded-sm {
    border-radius: 0.15rem !important;
}

.of-card-rounded-md {
    border-radius: 0.25rem !important;
}

.of-card-rounded-lg {
    border-radius: 0.5rem !important;
}

.of-card-sold-out {
    opacity: 0.6 !important;
    filter: grayscale(1);
    pointer-events: none;
    user-select: none;
}

[data-bs-theme="dark"] .of-card-shadow {
    box-shadow: 0 4px 12px #111213;
}

/*** BEWERTUNGEN ***/
.onefire-review-card {
    background-color: var(--of-bg-card);
    border: 1px solid var(--of-sys-border);
    border-radius: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
}

.onefire-review-card .of-reviewer-name {
    font-size: 1.25rem;
    color: var(--of-sys-text-heading);
}

.onefire-review-card .of-verified-badge {
    color: #00B67A;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.onefire-review-card .of-verified-badge:hover {
    opacity: 0.7;
}

[data-bs-theme="dark"] .onefire-review-card .of-verified-badge {
    color: #2ec17c;
}

.onefire-review-card .of-source-link {
    color: var(--of-sys-text-muted);
    transition: color 0.2s ease;
}

.onefire-review-card .of-source-link:hover {
    color: var(--of-primary);
}

.onefire-review-card .of-review-divider {
    margin: 1.25rem 0;
    border-color: var(--of-sys-border);
    opacity: 0.6;
}

.onefire-review-card .of-review-text {
    color: var(--of-sys-text-main);
    font-size: 1rem;
    line-height: 1.6;
}

.onefire-reviews-section .of-meta-link {
    color: var(--of-sys-text-muted);
    transition: color 0.2s ease;
}

.onefire-reviews-section .of-meta-link:hover {
    color: var(--of-sys-text-heading);
}

.onefire-reviews-section .of-action-link {
    color: var(--of-sys-text-heading);
    border-bottom: 1px solid var(--of-sys-text-heading);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.onefire-reviews-section .of-action-link:hover {
    color: var(--of-primary);
    border-color: var(--of-primary);
}

/*********************
PRICING CARDS
*********************/
.onefire-grid-4-card {
    background-color: var(--of-bg-card);
    border: 1px solid var(--of-sys-border);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 2.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

[data-bs-theme="dark"] .onefire-grid-4-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.onefire-grid-4-card .of-plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--of-sys-text-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.onefire-grid-4-card .of-promo-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.onefire-grid-4-card .of-price-old {
    font-size: 0.9375rem;
    color: var(--of-sys-text-muted);
    text-decoration: line-through;
}

.onefire-grid-4-card .of-price-badge {
    background-color: var(--of-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.1rem 0.5rem;
    border-radius: 50rem;
}

.onefire-grid-4-card .of-price-amount {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--of-sys-text-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.onefire-grid-4-card .of-billing-info {
    font-size: 0.9375rem;
    color: var(--of-sys-text-muted);
    margin-bottom: 0.25rem;
}

.onefire-grid-4-card .of-contract-details {
    font-size: 0.75rem;
    color: var(--of-sys-text-muted);
}

.onefire-grid-4-card .of-card-divider {
    height: 0;
    border-top: 1px solid var(--of-sys-border);
    margin-top: 24px;
    margin-bottom: 24px;
    display: block;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    transform: translateZ(0);
}

.onefire-grid-4-card .of-hardware-grid {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    width: 100%;
}

.onefire-grid-4-card .of-hw-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f1f3f5;
    border: 1px solid var(--of-sys-border);
    border-radius: 0.4rem;
    padding: 0.75rem 0.25rem;
}

[data-bs-theme="dark"] .onefire-grid-4-card .of-hw-card {
    background-color: #2a2b2d;
}

.onefire-grid-4-card .of-hw-icon {
    font-size: 1.1rem;
    color: var(--of-sys-text-heading);
    margin-bottom: 0.25rem;
}

.onefire-grid-4-card .of-hw-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--of-sys-text-heading);
    white-space: nowrap;
}

.onefire-grid-4-card .of-list-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--of-sys-text-heading);
    margin-bottom: 1rem;
}

.onefire-grid-4-card .of-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.onefire-grid-4-card .of-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--of-sys-text-main);
    font-size: 0.875rem;
    gap: 0.5rem;
}

.onefire-grid-4-card .of-feature-icon {
    color: var(--of-primary);
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.onefire-grid-4-card .of-addon-box {
    background-color: #f8f9fa;
    border: 1px dashed var(--of-sys-border);
    border-radius: 0.4rem;
    padding: 1rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

[data-bs-theme="dark"] .onefire-grid-4-card .of-addon-box {
    background-color: #222325;
    border-color: #3a3b3d;
}

.onefire-grid-4-card .of-addon-title {
    font-weight: 700;
    color: var(--of-sys-text-heading);
    display: block;
    margin-bottom: 0.25rem;
}

.onefire-grid-4-card .of-addon-text {
    color: var(--of-sys-text-main);
}

/*** 3er Card mit Promo ***/
.onefire-grid-3-card {
    background-color: var(--of-bg-card);
    border: 1px solid var(--of-sys-border);
    border-radius: 0.75rem;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

[data-bs-theme="dark"] .onefire-grid-3-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.onefire-grid-3-card.of-card-flush-bottom {
    padding-bottom: 0;
}

.onefire-grid-3-card.of-promo {
    background-color: var(--of-primary);
    border: none;
}

.onefire-grid-3-card.of-promo .of-promo-shape {
    background-color: var(--of-primary-card-dark);
}

.onefire-grid-3-card.of-promo-ggssl {
    background-color: #fff3e9;
    border: 1px solid var(--of-sys-border);
    color: #333333;
}

.onefire-grid-3-card.of-promo-ggssl .of-promo-shape {
    display: none;
}

.onefire-grid-3-card.of-promo-ggssl .of-plan-name,
.onefire-grid-3-card.of-promo-ggssl .of-description {
    color: #333333 !important;
}

.onefire-grid-3-card.of-promo-ggssl .list-unstyled i {
    color: var(--of-primary);
}

.onefire-grid-3-card .of-badge-corner {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #2a2b2d;
    color: #ffffff;
    padding: 7px 14px 7px 26px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 5;
    text-transform: uppercase;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.onefire-grid-3-card .of-promo-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.onefire-grid-3-card .of-card-content,
.onefire-grid-3-card .of-promo-footer {
    position: relative;
    z-index: 3;
    width: 100%;
    min-width: 0;
}

.onefire-grid-3-card .of-promo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.onefire-grid-3-card .of-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
}

.onefire-grid-3-card .of-plan-name {
    font-size: clamp(1.125rem, 2.5vw, 1.625rem);
    color: var(--of-sys-text-heading);
    margin-bottom: 4px;
}

.onefire-grid-3-card .of-plan-subtitle {
    font-size: 1rem;
    color: var(--of-sys-text-muted);
    display: block;
    margin-bottom: 20px;
}

.onefire-grid-3-card.of-promo .of-plan-name {
    font-size: clamp(1.125rem, 5vw, 2.125rem);
    color: #ffffff;
    margin-bottom: 24px;
}

.onefire-grid-3-card .of-price-old-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.onefire-grid-3-card .of-price-old {
    font-size: 0.9375rem;
    color: var(--of-sys-text-muted);
    text-decoration: line-through;
}

.onefire-grid-3-card .of-badge-discount {
    background-color: var(--of-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 0.25rem;
}

.onefire-grid-3-card .of-price-amount {
    font-size: clamp(1.75rem, 2.2vw, 2.25rem);
    font-weight: 700;
    color: var(--of-sys-text-heading);
    line-height: 1;
}

.onefire-grid-3-card .of-billing-info {
    font-size: 0.875rem;
    color: var(--of-sys-text-muted);
    margin-top: 8px;
}

.onefire-grid-3-card .of-status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    width: 100%;
}

.onefire-grid-3-card .of-status-badge.of-is-purple {
    background-color: #e8e8f3;
    color: #5c5ca7;
}

.onefire-grid-3-card .of-description {
    font-size: 0.9375rem;
    color: var(--of-sys-text-main);
    line-height: 1.6;
    margin: 24px 0;
}

.onefire-grid-3-card.of-promo .of-description {
    font-size: 1.0625rem;
    color: #ffffff;
    margin: 28px 0;
}

.onefire-grid-3-card .of-card-divider {
    height: 0;
    border-top: 1px solid var(--of-sys-border);
    margin-top: 24px;
    margin-bottom: 24px;
    display: block;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    transform: translateZ(0);
}

.onefire-grid-3-card .of-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.onefire-grid-3-card .of-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 0.9375rem;
    color: var(--of-sys-text-main);
}

.onefire-grid-3-card .of-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.onefire-grid-3-card .of-icon-circle {
    background-color: #f3f3f3;
}

[data-bs-theme="dark"] .onefire-grid-3-card .of-icon-circle { background-color: #2a2b2d; }

.onefire-grid-3-card .of-icon-circle i {
    color: var(--of-primary);
    font-size: 1.125rem;
}

.onefire-grid-3-card .btn i {
    font-size: 0.875rem;
    line-height: 1;
}

.onefire-promo-wrapper {
    background-color: var(--of-primary);
    border-radius: 0.85rem;
    padding: 36px 1px 1px 1px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.onefire-promo-wrapper .of-promo-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onefire-promo-wrapper .of-promo-header span {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.onefire-promo-wrapper .onefire-grid-3-card {
    border: none;
    flex-grow: 1;
    border-radius: 0.75rem;
}

@media (min-width: 1200px) {
    .of-promo-alignment-row {
        padding-top: 36px;
    }

    .onefire-promo-wrapper {
        margin-top: -36px;
        height: calc(100% + 36px);
    }
}

/*** Weitere Preis Card ***/
.onefire-domain-section .of-card-link {
    display: flex;
    flex-direction: column;
    color: inherit;
}

.onefire-domain-section .onefire-domain-card {
    --of-domain-subtext-size: 0.96875rem;
    background-color: var(--of-bg-card);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease-in-out;
}

.onefire-domain-section .of-card-link:hover .onefire-domain-card {
    border-color: var(--of-primary);
}

.onefire-domain-section .of-tld {
    font-size: 1.25rem;
    color: var(--bs-emphasis-color);
}

.onefire-domain-section .of-region {
    font-size: var(--of-domain-subtext-size);
    color: var(--bs-secondary-color);
}

.onefire-domain-section .of-region i {
    color: var(--of-primary);
}

.onefire-domain-section .of-price-block {
    margin-top: auto;
}

.onefire-domain-section .of-old-price {
    font-size: 1rem;
    color: var(--bs-secondary-color);
}

.onefire-domain-section .of-main-price {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bs-emphasis-color);
}

.onefire-domain-section .of-subtext {
    font-size: var(--of-domain-subtext-size);
    color: var(--bs-secondary-color);
    margin-top: 2px;
}

.onefire-domain-section .of-badge {
    background-color: var(--of-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 10;
}

/*** PROMO CARD ***/
.onefire-promo-container {
    container-type: inline-size;
    width: 100%;
}

.onefire-promo-card {
    position: relative;
    background-color: var(--of-primary-card);
    border-radius: 0.5rem;
    padding: clamp(1.5rem, 6cqw, 4rem);
    color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.onefire-promo-card .of-promo-content {
    position: relative;
    z-index: 5;
    width: 100%;
}

.onefire-promo-card .of-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.85rem, 3cqw, 1.1rem);
    font-weight: 600;
    margin-bottom: clamp(1rem, 4cqw, 2rem);
}

.onefire-promo-card .of-promo-title {
    font-size: clamp(1.5rem, 8cqw, 2.75rem);
    font-weight: 700;
    margin-bottom: clamp(0.75rem, 3cqw, 1.25rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.onefire-promo-card .of-promo-lead {
    font-size: clamp(0.95rem, 3.5cqw, 1.25rem);
    margin-bottom: clamp(1.5rem, 6cqw, 2.5rem);
    opacity: 0.95;
    max-width: clamp(250px, 90%, 650px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
}

.onefire-promo-card .of-promo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 clamp(2rem, 8cqw, 3.5rem) 0;
}

.onefire-promo-card .of-promo-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 3cqw, 1.15rem);
    font-weight: 400;
}

.onefire-promo-card .of-promo-list i {
    font-size: 1.2rem;
    line-height: 1.4;
}

.onefire-promo-card .of-promo-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.onefire-promo-card .of-promo-price-block {
    display: flex;
    flex-direction: column;
}

.onefire-promo-card .of-price-old {
    font-size: clamp(0.85rem, 3cqw, 1.2rem);
    text-decoration: line-through;
    opacity: 0.8;
}

.onefire-promo-card .of-price-current {
    font-size: clamp(1.5rem, 7cqw, 2.75rem);
    font-weight: 700;
    line-height: 1;
}

.onefire-promo-card .of-price-info {
    font-size: 0.8rem;
    margin-top: 0.4rem;
    opacity: 0.9;
}

.onefire-promo-card .of-promo-btn {
    background-color: #ffffff;
    color: var(--of-primary-card-dark);
    border: none;
    font-weight: 700;
    padding: clamp(0.75rem, 3cqw, 1.15rem) clamp(1.25rem, 5cqw, 2.25rem);
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(0.95rem, 3cqw, 1.15rem);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.onefire-promo-card .of-promo-btn:hover {
    transform: translateX(5px);
    background-color: #ffffff;
    color: var(--of-primary-hover);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.onefire-promo-card .of-promo-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background-color: var(--of-primary-card-dark);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 2;
}

@container (max-width: 500px) {
    .onefire-promo-card .of-promo-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .onefire-promo-card .of-promo-btn {
        width: 100%;
        justify-content: center;
    }

    .onefire-promo-card .of-promo-shape {
        width: 100%;
        height: 120px;
        top: auto;
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    }
}

[data-bs-theme="dark"] .onefire-promo-card .of-promo-btn {
    background-color: #ffffff;
    color: var(--of-primary-card-dark);
}

/*** PROMO SPLIT CARD ***/
.onefire-split-card {
    container-type: inline-size;
    width: 100%;
    position: relative;
    background-color: var(--of-primary-card);
    border-radius: 0.5rem;
    padding: clamp(2.5rem, 8cqw, 4.5rem) clamp(1.5rem, 5cqw, 4rem);
    color: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.onefire-split-card .of-split-content {
    position: relative;
    z-index: 5;
    width: 100%;
    text-align: left;
}

.onefire-split-card .of-split-title {
    font-size: clamp(1.5rem, 7cqw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    max-width: 900px;
    margin-bottom: clamp(1.5rem, 4cqw, 2.25rem);
}

.onefire-split-card .of-split-lead {
    font-size: clamp(1.05rem, 3cqw, 1.25rem);
    line-height: 1.5;
    max-width: 780px;
    color: #ffffff;
    margin-bottom: clamp(1.5rem, 4cqw, 2.25rem);
}

.onefire-split-card .of-split-buttons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: clamp(2.5rem, 7cqw, 4rem);
}

.onefire-split-card .of-promo-btn {
    background-color: #ffffff;
    color: var(--of-primary-card-dark);
    border: 2px solid #ffffff;
    padding: clamp(0.75rem, 3cqw, 1.1rem) clamp(1.5rem, 5cqw, 2.25rem);
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.95rem, 3cqw, 1.15rem);
    transition: all 0.2s ease;
    text-decoration: none;
    min-width: 210px;
}

.onefire-split-card .of-btn-outline {
    background-color: transparent;
    color: #ffffff;
}

.onefire-split-card .of-promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.onefire-split-card .of-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.onefire-split-card .of-split-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 5cqw, 3.5rem);
}

.onefire-split-card .of-info-item {
    display: flex;
    flex-direction: column;
}

.onefire-split-card .of-info-item i {
    font-size: clamp(1.75rem, 5cqw, 2.25rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.onefire-split-card .of-info-item .of-info-title {
    font-size: clamp(1.1rem, 3cqw, 1.3rem);
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.onefire-split-card .of-info-item .of-info-text {
    font-size: clamp(0.95rem, 3cqw, 1.05rem);
    margin-bottom: 0;
    color: #ffffff;
    line-height: 1.5;
}

.onefire-split-card .of-split-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    background-color: var(--of-primary-card-dark);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 2;
    pointer-events: none;
}

@container (max-width: 850px) {
    .onefire-split-card .of-split-content {
        text-align: center;
    }

    .onefire-split-card .of-split-buttons {
        justify-content: center;
    }

    .onefire-split-card .of-split-info-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .onefire-split-card .of-info-item {
        align-items: center;
    }

    .onefire-split-card .of-split-title,
    .onefire-split-card .of-split-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .onefire-split-card .of-split-shape {
        width: 100%;
        height: 150px;
        top: auto;
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    }
}

/*** MINI CARDS ***/
.onefire-mini-card {
    background-color: var(--of-bg-card);
    padding: 1.8rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 0.25rem;
    height: 100%;
}

.onefire-mini-card.of-variant-gray {
    background-color: var(--of-bg-card-gray);
}

.onefire-mini-card.of-variant-left {
    align-items: flex-start;
    text-align: left;
}

.onefire-mini-card .of-card-icon {
    color: var(--of-primary);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    line-height: 1;
}

.onefire-mini-card .of-card-title {
    font-size: clamp(1.1rem, 1.5vw + 0.8rem, 1.25rem);
    color: var(--of-sys-text-heading);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.onefire-mini-card .of-card-text {
    font-size: clamp(0.85rem, 1vw + 0.6rem, 0.95rem);
    color: var(--of-sys-text-main);
    line-height: 1.5;
    margin-bottom: 0;
}

[data-bs-theme="dark"] .onefire-mini-card {
    border-color: #2d2e30;
    box-shadow: 0 4px 12px #111213;
}

[data-bs-theme="dark"] .onefire-mini-card.of-variant-gray {
    border-color: #2d2e30;
    box-shadow: none;
}

/*** UNIVERSAL CARD ***/
.onefire-card-universal {
    background-color: var(--of-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.25rem;
    padding: clamp(1.25rem, 2cqw, 2rem);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease-in-out;
}

.onefire-card-universal .of-card-icon {
    color: var(--of-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.onefire-card-universal .of-card-title {
    font-size: 1.15rem;
    color: var(--of-sys-text-heading);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.onefire-card-universal .of-card-text {
    font-size: 1rem;
    color: var(--of-sys-text-main);
    line-height: 1.6;
    margin-bottom: 0;
}

.onefire-card-universal .of-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

/** FEATURE CARD - OHNE BORDER **/
.onefire-feature-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.onefire-feature-card .of-feature-icon {
    color: var(--of-primary);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.onefire-feature-card .of-feature-title {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.onefire-feature-card .of-feature-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/*** LINK CARD ***/
.onefire-link-card {
    position: relative;
    background-color: var(--of-bg-card);
    border: 1px solid var(--of-sys-border);
    border-radius: 0.25rem;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.onefire-link-card:hover {
    border-color: var(--of-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.onefire-link-card .of-icon {
    font-size: 2rem;
    color: var(--of-primary);
    margin-bottom: 1.25rem;
    line-height: 1;
}

.onefire-link-card .of-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--of-sys-text-heading);
    letter-spacing: -0.01em;
}

.onefire-link-card .of-text {
    font-size: 1rem;
    color: var(--of-sys-text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.onefire-link-card .of-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--of-primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.onefire-link-card .of-link i {
    transition: transform 0.2s ease;
    font-size: 1.1em;
}

.onefire-link-card:hover .of-link {
    color: var(--of-primary-hover);
}

.onefire-link-card:hover .of-link i {
    transform: translateX(5px);
}

[data-bs-theme="dark"] .onefire-link-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ======================================================
   SECTIONS
   ====================================================== */
.onefire-feature-split .of-content .of-eyebrow {
    color: var(--of-primary);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.onefire-feature-split .of-content h2 {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.onefire-feature-split .of-content .of-text-lead {
    color: var(--of-sys-text-main);
    margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.onefire-feature-split .of-content .of-feature-list {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.onefire-feature-split .of-list-item {
    margin-bottom: clamp(0.75rem, 1.2vw, 1rem);
}

.onefire-feature-split .of-list-icon {
    color: var(--of-primary);
    font-size: clamp(1.25rem, 1.5vw, 1.4rem);
    line-height: 1;
    margin-top: 0.2rem;
}

.onefire-feature-split .of-list-text {
    color: var(--of-sys-text-main);
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.5;
}

.onefire-feature-split .of-cta-link {
    color: var(--of-primary);
    font-size: clamp(1.1rem, 1.3vw, 1.2rem);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.onefire-feature-split .of-cta-link i {
    transition: transform 0.2s ease-in-out;
}

.onefire-feature-split .of-cta-link:hover i {
    transform: translateX(5px);
}

.onefire-feature-split .of-media-wrapper {
    position: relative;
    width: 100%;
    min-height: clamp(350px, 40vw, 550px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    overflow: hidden;
}

.onefire-feature-split .of-media-clean {
    min-height: auto !important;
    aspect-ratio: 4 / 3;
}

.onefire-feature-split .of-media-clean .of-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.onefire-feature-split .of-media-svg {
    padding: clamp(2.5rem, 6vw, 5rem);
}

.onefire-feature-split .of-media-svg .of-product-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.onefire-feature-split .of-media-img {
    padding: clamp(1rem, 2vw, 2.5rem);
}

.onefire-feature-split .of-media-img .of-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);*/
    position: relative;
    z-index: 2;
}

.onefire-feature-split .of-media-icon {
    padding: 2rem;
}

.onefire-feature-split .of-media-icon i {
    font-size: clamp(5rem, 10vw, 8rem);
    color: var(--of-primary);
    position: relative;
    z-index: 2;
}

.onefire-feature-split .of-w-90 { max-width: 90% !important; }
.onefire-feature-split .of-w-80 { max-width: 80% !important; }
.onefire-feature-split .of-w-70 { max-width: 70% !important; }
.onefire-feature-split .of-w-60 { max-width: 60% !important; }

.onefire-feature-split .of-media-red {
    background-color: var(--of-primary-card);
}

.onefire-feature-split .of-media-red::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    background-color: var(--of-primary-card-dark);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.onefire-feature-split .of-media-bottom {
    align-items: flex-end;
    padding-bottom: 0;
}

.onefire-feature-split .of-media-bottom .of-product-img,
.onefire-feature-split .of-media-bottom .of-image {
    max-height: 95%;
}

[data-bs-theme="dark"] .onefire-feature-split .of-media-wrapper:not(.of-media-clean) {
    background-color: #252627;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .onefire-feature-split .of-media-clean {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1199px) {
    .onefire-feature-split .of-content {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 991px) {
    .onefire-feature-split .of-media-wrapper {
        min-height: clamp(300px, 45vw, 500px);
        margin: 0 auto;
    }

    .onefire-feature-split .of-media-clean {
        aspect-ratio: 16 / 9;
        margin-top: 2rem;
    }

    .onefire-feature-split .of-w-90,
    .onefire-feature-split .of-w-80,
    .onefire-feature-split .of-w-70,
    .onefire-feature-split .of-w-60 {
        max-width: 100% !important;
    }
}

@media (max-width: 767px) {
    .onefire-feature-split .of-media-svg {
        padding: 3rem 1.5rem;
    }

    .onefire-feature-split .of-media-img {
        padding: 1.5rem 1rem;
    }

    .onefire-feature-split .of-media-bottom {
        padding-bottom: 0;
    }
}

/*** FEATURE GRID SECTION ***/
.onefire-feature-grid .of-grid-item {
    background-color: var(--of-bg-card-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.onefire-feature-grid .of-grid-media {
    padding: clamp(2.5rem, 5vw, 4.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: clamp(280px, 35vw, 400px);
}

.onefire-feature-grid .of-grid-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
}

.onefire-feature-grid .of-grid-content {
    padding: 0 clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.onefire-feature-grid .of-grid-content h3 {
    color: var(--of-sys-text-heading);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
}

.onefire-feature-grid .of-grid-content p {
    color: var(--of-sys-text-main);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    flex-grow: 1;
    line-height: 1.6;
}

.onefire-feature-grid .of-cta-link {
    color: var(--of-primary);
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
}

.onefire-feature-grid .of-cta-link i {
    transition: transform 0.2s ease-in-out;
}

.onefire-feature-grid .of-cta-link:hover i {
    transform: translateX(5px);
}

[data-bs-theme="dark"] .onefire-feature-grid .of-grid-item {
    background-color: #252627;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .onefire-feature-grid .of-grid-media {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .onefire-feature-grid .of-grid-media {
        padding: 3rem 1.5rem;
    }

    .onefire-feature-grid .of-grid-content {
        padding: 0 1.5rem 3rem 1.5rem;
    }
}