/* =========================================================
   IFOW DESIGN SYSTEM
   PART 01 — ROOT / RESET / TYPOGRAPHY
   ========================================================= */

   :root {

    /* -----------------------------------------------------
       Brand
       ----------------------------------------------------- */

    --ifow-green: #76C900;
    --ifow-dark-green: #176B2A;

    --ifow-green-rgb: 118, 201, 0;
    --ifow-dark-green-rgb: 23, 107, 42;


    /* -----------------------------------------------------
       Core
       ----------------------------------------------------- */

    --ifow-black: #111111;
    --ifow-white: #FFFFFF;

    --ifow-gray-900: #222222;
    --ifow-gray-800: #333333;
    --ifow-gray-700: #555555;
    --ifow-gray-600: #666666;
    --ifow-gray-500: #777777;
    --ifow-gray-400: #999999;
    --ifow-gray-300: #CCCCCC;
    --ifow-gray-200: #E5E5E5;
    --ifow-gray-100: #F2F2F2;
    --ifow-gray-50: #FAFAFA;

    --ifow-gray: var(--ifow-gray-500);
    --ifow-light: var(--ifow-gray-50);


    /* -----------------------------------------------------
       Backgrounds
       ----------------------------------------------------- */

    --ifow-bg: var(--ifow-white);
    --ifow-bg-soft: var(--ifow-gray-50);
    --ifow-bg-muted: #F6F8F5;
    --ifow-bg-dark: var(--ifow-black);


    /* -----------------------------------------------------
       Borders
       ----------------------------------------------------- */

    --ifow-border: rgba(17, 17, 17, 0.09);
    --ifow-border-light: rgba(17, 17, 17, 0.06);
    --ifow-border-dark: rgba(17, 17, 17, 0.16);


    /* -----------------------------------------------------
       Typography
       ----------------------------------------------------- */

    --ifow-font-heading:
        "Space Grotesk",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --ifow-font-body:
        "Plus Jakarta Sans",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;


    /* -----------------------------------------------------
       Font Weights
       ----------------------------------------------------- */

    --ifow-weight-regular: 400;
    --ifow-weight-medium: 500;
    --ifow-weight-semibold: 600;
    --ifow-weight-bold: 700;
    --ifow-weight-extrabold: 800;


    /* -----------------------------------------------------
       Radius
       ----------------------------------------------------- */

    --ifow-radius-sm: 8px;
    --ifow-radius-md: 12px;
    --ifow-radius-lg: 16px;
    --ifow-radius-xl: 24px;
    --ifow-radius-pill: 999px;


    /* -----------------------------------------------------
       Shadows
       ----------------------------------------------------- */

    --ifow-shadow-sm:
        0 4px 14px rgba(17, 17, 17, 0.05);

    --ifow-shadow-md:
        0 12px 35px rgba(17, 17, 17, 0.08);

    --ifow-shadow-lg:
        0 24px 70px rgba(17, 17, 17, 0.10);


    /* -----------------------------------------------------
       Brand Gradient
       ----------------------------------------------------- */

    --ifow-gradient:
        linear-gradient(
            135deg,
            var(--ifow-green),
            var(--ifow-dark-green)
        );


    /* -----------------------------------------------------
       Transitions
       ----------------------------------------------------- */

    --ifow-transition-fast:
        0.18s ease;

    --ifow-transition:
        0.25s ease;

    --ifow-transition-slow:
        0.35s ease;


    /* -----------------------------------------------------
       Layout
       ----------------------------------------------------- */

    --ifow-header-height: 78px;
    --ifow-container-width: 1320px;
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--ifow-bg);
    color: var(--ifow-black);

    font-family: var(--ifow-font-body);
    font-size: 16px;
    font-weight: var(--ifow-weight-regular);

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;
}


/* =========================================================
   BOX MODEL
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* =========================================================
   IMAGES
   ========================================================= */

img,
svg {
    max-width: 100%;
}

img {
    height: auto;
    vertical-align: middle;
}


/* =========================================================
   LINKS
   ========================================================= */

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(
        var(--ifow-green-rgb),
        0.28
    );

    outline-offset: 3px;
}


/* =========================================================
   HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-weight: var(--ifow-weight-bold);

    line-height: 1.1;

    letter-spacing: -0.035em;
}


/* =========================================================
   PARAGRAPHS
   ========================================================= */

p {
    margin-top: 0;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    background: rgba(
        var(--ifow-green-rgb),
        0.22
    );

    color: var(--ifow-black);
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================================
   CONTAINER
   ========================================================= */

   .ifow-container {
    width: 100%;
    max-width: var(--ifow-container-width);

    margin-right: auto;
    margin-left: auto;

    padding-right: 24px;
    padding-left: 24px;
}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.ifow-section {
    position: relative;

    padding: 110px 0;
}

.ifow-section-sm {
    padding: 75px 0;
}

.ifow-section-lg {
    padding: 140px 0;
}


/* =========================================================
   SECTION BACKGROUNDS
   ========================================================= */

.ifow-section-light {
    background: var(--ifow-bg-soft);
}

.ifow-section-muted {
    background: var(--ifow-bg-muted);
}

.ifow-section-dark {
    background: var(--ifow-black);
    color: var(--ifow-white);
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.ifow-section-header {
    max-width: 850px;

    margin-bottom: 60px;
}

.ifow-section-header-center {
    margin-right: auto;
    margin-left: auto;

    text-align: center;
}


/* =========================================================
   SECTION EYEBROW
   ========================================================= */

.ifow-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: var(--ifow-dark-green);

    font-family: var(--ifow-font-body);
    font-size: 11px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1.2;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ifow-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    flex: 0 0 auto;

    border-radius: var(--ifow-radius-pill);

    background: var(--ifow-gradient);
}

.ifow-section-header-center .ifow-eyebrow {
    justify-content: center;
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.ifow-section-title {
    margin-bottom: 20px;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: clamp(2.5rem, 5vw, 4.75rem);
    font-weight: var(--ifow-weight-bold);

    line-height: 1.02;
    letter-spacing: -.055em;
}

.ifow-section-dark .ifow-section-title {
    color: var(--ifow-white);
}


/* =========================================================
   SECTION TITLE — COMPACT
   ========================================================= */

.ifow-section-title-sm {
    font-size: clamp(2rem, 4vw, 3.5rem);
}


/* =========================================================
   SECTION DESCRIPTION
   ========================================================= */

.ifow-section-description {
    max-width: 680px;

    margin-bottom: 0;

    color: var(--ifow-gray-600);

    font-size: 17px;
    line-height: 1.8;
}

.ifow-section-header-center .ifow-section-description {
    margin-right: auto;
    margin-left: auto;
}

.ifow-section-dark .ifow-section-description {
    color: rgba(255, 255, 255, .62);
}


/* =========================================================
   GRADIENT TEXT
   ========================================================= */

.ifow-gradient-text {
    background: var(--ifow-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================================
   CONTENT WIDTHS
   ========================================================= */

.ifow-content-sm {
    max-width: 560px;
}

.ifow-content-md {
    max-width: 760px;
}

.ifow-content-lg {
    max-width: 960px;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.ifow-divider {
    width: 100%;
    height: 1px;

    margin: 0;

    background: var(--ifow-border);
}

.ifow-divider-light {
    background: rgba(255, 255, 255, .12);
}


/* =========================================================
   VERTICAL SPACING
   ========================================================= */

.ifow-space-xs {
    height: 12px;
}

.ifow-space-sm {
    height: 24px;
}

.ifow-space-md {
    height: 40px;
}

.ifow-space-lg {
    height: 64px;
}

.ifow-space-xl {
    height: 96px;
}


/* =========================================================
   GRID
   ========================================================= */

.ifow-grid {
    display: grid;
    gap: 24px;
}

.ifow-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ifow-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ifow-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* =========================================================
   COMMON CARD
   ========================================================= */

.ifow-card {
    position: relative;

    padding: 30px;

    border: 1px solid var(--ifow-border);

    border-radius: var(--ifow-radius-lg);

    background: var(--ifow-white);

    box-shadow: var(--ifow-shadow-sm);

    transition:
        transform var(--ifow-transition),
        box-shadow var(--ifow-transition),
        border-color var(--ifow-transition);
}

.ifow-card:hover {
    border-color: rgba(
        var(--ifow-green-rgb),
        .25
    );

    box-shadow: var(--ifow-shadow-md);

    transform: translateY(-3px);
}


/* =========================================================
   CARD — FLAT
   ========================================================= */

.ifow-card-flat {
    box-shadow: none;
}

.ifow-card-flat:hover {
    box-shadow: var(--ifow-shadow-sm);
}


/* =========================================================
   CARD — DARK
   ========================================================= */

.ifow-card-dark {
    border-color: rgba(255, 255, 255, .10);

    background: var(--ifow-black);
    color: var(--ifow-white);
}

.ifow-card-dark:hover {
    border-color: rgba(
        var(--ifow-green-rgb),
        .30
    );
}


/* =========================================================
   RESPONSIVE LAYOUT
   ========================================================= */

@media (max-width: 1199.98px) {

    .ifow-section {
        padding: 95px 0;
    }

    .ifow-section-lg {
        padding: 120px 0;
    }

    .ifow-container {
        max-width: 1140px;
    }
}


@media (max-width: 991.98px) {

    .ifow-container {
        max-width: 960px;
    }

    .ifow-section {
        padding: 80px 0;
    }

    .ifow-section-sm {
        padding: 60px 0;
    }

    .ifow-section-lg {
        padding: 100px 0;
    }

    .ifow-section-header {
        margin-bottom: 45px;
    }

    .ifow-grid-3,
    .ifow-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 767.98px) {

    .ifow-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ifow-section {
        padding: 70px 0;
    }

    .ifow-section-sm {
        padding: 50px 0;
    }

    .ifow-section-lg {
        padding: 85px 0;
    }

    .ifow-section-header {
        margin-bottom: 35px;
    }

    .ifow-section-title {
        font-size: clamp(2.35rem, 11vw, 3.5rem);
    }

    .ifow-section-description {
        font-size: 15px;
    }

    .ifow-grid-2,
    .ifow-grid-3,
    .ifow-grid-4 {
        grid-template-columns: 1fr;
    }

    .ifow-card {
        padding: 24px;
    }
}


@media (max-width: 575.98px) {

    .ifow-section {
        padding: 60px 0;
    }

    .ifow-section-lg {
        padding: 75px 0;
    }

    .ifow-section-title {
        letter-spacing: -.045em;
    }

    .ifow-eyebrow {
        font-size: 10px;
        letter-spacing: .13em;
    }
}

/* =========================================================
   BUTTON BASE
   ========================================================= */

   .ifow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;

    padding: 12px 20px;

    border: 1px solid transparent;
    border-radius: var(--ifow-radius-pill);

    font-family: var(--ifow-font-body);
    font-size: 14px;
    font-weight: var(--ifow-weight-semibold);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;

    cursor: pointer;

    transition:
        color var(--ifow-transition),
        background var(--ifow-transition),
        border-color var(--ifow-transition),
        box-shadow var(--ifow-transition),
        transform var(--ifow-transition);
}

.ifow-btn:hover {
    text-decoration: none;
}

.ifow-btn:active {
    transform: translateY(1px);
}

.ifow-btn:disabled,
.ifow-btn.disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}

/* =========================================================
   LIGHT OUTLINE BUTTON
   ========================================================= */

   .ifow-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 46px;

    padding: 12px 20px;

    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--ifow-radius-pill);

    background: transparent;
    color: var(--ifow-white);

    font-family: var(--ifow-font-body);
    font-size: 13px;
    font-weight: var(--ifow-weight-semibold);

    line-height: 1;
    text-decoration: none;

    transition:
        background var(--ifow-transition),
        border-color var(--ifow-transition),
        color var(--ifow-transition),
        transform var(--ifow-transition),
        box-shadow var(--ifow-transition);
}

.ifow-btn-outline-light:hover {
    border-color: transparent;

    background: var(--ifow-gradient);
    color: var(--ifow-white);

    transform: translateY(-1px);

    box-shadow:
        0 10px 25px rgba(
            var(--ifow-dark-green-rgb),
            .18
        );
}

.ifow-btn-outline-light .ifow-btn-icon {
    font-size: 15px;
    line-height: 1;

    transition:
        transform var(--ifow-transition);
}

.ifow-btn-outline-light:hover .ifow-btn-icon {
    transform: translate(2px, -2px);
}


/* =========================================================
   BUTTON ICON / ARROW
   ========================================================= */

.ifow-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    font-size: 16px;
    line-height: 1;

    transition: transform var(--ifow-transition);
}

.ifow-btn:hover .ifow-btn-icon {
    transform: translateX(3px);
}


/* =========================================================
   PRIMARY
   ========================================================= */

.ifow-btn-primary {
    background: var(--ifow-black);
    color: var(--ifow-white);

    box-shadow: none;
}

.ifow-btn-primary:hover {
    background: var(--ifow-gradient);
    color: var(--ifow-white);

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(
            var(--ifow-dark-green-rgb),
            .18
        );
}


/* =========================================================
   BRAND
   ========================================================= */

.ifow-btn-brand {
    background: var(--ifow-gradient);
    color: var(--ifow-white);

    box-shadow:
        0 8px 22px rgba(
            var(--ifow-dark-green-rgb),
            .14
        );
}

.ifow-btn-brand:hover {
    color: var(--ifow-white);

    transform: translateY(-2px);

    box-shadow:
        0 14px 35px rgba(
            var(--ifow-dark-green-rgb),
            .22
        );
}


/* =========================================================
   SECONDARY
   ========================================================= */

.ifow-btn-secondary {
    background: var(--ifow-white);
    color: var(--ifow-black);

    border-color: var(--ifow-border);
}

.ifow-btn-secondary:hover {
    color: var(--ifow-dark-green);

    border-color: rgba(
        var(--ifow-green-rgb),
        .35
    );

    background: var(--ifow-bg-muted);

    transform: translateY(-2px);
}


/* =========================================================
   OUTLINE
   ========================================================= */

.ifow-btn-outline {
    background: transparent;
    color: var(--ifow-black);

    border-color: rgba(
        17,
        17,
        17,
        .18
    );
}

.ifow-btn-outline:hover {
    background: var(--ifow-black);
    color: var(--ifow-white);

    border-color: var(--ifow-black);

    transform: translateY(-2px);
}


/* =========================================================
   GREEN OUTLINE
   ========================================================= */

.ifow-btn-outline-green {
    background: transparent;
    color: var(--ifow-dark-green);

    border-color: rgba(
        var(--ifow-green-rgb),
        .45
    );
}

.ifow-btn-outline-green:hover {
    background: var(--ifow-gradient);
    color: var(--ifow-white);

    border-color: transparent;

    transform: translateY(-2px);
}


/* =========================================================
   GHOST
   ========================================================= */

.ifow-btn-ghost {
    min-height: auto;

    padding: 8px 0;

    border: 0;
    border-radius: 0;

    background: transparent;
    color: var(--ifow-black);
}

.ifow-btn-ghost:hover {
    color: var(--ifow-dark-green);
}


/* =========================================================
   WHITE BUTTON
   ========================================================= */

.ifow-btn-white {
    background: var(--ifow-white);
    color: var(--ifow-black);

    border-color: var(--ifow-white);
}

.ifow-btn-white:hover {
    background: transparent;
    color: var(--ifow-white);

    border-color: rgba(
        255,
        255,
        255,
        .35
    );

    transform: translateY(-2px);
}


/* =========================================================
   BUTTON SIZES
   ========================================================= */

.ifow-btn-sm {
    min-height: 40px;

    padding: 9px 16px;

    font-size: 13px;
}

.ifow-btn-lg {
    min-height: 56px;

    padding: 15px 25px;

    font-size: 15px;
}

.ifow-btn-xl {
    min-height: 62px;

    padding: 17px 30px;

    font-size: 16px;
}


/* =========================================================
   BUTTON GROUP
   ========================================================= */

.ifow-btn-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   BUTTON LOADING
   ========================================================= */

.ifow-btn-loading {
    pointer-events: none;
}

.ifow-btn-loading .ifow-btn-label {
    opacity: .65;
}

.ifow-btn-spinner {
    width: 16px;
    height: 16px;

    border: 2px solid currentColor;
    border-right-color: transparent;

    border-radius: 50%;

    animation: ifow-spin .65s linear infinite;
}

@keyframes ifow-spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   BUTTON ON DARK BACKGROUND
   ========================================================= */

.ifow-section-dark .ifow-btn-primary {
    background: var(--ifow-white);
    color: var(--ifow-black);
}

.ifow-section-dark .ifow-btn-primary:hover {
    background: var(--ifow-gradient);
    color: var(--ifow-white);
}

.ifow-section-dark .ifow-btn-outline {
    color: var(--ifow-white);
    border-color: rgba(255,255,255,.20);
}

.ifow-section-dark .ifow-btn-outline:hover {
    background: var(--ifow-white);
    color: var(--ifow-black);
    border-color: var(--ifow-white);
}


/* =========================================================
   FULL WIDTH
   ========================================================= */

.ifow-btn-block {
    width: 100%;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 575.98px) {

    .ifow-btn-group {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .ifow-btn-group .ifow-btn {
        width: 100%;
    }

    .ifow-btn-xl {
        min-height: 56px;

        padding: 15px 22px;
    }
}


/* =========================================================
   FORM GROUP
   ========================================================= */

   .ifow-form-group {
    margin-bottom: 22px;
}


/* =========================================================
   FORM LABEL
   ========================================================= */

.ifow-form-label {
    display: block;

    margin-bottom: 8px;

    color: var(--ifow-gray-900);

    font-family: var(--ifow-font-body);
    font-size: 13px;
    font-weight: var(--ifow-weight-semibold);

    line-height: 1.4;
}

.ifow-form-required {
    margin-left: 3px;

    color: #C62828;
}


/* =========================================================
   FORM HELP TEXT
   ========================================================= */

.ifow-form-help {
    display: block;

    margin-top: 7px;

    color: var(--ifow-gray-500);

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   FORM CONTROL
   ========================================================= */

.ifow-form-control,
.ifow-form-select {
    display: block;

    width: 100%;
    min-height: 50px;

    padding: 12px 15px;

    border: 1px solid var(--ifow-border-dark);
    border-radius: var(--ifow-radius-md);

    outline: none;

    background: var(--ifow-white);
    color: var(--ifow-black);

    font-family: var(--ifow-font-body);
    font-size: 14px;
    font-weight: var(--ifow-weight-regular);

    line-height: 1.5;

    box-shadow: none;

    transition:
        border-color var(--ifow-transition),
        box-shadow var(--ifow-transition),
        background var(--ifow-transition);
}

.ifow-form-control::placeholder {
    color: var(--ifow-gray-400);
    opacity: 1;
}

.ifow-form-control:hover,
.ifow-form-select:hover {
    border-color: rgba(
        var(--ifow-dark-green-rgb),
        .35
    );
}

.ifow-form-control:focus,
.ifow-form-select:focus {
    border-color: var(--ifow-dark-green);

    background: var(--ifow-white);

    box-shadow:
        0 0 0 4px rgba(
            var(--ifow-green-rgb),
            .10
        );
}


/* =========================================================
   TEXTAREA
   ========================================================= */

textarea.ifow-form-control {
    min-height: 140px;

    resize: vertical;
}


/* =========================================================
   LARGE TEXTAREA
   ========================================================= */

textarea.ifow-form-control.ifow-form-textarea-lg {
    min-height: 200px;
}


/* =========================================================
   SELECT
   ========================================================= */

.ifow-form-select {
    appearance: none;

    padding-right: 44px;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #777777 50%
        ),
        linear-gradient(
            135deg,
            #777777 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 19px) 21px,
        calc(100% - 13px) 21px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}


/* =========================================================
   DISABLED
   ========================================================= */

.ifow-form-control:disabled,
.ifow-form-select:disabled {
    cursor: not-allowed;

    background: var(--ifow-gray-100);
    color: var(--ifow-gray-400);

    opacity: .8;
}


/* =========================================================
   READONLY
   ========================================================= */

.ifow-form-control[readonly] {
    background: var(--ifow-gray-50);
}


/* =========================================================
   CHECKBOX / RADIO
   ========================================================= */

.ifow-form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 14px;
}

.ifow-form-check-input {
    width: 18px;
    height: 18px;

    flex: 0 0 auto;

    margin-top: 2px;

    border: 1px solid var(--ifow-border-dark);

    border-radius: 5px;

    appearance: none;

    background: var(--ifow-white);

    cursor: pointer;

    transition:
        background var(--ifow-transition),
        border-color var(--ifow-transition),
        box-shadow var(--ifow-transition);
}

.ifow-form-check-input:checked {
    border-color: var(--ifow-dark-green);

    background:
        var(--ifow-gradient);
}

.ifow-form-check-input:focus {
    outline: none;

    box-shadow:
        0 0 0 4px rgba(
            var(--ifow-green-rgb),
            .10
        );
}

.ifow-form-check-label {
    color: var(--ifow-gray-700);

    font-size: 13px;
    line-height: 1.6;

    cursor: pointer;
}


/* =========================================================
   RADIO
   ========================================================= */

.ifow-form-radio {
    border-radius: 50%;
}

.ifow-form-radio:checked {
    box-shadow:
        inset 0 0 0 4px var(--ifow-white);
}


/* =========================================================
   FILE INPUT
   ========================================================= */

.ifow-form-file {
    display: block;

    width: 100%;

    padding: 10px;

    border: 1px dashed var(--ifow-border-dark);
    border-radius: var(--ifow-radius-md);

    background: var(--ifow-gray-50);

    color: var(--ifow-gray-600);

    font-size: 13px;

    cursor: pointer;

    transition:
        border-color var(--ifow-transition),
        background var(--ifow-transition);
}

.ifow-form-file:hover {
    border-color: rgba(
        var(--ifow-green-rgb),
        .50
    );

    background: var(--ifow-bg-muted);
}


/* =========================================================
   INPUT WITH PREFIX / SUFFIX
   ========================================================= */

.ifow-input-group {
    display: flex;
    align-items: stretch;

    width: 100%;
}

.ifow-input-prefix,
.ifow-input-suffix {
    display: flex;
    align-items: center;

    padding: 0 14px;

    border: 1px solid var(--ifow-border-dark);

    background: var(--ifow-gray-50);

    color: var(--ifow-gray-600);

    font-size: 13px;
    font-weight: var(--ifow-weight-medium);
}

.ifow-input-prefix {
    border-right: 0;

    border-radius:
        var(--ifow-radius-md) 0 0 var(--ifow-radius-md);
}

.ifow-input-suffix {
    border-left: 0;

    border-radius:
        0 var(--ifow-radius-md) var(--ifow-radius-md) 0;
}

.ifow-input-group .ifow-form-control {
    border-radius: 0;
}

.ifow-input-group .ifow-input-prefix + .ifow-form-control {
    border-radius:
        0 var(--ifow-radius-md) var(--ifow-radius-md) 0;
}

.ifow-input-group .ifow-form-control + .ifow-input-suffix {
    border-radius:
        var(--ifow-radius-md) 0 0 var(--ifow-radius-md);
}


/* =========================================================
   VALIDATION — SUCCESS
   ========================================================= */

.ifow-form-control.is-valid,
.ifow-form-select.is-valid {
    border-color: #2E7D32;
}

.ifow-form-control.is-valid:focus,
.ifow-form-select.is-valid:focus {
    box-shadow:
        0 0 0 4px rgba(46, 125, 50, .10);
}

.ifow-form-valid-feedback {
    display: block;

    margin-top: 7px;

    color: #2E7D32;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   VALIDATION — ERROR
   ========================================================= */

.ifow-form-control.is-invalid,
.ifow-form-select.is-invalid {
    border-color: #C62828;
}

.ifow-form-control.is-invalid:focus,
.ifow-form-select.is-invalid:focus {
    box-shadow:
        0 0 0 4px rgba(198, 40, 40, .10);
}

.ifow-form-invalid-feedback {
    display: block;

    margin-top: 7px;

    color: #C62828;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   FORM ACTIONS
   ========================================================= */

.ifow-form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.ifow-form-card {
    padding: 40px;

    border: 1px solid var(--ifow-border);

    border-radius: var(--ifow-radius-xl);

    background: var(--ifow-white);

    box-shadow: var(--ifow-shadow-md);
}

.ifow-form-card-title {
    margin-bottom: 10px;

    font-family: var(--ifow-font-heading);
    font-size: 28px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1.15;
    letter-spacing: -.04em;
}

.ifow-form-card-description {
    margin-bottom: 30px;

    color: var(--ifow-gray-600);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SEARCH INPUT
   ========================================================= */

.ifow-search {
    position: relative;
}

.ifow-search .ifow-form-control {
    padding-right: 52px;
}

.ifow-search-icon {
    position: absolute;

    top: 50%;
    right: 16px;

    transform: translateY(-50%);

    color: var(--ifow-gray-500);

    pointer-events: none;
}


/* =========================================================
   FORM ROW
   ========================================================= */

.ifow-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   DARK FORM CARD
   ========================================================= */

.ifow-form-card-dark {
    border-color: rgba(255,255,255,.10);

    background: var(--ifow-black);
}

.ifow-form-card-dark .ifow-form-card-title {
    color: var(--ifow-white);
}

.ifow-form-card-dark .ifow-form-card-description {
    color: rgba(255,255,255,.60);
}

.ifow-form-card-dark .ifow-form-label {
    color: rgba(255,255,255,.85);
}

.ifow-form-card-dark .ifow-form-control,
.ifow-form-card-dark .ifow-form-select {
    border-color: rgba(255,255,255,.15);

    background: rgba(255,255,255,.05);
    color: var(--ifow-white);
}

.ifow-form-card-dark .ifow-form-control::placeholder {
    color: rgba(255,255,255,.40);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 767.98px) {

    .ifow-form-card {
        padding: 28px 22px;

        border-radius: var(--ifow-radius-lg);
    }

    .ifow-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .ifow-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ifow-form-actions .ifow-btn {
        width: 100%;
    }
}


/* =========================================================
   ALERT BASE
   ========================================================= */

   .ifow-alert {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 14px;

    width: 100%;

    padding: 15px 17px;

    border: 1px solid transparent;
    border-radius: var(--ifow-radius-md);

    font-family: var(--ifow-font-body);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   ALERT ICON
   ========================================================= */

.ifow-alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    flex: 0 0 auto;

    border-radius: 50%;

    font-size: 12px;
    font-weight: var(--ifow-weight-bold);
}


/* =========================================================
   ALERT CONTENT
   ========================================================= */

.ifow-alert-content {
    flex: 1;
    min-width: 0;
}

.ifow-alert-title {
    margin-bottom: 3px;

    color: inherit;

    font-family: var(--ifow-font-body);
    font-size: 14px;
    font-weight: var(--ifow-weight-bold);
    line-height: 1.4;
}

.ifow-alert-message {
    margin: 0;

    color: inherit;
}


/* =========================================================
   ALERT CLOSE
   ========================================================= */

.ifow-alert-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    flex: 0 0 auto;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: transparent;

    color: currentColor;

    font-size: 18px;
    line-height: 1;

    opacity: .60;

    cursor: pointer;

    transition:
        background var(--ifow-transition),
        opacity var(--ifow-transition);
}

.ifow-alert-close:hover {
    background: rgba(17, 17, 17, .07);

    opacity: 1;
}


/* =========================================================
   SUCCESS
   ========================================================= */

.ifow-alert-success {
    border-color: rgba(46, 125, 50, .18);

    background: #F2F9F2;
    color: #245C28;
}

.ifow-alert-success .ifow-alert-icon {
    background: #2E7D32;
    color: #ffffff;
}


/* =========================================================
   ERROR / DANGER
   ========================================================= */

.ifow-alert-danger {
    border-color: rgba(198, 40, 40, .18);

    background: #FFF5F5;
    color: #8E2020;
}

.ifow-alert-danger .ifow-alert-icon {
    background: #C62828;
    color: #ffffff;
}


/* =========================================================
   WARNING
   ========================================================= */

.ifow-alert-warning {
    border-color: rgba(181, 130, 0, .20);

    background: #FFF9E8;
    color: #765600;
}

.ifow-alert-warning .ifow-alert-icon {
    background: #B88600;
    color: #ffffff;
}


/* =========================================================
   INFO
   ========================================================= */

.ifow-alert-info {
    border-color: rgba(21, 101, 192, .18);

    background: #F3F8FD;
    color: #164F85;
}

.ifow-alert-info .ifow-alert-icon {
    background: #1565C0;
    color: #ffffff;
}


/* =========================================================
   NEUTRAL
   ========================================================= */

.ifow-alert-neutral {
    border-color: var(--ifow-border);

    background: var(--ifow-gray-50);
    color: var(--ifow-gray-800);
}

.ifow-alert-neutral .ifow-alert-icon {
    background: var(--ifow-gray-800);
    color: #ffffff;
}


/* =========================================================
   ALERT STACK
   ========================================================= */

.ifow-alert-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;

    width: 100%;
}


/* =========================================================
   ALERT COMPACT
   ========================================================= */

.ifow-alert-compact {
    padding: 11px 14px;

    font-size: 13px;
}

.ifow-alert-compact .ifow-alert-icon {
    width: 21px;
    height: 21px;

    font-size: 10px;
}


/* =========================================================
   FORM VALIDATION SUMMARY
   ========================================================= */

.ifow-form-summary {
    margin-bottom: 24px;

    padding: 17px 18px;

    border: 1px solid rgba(198, 40, 40, .18);

    border-radius: var(--ifow-radius-md);

    background: #FFF5F5;
    color: #8E2020;
}

.ifow-form-summary-title {
    margin-bottom: 8px;

    color: #8E2020;

    font-family: var(--ifow-font-body);
    font-size: 14px;
    font-weight: var(--ifow-weight-bold);
}

.ifow-form-summary ul {
    margin: 0;
    padding-left: 20px;

    font-size: 13px;
}

.ifow-form-summary li + li {
    margin-top: 4px;
}


/* =========================================================
   DJANGO MESSAGE POSITION
   ========================================================= */

.ifow-messages {
    position: fixed;

    top: calc(var(--ifow-header-height) + 18px);
    right: 20px;

    z-index: 1100;

    width: min(440px, calc(100vw - 40px));

    pointer-events: none;
}

.ifow-messages .ifow-alert {
    pointer-events: auto;

    box-shadow: var(--ifow-shadow-md);
}


/* =========================================================
   MESSAGE ANIMATION
   ========================================================= */

.ifow-message-enter {
    animation:
        ifow-message-in .3s ease both;
}

@keyframes ifow-message-in {

    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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


/* =========================================================
   MESSAGE EXIT
   ========================================================= */

.ifow-message-exit {
    animation:
        ifow-message-out .25s ease both;
}

@keyframes ifow-message-out {

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

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}


/* =========================================================
   ALERT LINKS
   ========================================================= */

.ifow-alert a {
    color: inherit;

    font-weight: var(--ifow-weight-semibold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ifow-alert a:hover {
    text-decoration-thickness: 2px;
}


/* =========================================================
   DARK ALERT
   ========================================================= */

.ifow-alert-dark {
    border-color: rgba(255, 255, 255, .10);

    background: #1A1A1A;
    color: rgba(255,255,255,.82);
}

.ifow-alert-dark .ifow-alert-icon {
    background: var(--ifow-gradient);
    color: #ffffff;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 575.98px) {

    .ifow-alert {
        gap: 10px;

        padding: 13px 14px;

        font-size: 13px;
    }

    .ifow-alert-icon {
        width: 22px;
        height: 22px;
    }

    .ifow-messages {
        top: calc(var(--ifow-header-height) + 12px);
        right: 12px;

        width: calc(100vw - 24px);
    }
}


/* =========================================================
   HEADER
   ========================================================= */

   .ifow-header {
    position: sticky;
    top: 0;

    z-index: 1030;

    background: rgba(255, 255, 255, .94);

    border-bottom: 1px solid var(--ifow-border-light);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.ifow-header .navbar {
    min-height: var(--ifow-header-height);

    padding: 0;
}


/* =====================================================
   IFOW BRAND LOGO
   ===================================================== */

.ifow-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}


.ifow-brand-logo {
    display: block;
    width: auto;
    height: 42px;
    max-width: 180px;
    object-fit: contain;
}


/* =====================================================
   FOOTER LOGO
   ===================================================== */

.ifow-footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.ifow-footer-logo {
    display: block;
    width: auto;
    height: 38px;
    max-width: 170px;
    object-fit: contain;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767.98px) {

    .ifow-brand-logo {
        height: 36px;
        max-width: 155px;
    }

    .ifow-footer-logo {
        height: 34px;
        max-width: 150px;
    }

}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.ifow-header .navbar-nav {
    gap: 2px;
}

.ifow-header .nav-link {
    position: relative;

    padding: 10px 14px !important;

    color: var(--ifow-gray-800);

    font-family: var(--ifow-font-body);
    font-size: 13px;
    font-weight: var(--ifow-weight-medium);

    transition:
        color var(--ifow-transition),
        transform var(--ifow-transition);
}

.ifow-header .nav-link::after {
    content: "";

    position: absolute;

    right: 14px;
    bottom: 3px;
    left: 14px;

    height: 2px;

    border-radius: var(--ifow-radius-pill);

    background: var(--ifow-gradient);

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform var(--ifow-transition);
}

.ifow-header .nav-link:hover {
    color: var(--ifow-dark-green);
}

.ifow-header .nav-link:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   HEADER CONTACT CTA
   ========================================================= */

.ifow-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 42px;

    padding: 10px 17px;

    border: 1px solid transparent;
    border-radius: var(--ifow-radius-pill);

    background: var(--ifow-black);
    color: var(--ifow-white);

    font-family: var(--ifow-font-body);
    font-size: 13px;
    font-weight: var(--ifow-weight-semibold);

    line-height: 1;
    text-decoration: none;

    transition:
        background var(--ifow-transition),
        color var(--ifow-transition),
        transform var(--ifow-transition),
        box-shadow var(--ifow-transition);
}

.ifow-header-cta span {
    font-size: 15px;
    line-height: 1;

    transition:
        transform var(--ifow-transition);
}

.ifow-header-cta:hover {
    background: var(--ifow-gradient);
    color: var(--ifow-white);

    transform: translateY(-1px);

    box-shadow:
        0 10px 25px rgba(
            var(--ifow-dark-green-rgb),
            .16
        );
}

.ifow-header-cta:hover span {
    transform: translate(2px, -2px);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.ifow-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 8px;

    border: 1px solid var(--ifow-border);
    border-radius: var(--ifow-radius-md);

    background: var(--ifow-white);

    box-shadow: none;
}

.ifow-menu-toggle:hover {
    border-color: rgba(
        var(--ifow-green-rgb),
        .35
    );
}

.ifow-menu-toggle:focus {
    box-shadow:
        0 0 0 4px rgba(
            var(--ifow-green-rgb),
            .10
        );
}

.ifow-menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 3px 0;

    border-radius: var(--ifow-radius-pill);

    background: var(--ifow-black);
}


/* =========================================================
   MOBILE OFFCANVAS
   ========================================================= */

.ifow-mobile-menu {
    width: min(400px, 90vw);

    border-left: 1px solid var(--ifow-border);

    background: var(--ifow-white);
}

.ifow-mobile-menu .offcanvas-header {
    min-height: var(--ifow-header-height);

    padding: 20px 24px;

    border-bottom: 1px solid var(--ifow-border-light);
}

.ifow-mobile-menu .btn-close {
    opacity: .55;

    transition:
        opacity var(--ifow-transition);
}

.ifow-mobile-menu .btn-close:hover {
    opacity: 1;
}

.ifow-mobile-menu .offcanvas-body {
    display: flex;
    flex-direction: column;

    padding: 30px 24px;
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.ifow-mobile-nav {
    display: flex;
    flex-direction: column;
}

.ifow-mobile-link {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 17px 0;

    border-bottom: 1px solid var(--ifow-border-light);

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: 21px;
    font-weight: var(--ifow-weight-semibold);

    line-height: 1.2;
    letter-spacing: -.035em;

    text-decoration: none;

    transition:
        color var(--ifow-transition),
        padding-left var(--ifow-transition);
}

.ifow-mobile-link span {
    width: 25px;

    flex: 0 0 auto;

    color: var(--ifow-green);

    font-family: var(--ifow-font-body);
    font-size: 10px;
    font-weight: var(--ifow-weight-bold);

    letter-spacing: .05em;
}

.ifow-mobile-link:hover {
    padding-left: 6px;

    color: var(--ifow-dark-green);
}


/* =========================================================
   MOBILE CONTACT
   ========================================================= */

.ifow-mobile-contact {
    margin-top: auto;

    padding-top: 45px;
}

.ifow-mobile-contact p {
    max-width: 290px;

    margin-bottom: 18px;

    color: var(--ifow-gray-600);

    font-size: 13px;
    line-height: 1.7;
}

.ifow-mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 50px;

    padding: 14px 17px;

    border-radius: var(--ifow-radius-md);

    background: var(--ifow-gradient);
    color: var(--ifow-white);

    font-size: 14px;
    font-weight: var(--ifow-weight-semibold);

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(
            var(--ifow-dark-green-rgb),
            .15
        );
}

.ifow-mobile-contact-btn:hover {
    color: var(--ifow-white);
}

.ifow-mobile-contact-btn span {
    font-size: 17px;
}


/* =========================================================
   HEADER RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .ifow-header .navbar {
        min-height: 70px;
    }

    .ifow-header .navbar-collapse {
        display: none !important;
    }

    .ifow-brand-mark,
    .ifow-mobile-brand .ifow-brand-mark {
        width: 32px;
        height: 32px;

        border-radius: var(--ifow-radius-sm);

        font-size: 16px;
    }

    .ifow-brand-name {
        font-size: 21px;
    }
}


@media (min-width: 992px) {

    .ifow-menu-toggle {
        display: none;
    }
}


@media (max-width: 575.98px) {

    .ifow-header .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .ifow-mobile-menu {
        width: 100%;
    }

    .ifow-mobile-menu .offcanvas-header {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ifow-mobile-menu .offcanvas-body {
        padding-right: 20px;
        padding-left: 20px;
    }
}


/* =========================================================
   FOOTER
   ========================================================= */

   .ifow-footer {
    position: relative;

    padding: 90px 0 0;

    background: var(--ifow-black);
    color: var(--ifow-white);
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.ifow-footer-brand {
    display: inline-flex;
    align-items: center;

    color: var(--ifow-white);

    font-family: var(--ifow-font-heading);
    font-size: 30px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1;
    letter-spacing: -.055em;

    text-decoration: none;

    transition: color var(--ifow-transition);
}

.ifow-footer-brand:hover {
    color: var(--ifow-green);
}


/* =========================================================
   FOOTER TAGLINE
   ========================================================= */

.ifow-footer-tagline {
    max-width: 400px;

    margin: 20px 0 12px;

    color: var(--ifow-white);

    font-family: var(--ifow-font-heading);
    font-size: 17px;
    font-weight: var(--ifow-weight-semibold);

    line-height: 1.45;
    letter-spacing: -.02em;
}


/* =========================================================
   FOOTER DESCRIPTION
   ========================================================= */

.ifow-footer-description {
    max-width: 410px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, .56);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   FOOTER COLUMN TITLE
   ========================================================= */

.ifow-footer h6 {
    margin-bottom: 20px;

    color: var(--ifow-white);

    font-family: var(--ifow-font-body);
    font-size: 10px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1.3;
    letter-spacing: .14em;
    text-transform: uppercase;
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.ifow-footer ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.ifow-footer li {
    margin-bottom: 11px;
}

.ifow-footer li a {
    color: rgba(255, 255, 255, .56);

    font-size: 13px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color var(--ifow-transition),
        padding-left var(--ifow-transition);
}

.ifow-footer li a:hover {
    padding-left: 3px;

    color: var(--ifow-green);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.ifow-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 75px;

    padding: 24px 0;

    border-top: 1px solid rgba(255, 255, 255, .09);

    color: rgba(255, 255, 255, .40);

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   FOOTER LEGAL LINKS
   ========================================================= */

.ifow-footer-bottom div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.ifow-footer-bottom a {
    color: rgba(255, 255, 255, .46);

    text-decoration: none;

    transition: color var(--ifow-transition);
}

.ifow-footer-bottom a:hover {
    color: var(--ifow-green);
}


/* =========================================================
   FOOTER GREEN ACCENT
   ========================================================= */

.ifow-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(118, 201, 0, .45) 50%,
        transparent 100%
    );
}


/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .ifow-footer {
        padding-top: 75px;
    }

    .ifow-footer-bottom {
        margin-top: 60px;
    }
}


@media (max-width: 767.98px) {

    .ifow-footer {
        padding-top: 65px;
    }

    .ifow-footer-bottom {
        align-items: flex-start;
        flex-direction: column;

        margin-top: 50px;
    }

    .ifow-footer-description {
        max-width: 100%;
    }
}


@media (max-width: 575.98px) {

    .ifow-footer {
        padding-top: 55px;
    }

    .ifow-footer-bottom {
        padding: 20px 0;
    }

    .ifow-footer-bottom div {
        gap: 14px;
    }
}


/* =========================================================
   HERO
   ========================================================= */

   .ifow-hero {
    position: relative;

    overflow: hidden;

    padding: 120px 0 125px;

    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(var(--ifow-green-rgb), .09),
            transparent 34%
        ),
        var(--ifow-white);
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.ifow-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 24px;

    color: var(--ifow-dark-green);

    font-family: var(--ifow-font-body);
    font-size: 11px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1.2;
    letter-spacing: .16em;
}

.ifow-hero-eyebrow span {
    width: 28px;
    height: 2px;

    flex: 0 0 auto;

    border-radius: var(--ifow-radius-pill);

    background: var(--ifow-gradient);
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.ifow-hero-title {
    max-width: 780px;

    margin: 0;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: var(--ifow-weight-bold);

    line-height: .96;
    letter-spacing: -.065em;
}

.ifow-hero-title span {
    display: block;

    background: var(--ifow-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.ifow-hero-description {
    max-width: 610px;

    margin: 30px 0 36px;

    color: var(--ifow-gray-600);

    font-family: var(--ifow-font-body);
    font-size: 17px;
    font-weight: var(--ifow-weight-regular);

    line-height: 1.8;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.ifow-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/*
 * The Hero now uses the common PART 03 button system.
 *
 * No separate .ifow-btn-primary /
 * .ifow-btn-secondary definitions here.
 */


/* =========================================================
   HERO NETWORK
   ========================================================= */

.ifow-hero-network {
    position: relative;

    width: 100%;
    max-width: 500px;

    height: 460px;

    margin: 0 auto;
}


/* =========================================================
   NETWORK CORE
   ========================================================= */

.ifow-network-core {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 145px;
    height: 145px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(
        var(--ifow-dark-green-rgb),
        .18
    );

    border-radius: 50%;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 25px 70px rgba(17,17,17,.10),
        0 0 0 16px rgba(
            var(--ifow-green-rgb),
            .04
        );
}

.ifow-network-core strong {
    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: 24px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1;
    letter-spacing: -.05em;
}

.ifow-network-core small {
    margin-top: 6px;

    color: var(--ifow-dark-green);

    font-family: var(--ifow-font-body);
    font-size: 8px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1;
    letter-spacing: .15em;
}


/* =========================================================
   NETWORK LINES
   ========================================================= */

.ifow-network-line {
    position: absolute;

    z-index: 1;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(
            var(--ifow-dark-green-rgb),
            .32
        ),
        transparent
    );

    transform-origin: left center;
}

.line-one {
    width: 190px;

    top: 35%;
    left: 52%;

    transform: rotate(-25deg);
}

.line-two {
    width: 190px;

    top: 50%;
    left: 50%;

    transform: rotate(0deg);
}

.line-three {
    width: 190px;

    top: 65%;
    left: 52%;

    transform: rotate(25deg);
}


/* =========================================================
   NETWORK NODES
   ========================================================= */

.ifow-network-node {
    position: absolute;

    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 135px;
    min-height: 72px;

    padding: 13px 16px;

    border: 1px solid var(--ifow-border);

    border-radius: var(--ifow-radius-md);

    background: rgba(255,255,255,.95);

    box-shadow: var(--ifow-shadow-sm);

    transition:
        border-color var(--ifow-transition),
        box-shadow var(--ifow-transition),
        transform var(--ifow-transition);
}

.ifow-network-node:hover {
    border-color: rgba(
        var(--ifow-green-rgb),
        .28
    );

    box-shadow: var(--ifow-shadow-md);

    transform: translateY(-3px);
}

.ifow-network-node strong {
    color: var(--ifow-black);

    font-family: var(--ifow-font-body);
    font-size: 12px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1.2;
}

.ifow-network-node small {
    margin-top: 4px;

    color: var(--ifow-gray-500);

    font-family: var(--ifow-font-body);
    font-size: 8px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1.2;
    letter-spacing: .10em;
}


/* =========================================================
   NETWORK NODE POSITIONS
   ========================================================= */

.node-one {
    top: 8%;
    right: 0;
}

.node-two {
    top: 43%;
    right: -8px;
}

.node-three {
    bottom: 8%;
    right: 0;
}


/* =========================================================
   NETWORK DOTS
   ========================================================= */

.ifow-network-dot {
    position: absolute;

    z-index: 4;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--ifow-green);

    box-shadow:
        0 0 0 5px rgba(
            var(--ifow-green-rgb),
            .10
        );
}

.dot-one {
    top: 28%;
    right: 35%;
}

.dot-two {
    top: 50%;
    right: 34%;
}

.dot-three {
    top: 72%;
    right: 35%;
}


/* =========================================================
   HERO SUBTLE GRID
   ========================================================= */

.ifow-hero::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 45%;
    height: 100%;

    opacity: .28;

    background-image:
        linear-gradient(
            rgba(17,17,17,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17,17,17,.035) 1px,
            transparent 1px
        );

    background-size: 38px 38px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 30%
        );

    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent,
            black 30%
        );

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT ABOVE DECORATION
   ========================================================= */

.ifow-hero .container,
.ifow-hero .row,
.ifow-hero .col-lg-7,
.ifow-hero .col-lg-5 {
    position: relative;

    z-index: 2;
}


/* =========================================================
   HERO RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {

    .ifow-hero-title {
        font-size: clamp(3.4rem, 6vw, 5.7rem);
    }

    .ifow-hero-network {
        max-width: 460px;
    }
}


@media (max-width: 991.98px) {

    .ifow-hero {
        padding: 90px 0 85px;
    }

    .ifow-hero-network {
        height: 390px;

        margin-top: 35px;
    }

    .ifow-network-node {
        right: 2%;
    }

    .ifow-hero::after {
        width: 65%;
    }
}


@media (max-width: 767.98px) {

    .ifow-hero {
        padding: 75px 0 70px;
    }

    .ifow-hero-title {
        font-size: clamp(3rem, 12vw, 4.6rem);

        letter-spacing: -.055em;
    }

    .ifow-hero-description {
        font-size: 16px;
    }

    .ifow-hero-network {
        height: 350px;
    }

    .ifow-hero::after {
        width: 100%;
    }
}


@media (max-width: 575.98px) {

    .ifow-hero {
        padding: 65px 0 60px;
    }

    .ifow-hero-eyebrow {
        font-size: 10px;
        letter-spacing: .13em;
    }

    .ifow-hero-title {
        font-size: clamp(2.9rem, 14vw, 4rem);
    }

    .ifow-hero-description {
        margin-top: 24px;

        font-size: 15px;
        line-height: 1.75;
    }

    .ifow-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ifow-hero-actions .ifow-btn {
        width: 100%;
    }

    .ifow-hero-network {
        height: 320px;
    }

    .ifow-network-core {
        width: 115px;
        height: 115px;
    }

    .ifow-network-core strong {
        font-size: 20px;
    }

    .ifow-network-node {
        width: 105px;
        min-height: 62px;

        padding: 10px 12px;
    }

    .ifow-network-node strong {
        font-size: 10px;
    }

    .ifow-network-node small {
        font-size: 7px;
    }

    .ifow-network-line {
        width: 130px;
    }

    .ifow-network-dot {
        width: 6px;
        height: 6px;
    }
}


/* =========================================================
   INTRO SECTION
   ========================================================= */

   .ifow-intro {
    position: relative;
    overflow: hidden;

    padding: 120px 0;

    border-top: 1px solid var(--ifow-border-light);

    background: var(--ifow-bg-soft);
}


/* =========================================================
   INTRO LABEL
   ========================================================= */

.ifow-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: var(--ifow-dark-green);

    font-family: var(--ifow-font-body);
    font-size: 10px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1.3;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ifow-section-label::before {
    content: "";

    width: 26px;
    height: 2px;

    flex: 0 0 auto;

    border-radius: var(--ifow-radius-pill);

    background: var(--ifow-gradient);
}


/* =========================================================
   INTRO TITLE
   ========================================================= */

.ifow-intro-title {
    max-width: 850px;

    margin: 0;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: var(--ifow-weight-bold);

    line-height: 1.02;
    letter-spacing: -.055em;
}


/* =========================================================
   INTRO TEXT
   ========================================================= */

.ifow-intro-text {
    max-width: 430px;

    margin: 48px 0 0;

    color: var(--ifow-gray-600);

    font-family: var(--ifow-font-body);
    font-size: 15px;
    font-weight: var(--ifow-weight-regular);

    line-height: 1.85;
}


/* =========================================================
   INTRO ACCENT
   ========================================================= */

.ifow-intro::after {
    content: "";

    position: absolute;

    right: 7%;
    bottom: 0;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(
        var(--ifow-green-rgb),
        .08
    );

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   INTRO RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .ifow-intro {
        padding: 95px 0;
    }

    .ifow-intro-text {
        margin-top: 32px;
    }
}


@media (max-width: 767.98px) {

    .ifow-intro {
        padding: 80px 0;
    }

    .ifow-intro-title {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .ifow-intro-text {
        max-width: 100%;

        margin-top: 26px;

        font-size: 14px;
    }

    .ifow-intro::after {
        right: -70px;
        bottom: -70px;

        width: 160px;
        height: 160px;
    }
}


@media (max-width: 575.98px) {

    .ifow-intro {
        padding: 65px 0;
    }

    .ifow-section-label {
        font-size: 9px;
        letter-spacing: .13em;
    }

    .ifow-intro-title {
        letter-spacing: -.045em;
    }
}

/* =========================================================
   IFOW DESIGN SYSTEM
   PART 10 — UTILITIES / ACCESSIBILITY / FINAL RESPONSIVE
   ========================================================= */


/* =========================================================
   TEXT UTILITIES
   ========================================================= */

   .ifow-text-black {
    color: var(--ifow-black) !important;
}

.ifow-text-white {
    color: var(--ifow-white) !important;
}

.ifow-text-green {
    color: var(--ifow-dark-green) !important;
}

.ifow-text-muted {
    color: var(--ifow-gray-600) !important;
}

.ifow-text-light {
    color: var(--ifow-gray-400) !important;
}


/* =========================================================
   FONT UTILITIES
   ========================================================= */

.ifow-font-heading {
    font-family: var(--ifow-font-heading) !important;
}

.ifow-font-body {
    font-family: var(--ifow-font-body) !important;
}

.ifow-fw-medium {
    font-weight: var(--ifow-weight-medium) !important;
}

.ifow-fw-semibold {
    font-weight: var(--ifow-weight-semibold) !important;
}

.ifow-fw-bold {
    font-weight: var(--ifow-weight-bold) !important;
}


/* =========================================================
   DISPLAY UTILITIES
   ========================================================= */

.ifow-hidden {
    display: none !important;
}

.ifow-visible {
    display: block !important;
}

.ifow-flex {
    display: flex !important;
}

.ifow-inline-flex {
    display: inline-flex !important;
}


/* =========================================================
   FLEX UTILITIES
   ========================================================= */

.ifow-align-center {
    align-items: center !important;
}

.ifow-justify-center {
    justify-content: center !important;
}

.ifow-justify-between {
    justify-content: space-between !important;
}

.ifow-flex-wrap {
    flex-wrap: wrap !important;
}


/* =========================================================
   WIDTH UTILITIES
   ========================================================= */

.ifow-w-full {
    width: 100% !important;
}

.ifow-max-sm {
    max-width: 560px !important;
}

.ifow-max-md {
    max-width: 760px !important;
}

.ifow-max-lg {
    max-width: 960px !important;
}

.ifow-max-xl {
    max-width: 1200px !important;
}


/* =========================================================
   TEXT ALIGNMENT
   ========================================================= */

.ifow-text-start {
    text-align: left !important;
}

.ifow-text-center {
    text-align: center !important;
}

.ifow-text-end {
    text-align: right !important;
}


/* =========================================================
   RADIUS UTILITIES
   ========================================================= */

.ifow-radius-sm {
    border-radius: var(--ifow-radius-sm) !important;
}

.ifow-radius-md {
    border-radius: var(--ifow-radius-md) !important;
}

.ifow-radius-lg {
    border-radius: var(--ifow-radius-lg) !important;
}

.ifow-radius-xl {
    border-radius: var(--ifow-radius-xl) !important;
}

.ifow-radius-pill {
    border-radius: var(--ifow-radius-pill) !important;
}


/* =========================================================
   SHADOW UTILITIES
   ========================================================= */

.ifow-shadow-sm {
    box-shadow: var(--ifow-shadow-sm) !important;
}

.ifow-shadow-md {
    box-shadow: var(--ifow-shadow-md) !important;
}

.ifow-shadow-lg {
    box-shadow: var(--ifow-shadow-lg) !important;
}

.ifow-shadow-none {
    box-shadow: none !important;
}


/* =========================================================
   BACKGROUND UTILITIES
   ========================================================= */

.ifow-bg-white {
    background: var(--ifow-white) !important;
}

.ifow-bg-soft {
    background: var(--ifow-bg-soft) !important;
}

.ifow-bg-muted {
    background: var(--ifow-bg-muted) !important;
}

.ifow-bg-dark {
    background: var(--ifow-black) !important;
}

.ifow-bg-gradient {
    background: var(--ifow-gradient) !important;
}


/* =========================================================
   BORDER UTILITIES
   ========================================================= */

.ifow-border {
    border: 1px solid var(--ifow-border) !important;
}

.ifow-border-none {
    border: 0 !important;
}


/* =========================================================
   OVERFLOW
   ========================================================= */

.ifow-overflow-hidden {
    overflow: hidden !important;
}

.ifow-overflow-visible {
    overflow: visible !important;
}


/* =========================================================
   POSITION
   ========================================================= */

.ifow-relative {
    position: relative !important;
}

.ifow-absolute {
    position: absolute !important;
}


/* =========================================================
   GRADIENT ACCENT LINE
   ========================================================= */

.ifow-accent-line {
    display: block;

    width: 42px;
    height: 2px;

    border-radius: var(--ifow-radius-pill);

    background: var(--ifow-gradient);
}


/* =========================================================
   EXTERNAL LINK INDICATOR
   ========================================================= */

.ifow-external::after {
    content: "↗";

    display: inline-block;

    margin-left: 5px;

    font-size: .9em;

    transition:
        transform var(--ifow-transition);
}

.ifow-external:hover::after {
    transform: translate(2px, -2px);
}


/* =========================================================
   SCREEN READER ONLY
   ========================================================= */

.ifow-sr-only {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;

    white-space: nowrap !important;

    border: 0 !important;
}


/* =========================================================
   SKIP LINK
   ========================================================= */

.ifow-skip-link {
    position: fixed;

    top: 10px;
    left: 10px;

    z-index: 9999;

    padding: 12px 18px;

    border-radius: var(--ifow-radius-md);

    background: var(--ifow-black);
    color: var(--ifow-white);

    font-size: 13px;
    font-weight: var(--ifow-weight-semibold);

    text-decoration: none;

    transform: translateY(-150%);

    transition:
        transform var(--ifow-transition);
}

.ifow-skip-link:focus {
    transform: translateY(0);
}


/* =========================================================
   PAGE LOADING STATE
   ========================================================= */

.ifow-page-loading {
    overflow: hidden;
}

.ifow-page-loading::before {
    content: "";

    position: fixed;

    inset: 0;

    z-index: 9998;

    background: var(--ifow-white);
}


/* =========================================================
   TOUCH TARGET
   ========================================================= */

.ifow-touch-target {
    min-width: 44px;
    min-height: 44px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ifow-network-node:hover,
    .ifow-btn:hover,
    .ifow-header-cta:hover {
        transform: none;
    }
}


/* =========================================================
   RESPONSIVE TEXT
   ========================================================= */

@media (max-width: 767.98px) {

    .ifow-text-md-start {
        text-align: left !important;
    }

    .ifow-text-md-center {
        text-align: center !important;
    }

    .ifow-text-md-end {
        text-align: right !important;
    }
}


/* =========================================================
   MOBILE ONLY
   ========================================================= */

@media (max-width: 575.98px) {

    .ifow-mobile-hidden {
        display: none !important;
    }

    .ifow-mobile-full {
        width: 100% !important;
    }
}


/* =========================================================
   DESKTOP ONLY
   ========================================================= */

@media (min-width: 992px) {

    .ifow-desktop-hidden {
        display: none !important;
    }
}


/* =========================================================
   PRINT
   ========================================================= */

@media print {

    .ifow-header,
    .ifow-footer,
    .ifow-btn,
    .ifow-messages {
        display: none !important;
    }

    .ifow-section {
        padding: 30px 0 !important;
    }

    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
}

/* =========================================================
   IFOW HOMEPAGE
   PART 11 — TECHNOLOGY PORTFOLIO
   ========================================================= */


/* =========================================================
   PORTFOLIO GRID
   ========================================================= */

   .ifow-portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   PORTFOLIO CARD
   ========================================================= */

.ifow-portfolio-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;

    padding: 32px;

    overflow: hidden;

    border: 1px solid var(--ifow-border);

    border-radius: var(--ifow-radius-xl);

    background: var(--ifow-white);

    box-shadow: var(--ifow-shadow-sm);

    text-decoration: none;

    transition:
        transform var(--ifow-transition-slow),
        border-color var(--ifow-transition),
        box-shadow var(--ifow-transition);
}

.ifow-portfolio-card:hover {
    border-color: rgba(
        var(--ifow-green-rgb),
        .28
    );

    box-shadow: var(--ifow-shadow-lg);

    transform: translateY(-5px);
}


/* =========================================================
   PORTFOLIO CARD TOP
   ========================================================= */

.ifow-portfolio-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}


/* =========================================================
   PORTFOLIO LOGO
   ========================================================= */

.ifow-portfolio-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex: 0 0 auto;

    border: 1px solid var(--ifow-border);

    border-radius: var(--ifow-radius-lg);

    background: var(--ifow-bg-soft);

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: 19px;
    font-weight: var(--ifow-weight-bold);

    letter-spacing: -.05em;
}


/* =========================================================
   PORTFOLIO STATUS
   ========================================================= */

.ifow-portfolio-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 11px;

    border: 1px solid rgba(
        var(--ifow-green-rgb),
        .20
    );

    border-radius: var(--ifow-radius-pill);

    background: rgba(
        var(--ifow-green-rgb),
        .06
    );

    color: var(--ifow-dark-green);

    font-size: 10px;
    font-weight: var(--ifow-weight-bold);

    letter-spacing: .08em;
    text-transform: uppercase;
}

.ifow-portfolio-status::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--ifow-green);
}


/* =========================================================
   PORTFOLIO CONTENT
   ========================================================= */

.ifow-portfolio-content {
    margin-top: auto;

    padding-top: 60px;
}

.ifow-portfolio-category {
    margin-bottom: 9px;

    color: var(--ifow-dark-green);

    font-size: 10px;
    font-weight: var(--ifow-weight-bold);

    letter-spacing: .13em;
    text-transform: uppercase;
}

.ifow-portfolio-title {
    margin-bottom: 12px;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: 30px;
    font-weight: var(--ifow-weight-bold);

    line-height: 1.05;
    letter-spacing: -.045em;
}

.ifow-portfolio-description {
    max-width: 500px;

    margin-bottom: 0;

    color: var(--ifow-gray-600);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   PORTFOLIO ARROW
   ========================================================= */

.ifow-portfolio-arrow {
    position: absolute;

    right: 30px;
    bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid var(--ifow-border);

    border-radius: 50%;

    background: var(--ifow-white);

    color: var(--ifow-black);

    font-size: 17px;

    transition:
        background var(--ifow-transition),
        color var(--ifow-transition),
        border-color var(--ifow-transition),
        transform var(--ifow-transition);
}

.ifow-portfolio-card:hover .ifow-portfolio-arrow {
    border-color: transparent;

    background: var(--ifow-gradient);
    color: var(--ifow-white);

    transform: translate(2px, -2px);
}


/* =========================================================
   PORTFOLIO DECORATION
   ========================================================= */

.ifow-portfolio-card::after {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -80px;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(
        var(--ifow-green-rgb),
        .07
    );

    border-radius: 50%;

    pointer-events: none;

    transition:
        transform var(--ifow-transition-slow);
}

.ifow-portfolio-card:hover::after {
    transform: scale(1.12);
}


/* =========================================================
   PORTFOLIO FEATURED CARD
   ========================================================= */

.ifow-portfolio-card-featured {
    grid-column: span 2;

    min-height: 390px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(var(--ifow-green-rgb), .10),
            transparent 30%
        ),
        var(--ifow-white);
}

.ifow-portfolio-card-featured .ifow-portfolio-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}


/* =========================================================
   PORTFOLIO CTA
   ========================================================= */

.ifow-portfolio-footer {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 45px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 767.98px) {

    .ifow-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .ifow-portfolio-card,
    .ifow-portfolio-card-featured {
        grid-column: auto;

        min-height: 300px;

        padding: 25px;
    }

    .ifow-portfolio-card-featured .ifow-portfolio-title {
        font-size: 2.4rem;
    }

    .ifow-portfolio-content {
        padding-top: 45px;
    }

    .ifow-portfolio-arrow {
        right: 24px;
        bottom: 24px;
    }
}

/* =========================================================
   IFOW HOMEPAGE
   PART 12 — BUSINESS VALUE / WHY IFOW
   ========================================================= */


/* =========================================================
   VALUE SECTION
   ========================================================= */

   .ifow-value {
    position: relative;

    padding: 120px 0;

    background: var(--ifow-black);
    color: var(--ifow-white);

    overflow: hidden;
}


/* =========================================================
   VALUE BACKGROUND
   ========================================================= */

.ifow-value::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -180px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(
        var(--ifow-green-rgb),
        .10
    );

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   VALUE HEADER
   ========================================================= */

.ifow-value-header {
    max-width: 780px;

    margin-bottom: 65px;
}

.ifow-value-header .ifow-section-label {
    color: var(--ifow-green);
}

.ifow-value-title {
    margin: 0;

    color: var(--ifow-white);

    font-family: var(--ifow-font-heading);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: var(--ifow-weight-bold);

    line-height: 1;
    letter-spacing: -.055em;
}

.ifow-value-title span {
    background: var(--ifow-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.ifow-value-description {
    max-width: 650px;

    margin: 25px 0 0;

    color: rgba(255,255,255,.58);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   VALUE GRID
   ========================================================= */

.ifow-value-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1px;

    border: 1px solid rgba(255,255,255,.10);

    background: rgba(255,255,255,.10);
}


/* =========================================================
   VALUE CARD
   ========================================================= */

.ifow-value-card {
    position: relative;

    min-height: 300px;

    padding: 35px;

    background: var(--ifow-black);

    transition:
        background var(--ifow-transition),
        transform var(--ifow-transition);
}

.ifow-value-card:hover {
    background: #151515;
}


/* =========================================================
   VALUE NUMBER
   ========================================================= */

.ifow-value-number {
    margin-bottom: 65px;

    color: rgba(255,255,255,.22);

    font-family: var(--ifow-font-heading);
    font-size: 13px;
    font-weight: var(--ifow-weight-semibold);

    letter-spacing: .10em;
}


/* =========================================================
   VALUE ICON
   ========================================================= */

.ifow-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin-bottom: 24px;

    border: 1px solid rgba(
        var(--ifow-green-rgb),
        .25
    );

    border-radius: var(--ifow-radius-md);

    background: rgba(
        var(--ifow-green-rgb),
        .07
    );

    color: var(--ifow-green);

    font-family: var(--ifow-font-heading);
    font-size: 14px;
    font-weight: var(--ifow-weight-bold);
}


/* =========================================================
   VALUE CARD TITLE
   ========================================================= */

.ifow-value-card h3 {
    margin-bottom: 12px;

    color: var(--ifow-white);

    font-family: var(--ifow-font-heading);
    font-size: 24px;
    font-weight: var(--ifow-weight-semibold);

    line-height: 1.1;
    letter-spacing: -.035em;
}


/* =========================================================
   VALUE CARD TEXT
   ========================================================= */

.ifow-value-card p {
    max-width: 330px;

    margin: 0;

    color: rgba(255,255,255,.52);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   VALUE BOTTOM STATEMENT
   ========================================================= */

.ifow-value-statement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    margin-top: 65px;
    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,.10);
}

.ifow-value-statement p {
    max-width: 620px;

    margin: 0;

    color: rgba(255,255,255,.68);

    font-family: var(--ifow-font-heading);
    font-size: 20px;
    font-weight: var(--ifow-weight-medium);

    line-height: 1.45;
    letter-spacing: -.025em;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .ifow-value {
        padding: 95px 0;
    }

    .ifow-value-grid {
        grid-template-columns: 1fr;
    }

    .ifow-value-card {
        min-height: 250px;
    }

    .ifow-value-number {
        margin-bottom: 45px;
    }

    .ifow-value-statement {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 575.98px) {

    .ifow-value {
        padding: 70px 0;
    }

    .ifow-value-header {
        margin-bottom: 45px;
    }

    .ifow-value-card {
        min-height: auto;

        padding: 28px;
    }

    .ifow-value-number {
        margin-bottom: 35px;
    }

    .ifow-value-card h3 {
        font-size: 22px;
    }

    .ifow-value-statement {
        margin-top: 45px;
    }

    .ifow-value-statement p {
        font-size: 18px;
    }
}

/* =========================================================
   IFOW HOMEPAGE
   PART 13 — INVESTOR / PARTNERSHIP CTA
   ========================================================= */


/* =========================================================
   INVESTOR CTA
   ========================================================= */

   .ifow-investor {
    position: relative;

    padding: 125px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(var(--ifow-green-rgb), .12),
            transparent 32%
        ),
        var(--ifow-bg-soft);
}


/* =========================================================
   INVESTOR CONTENT
   ========================================================= */

.ifow-investor-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}

.ifow-investor-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: var(--ifow-dark-green);

    font-size: 10px;
    font-weight: var(--ifow-weight-bold);

    letter-spacing: .16em;
    text-transform: uppercase;
}

.ifow-investor-label::before {
    content: "";

    width: 28px;
    height: 2px;

    border-radius: var(--ifow-radius-pill);

    background: var(--ifow-gradient);
}


/* =========================================================
   INVESTOR TITLE
   ========================================================= */

.ifow-investor-title {
    max-width: 820px;

    margin: 0;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: clamp(3rem, 5.5vw, 5.8rem);
    font-weight: var(--ifow-weight-bold);

    line-height: .98;
    letter-spacing: -.065em;
}

.ifow-investor-title span {
    display: block;

    background: var(--ifow-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================================
   INVESTOR DESCRIPTION
   ========================================================= */

.ifow-investor-description {
    max-width: 620px;

    margin: 28px 0 34px;

    color: var(--ifow-gray-600);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   INVESTOR ACTIONS
   ========================================================= */

.ifow-investor-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   INVESTOR DECORATIVE ORBIT
   ========================================================= */

.ifow-investor-orbit {
    position: absolute;

    top: 50%;
    right: -110px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(
        var(--ifow-green-rgb),
        .10
    );

    border-radius: 50%;

    transform: translateY(-50%);

    pointer-events: none;
}

.ifow-investor-orbit::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 210px;
    height: 210px;

    border: 1px solid rgba(
        var(--ifow-green-rgb),
        .13
    );

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.ifow-investor-orbit::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--ifow-green);

    box-shadow:
        0 0 0 7px rgba(
            var(--ifow-green-rgb),
            .08
        ),
        0 0 30px rgba(
            var(--ifow-green-rgb),
            .30
        );

    transform: translate(-50%, -50%);
}


/* =========================================================
   INVESTOR SUPPORT
   ========================================================= */

.ifow-investor-support {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 28px;

    color: var(--ifow-gray-500);

    font-size: 11px;
    line-height: 1.5;
}

.ifow-investor-support::before {
    content: "";

    width: 6px;
    height: 6px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--ifow-green);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .ifow-investor {
        padding: 95px 0;
    }

    .ifow-investor-orbit {
        right: -220px;

        width: 400px;
        height: 400px;

        opacity: .65;
    }
}


@media (max-width: 767.98px) {

    .ifow-investor {
        padding: 80px 0;
    }

    .ifow-investor-title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .ifow-investor-description {
        font-size: 14px;
    }

    .ifow-investor-orbit {
        top: auto;
        right: -170px;
        bottom: -170px;

        width: 330px;
        height: 330px;

        transform: none;

        opacity: .55;
    }
}


@media (max-width: 575.98px) {

    .ifow-investor {
        padding: 65px 0;
    }

    .ifow-investor-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ifow-investor-actions .ifow-btn {
        width: 100%;
    }

    .ifow-investor-support {
        align-items: flex-start;
    }
}

/* =========================================================
   IFOW HOMEPAGE
   PART 14 — CONTACT / BUSINESS ENQUIRY
   ========================================================= */


/* =========================================================
   CONTACT SECTION
   ========================================================= */

   .ifow-contact {
    padding: 120px 0;

    background: var(--ifow-white);
}


/* =========================================================
   CONTACT HEADER
   ========================================================= */

.ifow-contact-header {
    max-width: 680px;

    margin-bottom: 55px;
}

.ifow-contact-title {
    max-width: 760px;

    margin: 0;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: var(--ifow-weight-bold);

    line-height: 1;
    letter-spacing: -.055em;
}

.ifow-contact-title span {
    display: block;

    background: var(--ifow-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.ifow-contact-description {
    max-width: 600px;

    margin: 24px 0 0;

    color: var(--ifow-gray-600);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT LAYOUT
   ========================================================= */

.ifow-contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .75fr)
        minmax(0, 1.25fr);

    gap: 70px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.ifow-contact-info {
    padding-top: 10px;
}

.ifow-contact-info-title {
    margin-bottom: 14px;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: 24px;
    font-weight: var(--ifow-weight-semibold);

    letter-spacing: -.035em;
}

.ifow-contact-info-text {
    max-width: 360px;

    margin-bottom: 35px;

    color: var(--ifow-gray-600);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT OPTIONS
   ========================================================= */

.ifow-contact-options {
    display: flex;
    flex-direction: column;

    border-top: 1px solid var(--ifow-border);
}

.ifow-contact-option {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid var(--ifow-border);

    color: var(--ifow-black);

    font-size: 13px;
    font-weight: var(--ifow-weight-medium);

    text-decoration: none;

    transition:
        color var(--ifow-transition),
        padding-left var(--ifow-transition);
}

.ifow-contact-option:hover {
    padding-left: 5px;

    color: var(--ifow-dark-green);
}

.ifow-contact-option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 auto;

    border: 1px solid var(--ifow-border);

    border-radius: var(--ifow-radius-md);

    background: var(--ifow-bg-soft);

    font-size: 11px;
}


/* =========================================================
   CONTACT FORM CARD
   ========================================================= */

.ifow-contact-form {
    padding: 38px;

    border: 1px solid var(--ifow-border);

    border-radius: var(--ifow-radius-xl);

    background: var(--ifow-bg-soft);

    box-shadow: var(--ifow-shadow-sm);
}

.ifow-contact-form-title {
    margin-bottom: 7px;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: 25px;
    font-weight: var(--ifow-weight-semibold);

    letter-spacing: -.035em;
}

.ifow-contact-form-description {
    margin-bottom: 28px;

    color: var(--ifow-gray-500);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT FORM GRID
   ========================================================= */

.ifow-contact-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.ifow-contact-form-full {
    grid-column: 1 / -1;
}


/* =========================================================
   CONTACT FORM FOOTER
   ========================================================= */

.ifow-contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 25px;
}

.ifow-contact-note {
    max-width: 300px;

    margin: 0;

    color: var(--ifow-gray-500);

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .ifow-contact {
        padding: 95px 0;
    }

    .ifow-contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .ifow-contact-info-text {
        max-width: 600px;
    }
}


@media (max-width: 767.98px) {

    .ifow-contact {
        padding: 80px 0;
    }

    .ifow-contact-form {
        padding: 28px;
    }

    .ifow-contact-form-grid {
        grid-template-columns: 1fr;
    }

    .ifow-contact-form-full {
        grid-column: auto;
    }

    .ifow-contact-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .ifow-contact-form-footer .ifow-btn {
        width: 100%;
    }
}


@media (max-width: 575.98px) {

    .ifow-contact {
        padding: 65px 0;
    }

    .ifow-contact-form {
        padding: 22px;
    }

    .ifow-contact-title {
        font-size: clamp(2.7rem, 12vw, 4rem);
    }
}

/* =========================================================
   IFOW INNER PAGES
   PART 17 — PORTFOLIO DETAILS
   ========================================================= */

   .ifow-portfolio-detail {
    padding: 45px;

    border: 1px solid var(--ifow-border);

    border-radius: var(--ifow-radius-xl);

    background: var(--ifow-white);

    box-shadow: var(--ifow-shadow-sm);
}

.ifow-section-light .ifow-portfolio-detail {
    background: var(--ifow-white);
}

.ifow-portfolio-detail-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 55px;
}

.ifow-portfolio-detail-title {
    margin: 8px 0 0;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: var(--ifow-weight-bold);

    line-height: .95;
    letter-spacing: -.06em;
}

.ifow-portfolio-detail-lead {
    max-width: 760px;

    margin-bottom: 20px;

    color: var(--ifow-black);

    font-family: var(--ifow-font-heading);
    font-size: 22px;
    font-weight: var(--ifow-weight-medium);

    line-height: 1.45;
    letter-spacing: -.025em;
}

.ifow-portfolio-detail-text {
    max-width: 700px;

    margin: 0;

    color: var(--ifow-gray-600);

    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 767.98px) {

    .ifow-portfolio-detail {
        padding: 28px;
    }

    .ifow-portfolio-detail-top {
        flex-direction: column;

        margin-bottom: 40px;
    }

    .ifow-portfolio-detail-lead {
        font-size: 19px;
    }

}


/* =========================================================
   FORM VALIDATION
   ========================================================= */

.ifow-form-error {
    margin-top: 6px;

    color: #b42318;

    font-size: 11px;
    line-height: 1.5;
}

.ifow-form-control.is-invalid,
.ifow-form-select.is-invalid {
    border-color: #b42318;
}

.ifow-form-control.is-invalid:focus,
.ifow-form-select.is-invalid:focus {
    border-color: #b42318;

    box-shadow:
        0 0 0 3px rgba(180, 35, 24, .08);
}


/* =====================================================
   MOBILE OVERFLOW PROTECTION
   ===================================================== */

   html,
   body {
       max-width: 100%;
       overflow-x: hidden;
   }


/* =====================================================
   404 ERROR PAGE
   ===================================================== */

   .ifow-error-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.ifow-error-content {
    max-width: 760px;
}

.ifow-error-code {
    margin-top: 28px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(7rem, 18vw, 14rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.08em;
}

.ifow-error-content h1 {
    max-width: 720px;
    margin: 36px 0 20px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.ifow-error-content h1 span {
    color: var(--ifow-green);
}

.ifow-error-content p {
    max-width: 560px;
    margin-bottom: 32px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
}

.ifow-error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 767.98px) {

    .ifow-error-page {
        min-height: auto;
        padding: 80px 0;
    }

    .ifow-error-code {
        font-size: 7rem;
    }

    .ifow-error-content h1 {
        font-size: 2.75rem;
    }

    .ifow-error-actions {
        flex-direction: column;
        align-items: flex-start;
    }

}