/* ==========================================================================
   Delta Edge CI - New York On-Site Power
   Commercial & Industrial Distributed Generation
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */

:root {
    /* ---- Brand ramps (Delta Edge CI brand guide) ---- */
    /* Primary Blue */
    --deci-blue-050: #EEFAFE;
    --deci-blue-100: #DAF3FD;
    --deci-blue-500: #33BCF2;
    --deci-blue-600: #1AA6E0;
    --deci-blue-700: #0E87BC;
    /* Accent Green */
    --deci-green-050: #F5FAE9;
    --deci-green-100: #ECF6D6;
    --deci-green-500: #99CC33;
    --deci-green-600: #82B524;
    --deci-green-700: #6B9619;
    /* Neutrals - Ink ramp (refined cool slate) */
    --deci-ink-900: #0E1A24;
    --deci-ink-800: #152633;
    --deci-ink-700: #1E3543;
    --deci-ink-600: #33495A;
    --deci-ink-500: #55697A;
    --deci-ink-400: #8494A1;
    --deci-ink-300: #B4C0C9;
    --deci-ink-200: #D7DEE4;
    --deci-ink-100: #EBEFF2;
    --deci-ink-050: #F6F8FA;

    /* ---- Semantic tokens (mapped to the softer, deeper shades) ---- */
    --deci-primary: #0B7AA6;                       /* actions / CTAs (deepened from blue-700 for AA white-text contrast) */
    --deci-primary-hover: #0A6E96;                 /* darken on hover so white text stays AA (5.7:1); brightening failed at 2.77:1 */
    --deci-primary-light: var(--deci-blue-100);   /* soft blue surfaces */
    --deci-accent: var(--deci-green-600);         /* green highlight */
    --deci-accent-hover: var(--deci-green-700);
    --deci-black: var(--deci-ink-900);            /* dark sections (softer than pure black) */
    --deci-black-light: var(--deci-ink-800);
    --deci-white: #FFFFFF;
    --deci-white-soft: rgba(255, 255, 255, 0.82);
    --deci-off-white: var(--deci-ink-050);
    --deci-text: #33414C;                          /* body copy */
    --deci-heading: var(--deci-ink-900);
    --deci-icon: #46586A;
    --deci-text-light: #C4D0D8;                    /* light text on dark */
    --deci-text-muted: #8494A1;

    /* ---- Typography ---- */
    --deci-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --deci-font-head: 'Chakra Petch', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --------------------------------------------------------------------------
   Base & Reset
   -------------------------------------------------------------------------- */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    scrollbar-width: thin;
    scrollbar-color: #1AA6E0 var(--deci-ink-900);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deci-ink-900);
}

::-webkit-scrollbar-thumb {
    background: #1AA6E0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0E87BC;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--deci-font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--deci-text);
    background-color: var(--deci-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--deci-heading);
    font-family: var(--deci-font-head);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive visibility utilities */
.deci-mobile-only {
    display: none;
}

.deci-desktop-only {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Focus Visible (Accessibility)
   -------------------------------------------------------------------------- */

:focus-visible {
    outline: 2px solid var(--deci-primary);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Skip Link (Accessibility)
   -------------------------------------------------------------------------- */

.deci-skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deci-primary);
    color: var(--deci-white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 6px 6px;
    transition: top 0.3s ease;
}

.deci-skip-link:focus {
    top: 0;
}

/* --------------------------------------------------------------------------
   Honeypot (Anti-Spam)
   -------------------------------------------------------------------------- */

.deci-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Global Layout
   -------------------------------------------------------------------------- */

.deci-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.deci-section {
    padding: 100px 0;
}

.deci-section--alt {
    background-color: var(--deci-off-white);
}

.deci-section--dark {
    background-color: var(--deci-black);
    color: var(--deci-text-light);
}

.deci-section--primary-light {
    background-color: var(--deci-primary-light);
}

.deci-section__heading {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--deci-heading);
    margin-bottom: 1rem;
}

.deci-section__heading--center {
    text-align: center;
}

.deci-section__heading--light {
    color: var(--deci-white-soft);
}

.deci-section__line {
    width: 60px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
    margin-bottom: 1.5rem;
}

.deci-section__line--center {
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.deci-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
}

.deci-btn--primary {
    background-color: var(--deci-primary);
    color: var(--deci-white);
    border-color: var(--deci-primary);
}

.deci-btn--primary:hover {
    background-color: var(--deci-primary-hover);
    border-color: var(--deci-primary-hover);
}

.deci-btn--outline {
    background-color: transparent;
    color: var(--deci-white);
    border-color: var(--deci-ink-300);
}

.deci-btn--outline:hover {
    background-color: var(--deci-primary);
    color: var(--deci-white);
    border-color: var(--deci-primary);
}

.deci-btn--full {
    width: 100%;
}

.deci-btn--lg {
    padding: 0.85rem 2.75rem;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Scroll Reveal Animation
   -------------------------------------------------------------------------- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.deci-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.deci-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.deci-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: var(--deci-black);
}

.deci-header__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deci-header__logo {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
}

.deci-header__logo-icon {
    display: flex;
    align-items: center;
    color: var(--deci-white-soft);
    position: relative;
    z-index: 2;
    margin-top: -8px;
}

.deci-header__logo-icon svg {
    width: 44px;
    height: 44px;
}

.deci-header__logo-text {
    display: inline-grid;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

.deci-header__logo-main {
    font-size: 1.375rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    margin-right: -3px;
}

.deci-header__logo-sub {
    display: flex;
    align-items: center;
    font-size: 0.69rem;
    font-weight: 600;
    color: var(--deci-white-soft);
    margin-top: 5px;
}

.deci-header__logo-sub::before,
.deci-header__logo-sub::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--deci-white-soft);
}

.deci-header__logo-sub::before {
    margin-right: 6px;
}

.deci-header__logo-sub::after {
    margin-left: 6px;
}

.deci-header__logo-white {
    color: var(--deci-white-soft);
}

.deci-header__logo-accent {
    color: #1AA6E0;
}

.deci-header__nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 1.5rem;
}

.deci-header__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.deci-header__menu-item {
    margin: 0;
    padding: 0;
}

.deci-header__link {
    color: var(--deci-white-soft);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.deci-header__link:hover {
    color: var(--deci-blue-500);
}

.deci-header__cta {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--deci-primary);
    color: var(--deci-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--deci-primary);
    border-radius: 5px;
    line-height: 1;
    transition: all 0.3s ease;
}

.deci-header__cta:hover {
    background: var(--deci-primary-hover);
    border-color: var(--deci-primary-hover);
}

/* On scroll, keep the CTA solid and signal stickiness with a subtle elevation
   plus a slightly deeper, blurred header bar. */
.deci-header--scrolled {
    background: rgba(14, 26, 36, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.deci-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.deci-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--deci-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --------------------------------------------------------------------------
   Mobile Menu
   -------------------------------------------------------------------------- */

.deci-mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--deci-black);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.deci-mobile-menu--active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.deci-mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background-color: var(--deci-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--deci-white-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deci-mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}

.deci-mobile-menu__link {
    display: block;
    min-width: 260px;
    padding: 0.75rem 2rem;
    background-color: var(--deci-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--deci-white-soft);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.deci-mobile-menu__link:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--deci-white);
}

/* Menu CTA: solid white so it stands out from the nav links */
.deci-mobile-menu__cta {
    background-color: var(--deci-white);
    border-color: var(--deci-white);
    color: var(--deci-ink-900);
}

.deci-mobile-menu__cta:hover {
    background-color: var(--deci-ink-100);
    border-color: var(--deci-ink-100);
    color: var(--deci-ink-900);
}

/* --------------------------------------------------------------------------
   Floating Side Navigation
   -------------------------------------------------------------------------- */

.deci-sidenav {
    position: fixed;
    right: 30px;
    top: 90px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.deci-sidenav__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background: var(--deci-black);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: var(--deci-white);
    text-decoration: none;
    padding: 10px;
}

.deci-sidenav__item:hover {
    background: var(--deci-black-light);
}

.deci-sidenav__item--active::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 10px;
    height: 10px;
    background: #1AA6E0;
    border-radius: 50%;
}

.deci-sidenav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deci-sidenav__icon svg {
    stroke: currentColor;
}

.deci-sidenav__label {
    font-size: 10px;
    font-weight: 500;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-align: center;
}

.deci-sidenav__item--sm .deci-sidenav__label {
    font-size: 8px;
}

/* Side nav visible at 1568px+ (no content overlap) */
@media (min-width: 1568px) {
    .deci-sidenav {
        display: flex;
        right: 10px;
    }

    .deci-header__nav {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.deci-hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Photo layer with branded gradient fallback; the overlay scrim below
       keeps hero text legible over the image. */
    background-color: var(--deci-ink-900);
    background-size: cover;
    background-position: center;
    background-image:
        url('../images/hero.webp'),
        radial-gradient(1100px 620px at 80% -12%, rgba(51, 188, 242, 0.22), transparent 60%),
        radial-gradient(900px 520px at 8% 112%, rgba(153, 204, 51, 0.14), transparent 62%),
        linear-gradient(158deg, var(--deci-ink-900) 0%, var(--deci-ink-800) 52%, var(--deci-ink-900) 100%);
}

/* Contrast scrim + faint diagonal engineering lines (echo the logo's rays).
   The scrim keeps hero text legible whether the background is the
   gradient or a future photo. */
.deci-hero__overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(116deg, transparent 0 44px, rgba(255, 255, 255, 0.018) 44px 45px),
        linear-gradient(90deg, rgba(14, 26, 36, 0.86) 0%, rgba(14, 26, 36, 0.62) 48%, rgba(14, 26, 36, 0.42) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle tech dot-grid */
.deci-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 0;
}

.deci-hero__inner {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.deci-hero__text {
    flex: 0 0 55%;
    color: var(--deci-white-soft);
}

.deci-hero__heading {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--deci-white-soft);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.deci-hero__line {
    display: none;
}

.deci-hero__subheading {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Short mobile-only subheading (shown in the max-1023 block) */
.deci-hero__subheading--mobile {
    display: none;
}

.deci-hero__bullets-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.deci-hero__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

.deci-hero__ico-logo {
    height: 120px;
    width: auto;
}

.deci-hero__bullet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--deci-white-soft);
    font-size: 1rem;
}

.deci-hero__bullet-icon {
    stroke: var(--deci-white-soft);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.deci-hero__learn-more {
    margin-top: 1rem;
}

.deci-hero__mobile-cta {
    display: none;
    margin-top: 1rem;
}

.deci-hero__form-wrap {
    flex: 0 0 40%;
    margin-left: auto;
}

.deci-hero__form-card {
    background-color: var(--deci-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.deci-hero__form-title {
    color: var(--deci-heading);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   Form
   -------------------------------------------------------------------------- */

.deci-form__row {
    display: flex;
    gap: 1rem;
}

.deci-form__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    flex: 1;
}

.deci-form__label {
    color: var(--deci-text);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.deci-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--deci-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--deci-white);
}

.deci-form__input:focus {
    border-color: var(--deci-primary);
    box-shadow: 0 0 0 3px rgba(14, 135, 188, 0.15);
    outline: none;
}

.deci-form__select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--deci-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--deci-white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.deci-form__select:focus {
    border-color: var(--deci-primary);
    box-shadow: 0 0 0 3px rgba(14, 135, 188, 0.15);
    outline: none;
}

.deci-form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--deci-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--deci-white);
    resize: vertical;
}

.deci-form__textarea:focus {
    border-color: var(--deci-primary);
    box-shadow: 0 0 0 3px rgba(14, 135, 188, 0.15);
    outline: none;
}

.deci-form__privacy {
    font-size: 0.75rem;
    color: var(--deci-ink-500);
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: center;
}

.deci-form__error {
    display: block;
    color: #C0392B;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    line-height: 1.4;
}

.deci-form__input[aria-invalid="true"],
.deci-form__select[aria-invalid="true"],
.deci-form__textarea[aria-invalid="true"] {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.deci-form__submit {
    position: relative;
    background-color: var(--deci-black);
    border-color: var(--deci-black);
    color: var(--deci-white);
}

.deci-form__submit:hover {
    background-color: var(--deci-black-light);
    border-color: var(--deci-black-light);
}

.deci-form__submit-text {
    visibility: visible;
}

.deci-form__spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(17, 17, 17, 0.2);
    border-top-color: var(--deci-black);
    border-radius: 50%;
    animation: deci-spin 0.6s linear infinite;
}

@keyframes deci-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.deci-form--loading .deci-form__submit-text {
    visibility: hidden;
}

.deci-form--loading .deci-form__spinner {
    display: block;
}

.deci-form-message {
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.deci-form-message--success {
    color: var(--deci-primary);
    opacity: 1;
}

.deci-form-message--error {
    color: #e74c3c;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Trust Strip
   -------------------------------------------------------------------------- */

.deci-trust {
    background-color: var(--deci-black);
}

.deci-trust__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2.5rem 0;
}

.deci-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.deci-trust__icon {
    width: 64px;
    height: 64px;
    background-color: var(--deci-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--deci-white-soft);
}

.deci-trust__icon svg {
    width: 28px;
    height: 28px;
}

.deci-trust__label {
    color: var(--deci-white-soft);
    font-weight: 600;
    font-size: 0.9rem;
}


/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.deci-about {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--deci-off-white, #F7F7F7);
    padding: 30px 0;
}

.deci-about__inner {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.deci-about__image {
    flex: 0 0 64%;
}

.deci-about__image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.deci-about__card {
    flex: 1;
    background: var(--deci-white);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.deci-about__card .deci-section__heading {
    text-align: left;
    color: var(--deci-heading);
}

.deci-about__card .deci-section__line {
    margin-left: 0;
    width: 100%;
}

.deci-about__body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--deci-text);
    margin: 0 0 1.5rem;
}

.deci-about__body:last-of-type {
    margin-bottom: 1.5rem;
}

.deci-about__btn {
    align-self: flex-start;
    background-color: var(--deci-primary);
    border-color: var(--deci-primary);
    color: var(--deci-white);
}

.deci-about__btn:hover {
    background-color: var(--deci-primary-hover);
    border-color: var(--deci-primary-hover);
}

.deci-about .deci-benefits__grid {
    margin-top: 1.5rem;
}

.deci-about__cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.deci-about .deci-benefits__card {
    background: var(--deci-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.deci-about .deci-benefits__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.deci-about .deci-benefits__title {
    color: var(--deci-heading);
}

.deci-about .deci-benefits__text {
    color: var(--deci-text);
}

/* --------------------------------------------------------------------------
   Benefits
   -------------------------------------------------------------------------- */

.deci-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.deci-benefits__card {
    background-color: var(--deci-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deci-benefits__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.deci-benefits__icon {
    width: 64px;
    height: 64px;
    background-color: var(--deci-white);
    border: 1px solid var(--deci-icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--deci-icon);
    stroke: var(--deci-icon);
}

.deci-benefits__icon svg {
    width: 32px;
    height: 32px;
}

.deci-benefits__title {
    color: var(--deci-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.deci-benefits__text {
    color: var(--deci-text);
    font-size: 1rem;
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Landlords
   -------------------------------------------------------------------------- */

.deci-landlords {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* Diagonal split: dark slate triangle upper-left, fixed photo lower-right */
    background-color: var(--deci-ink-900);
    background-image:
        linear-gradient(135deg, var(--deci-ink-900) 50%, transparent 50.1%),
        url('../images/modular-v2.webp');
    background-size: 100vw 100%, cover;
    background-position: center, center;
    background-attachment: fixed, fixed;
}

.deci-landlords::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.deci-landlords::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 0;
}

.deci-landlords > .deci-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.deci-landlords__heading {
    color: var(--deci-white-soft);
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: left;
    width: 100%;
    max-width: 1400px;
}

.deci-landlords__intro {
    color: var(--deci-white-soft);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 1400px;
    width: 100%;
}

.deci-landlords__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.deci-landlords__intro--mobile {
    display: none;
}

/* Individual item row: icon | text | checkmark */
.deci-landlords__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--deci-white);
    border-radius: 0;
    padding: 1.75rem 1.5rem;
    min-height: 140px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Remove right border on right column items */
.deci-landlords__item:nth-child(even) {
    border-right: none;
}

/* Remove bottom border on last row items */
.deci-landlords__item:nth-child(7),
.deci-landlords__item:nth-child(8) {
    border-bottom: none;
}

.deci-landlords__item:nth-child(1) {
    border-radius: 6px 0 0 0;
}

.deci-landlords__item:nth-child(2) {
    border-radius: 0 6px 0 0;
}

.deci-landlords__item:nth-child(7) {
    border-radius: 0 0 0 6px;
}

.deci-landlords__item:nth-child(8) {
    border-radius: 0 0 6px 0;
}

.deci-landlords__item-icon {
    width: 64px;
    height: 64px;
    background-color: var(--deci-white);
    border: 1px solid var(--deci-icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--deci-icon);
}

.deci-landlords__item-icon svg {
    width: 28px;
    height: 28px;
}

.deci-landlords__item-text {
    flex: 1;
    min-width: 0;
}

.deci-landlords__item-title {
    color: var(--deci-black);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.deci-landlords__item-desc {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.deci-landlords__item-check {
    display: none;
}

.deci-landlords__cta {
    text-align: right;
    margin-top: 16px;
    width: 100%;
    max-width: 1400px;
}

.deci-landlords__cta .deci-btn {
    background-color: transparent;
    border-color: var(--deci-ink-300);
    color: var(--deci-white);
}

.deci-landlords__cta .deci-btn:hover {
    background-color: var(--deci-primary);
    border-color: var(--deci-primary);
    color: var(--deci-white);
}

.deci-landlords__image {
    display: none; /* desktop uses the fixed photo background; shown on mobile */
    width: 100%;
    max-width: 1400px;
    margin: 2rem auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.deci-landlords__image img {
    display: block;
    width: 100%;
    height: auto;
}

.deci-section__line--light {
    background-color: var(--deci-primary);
}

/* --------------------------------------------------------------------------
   Estate Agents - Two Column Layout
   -------------------------------------------------------------------------- */

.deci-agents {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--deci-black);
    padding: 30px 0;
}

/* Main two-column grid */
.deci-agents__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* Left column: heading + flowchart */
.deci-agents__left {
    display: flex;
    flex-direction: column;
}

.deci-agents__left .deci-section__heading {
    color: var(--deci-white-soft);
    margin-bottom: 1rem;
}

.deci-agents__left .deci-section__line {
    background-color: var(--deci-white-soft);
    margin-bottom: 2rem;
}

/* Vertical Flowchart */
.deci-agents__flowchart {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    justify-content: space-between;
    position: relative;
}

/* Single continuous line behind all icons */
.deci-agents__flowchart::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    border-left: 2px dashed rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Individual role item in flowchart */
.deci-agents__role {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    padding: 1rem 0;
}

.deci-agents__role-icon {
    width: 64px;
    height: 64px;
    background-color: var(--deci-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--deci-white-soft);
    position: relative;
    z-index: 2;
}

.deci-agents__role-content h3 {
    color: var(--deci-white-soft);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.deci-agents__role-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

/* Vertical connector line between roles - hidden, using ::before on flowchart instead */
.deci-agents__connector-v {
    display: none;
}

/* Right column: Dark themed card */
.deci-agents__card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.deci-agents__card-title {
    color: var(--deci-white-soft);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
}


.deci-agents__desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.deci-agents__help {
    margin-bottom: 2rem;
}


.deci-agents__help h4 {
    color: var(--deci-white-soft);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.25rem 0;
}

.deci-agents__help-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.deci-agents__help-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.75;
}

.deci-agents__help-list li > span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.deci-agents__help-list li strong {
    color: var(--deci-white-soft);
    font-weight: 600;
}

.deci-agents__help-list li > span > span {
    color: rgba(255, 255, 255, 0.6);
}

.deci-agents__bullet {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deci-agents__bullet::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid rgba(255, 255, 255, 0.75);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.deci-agents__help-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.deci-agents__card .deci-btn {
    display: inline-block;
    align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Serviced Accommodation (Light)
   -------------------------------------------------------------------------- */

.deci-sa {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
    position: relative;
    /* Mirrored diagonal split: fixed photo upper-left, dark slate triangle lower-right */
    background-color: var(--deci-ink-900);
    background-image:
        linear-gradient(135deg, transparent 50%, var(--deci-ink-900) 50.1%),
        url('../images/path-bg.webp');
    background-size: 100vw 100%, cover;
    background-position: center, center;
    background-attachment: fixed, fixed;
}

.deci-sa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.deci-sa::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 0;
}

.deci-sa .deci-container {
    position: relative;
    z-index: 1;
}

.deci-sa .deci-section__line--center {
    margin-left: auto;
    margin-right: auto;
}

/* Horizontal Steps */
.deci-sa__steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.deci-sa__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 200px;
    width: 200px;
}

.deci-sa__step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--deci-white);
    color: var(--deci-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.deci-sa__step-title {
    color: var(--deci-white);
    font-weight: 600;
    font-size: 1.1rem;
    max-width: none;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.deci-sa__connector {
    flex: 1;
    height: 3px;
    border-top: 3px dashed rgba(255, 255, 255, 0.8);
    margin-top: 28px;
}

/* Content: Benefits + Image (swapped) */
.deci-sa__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.deci-sa__image {
    display: grid;
    order: 2;
}

.deci-sa__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deci-sa__benefits {
    order: 1;
    background: var(--deci-white);
    padding: 32px 2.5rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deci-sa__title {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--deci-heading);
    margin: 0 0 1rem 0;
}

.deci-sa__benefits .deci-section__line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
    margin-bottom: 1.5rem;
}

.deci-sa__intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--deci-text);
    margin: 0 0 1.25rem 0;
}

.deci-sa__group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deci-heading);
    margin: calc(1.25rem + 20px) 0 0.75rem 0;
}

.deci-sa__group-title:first-of-type {
    margin-top: 10px;
}

.deci-sa__image img {
    width: 100%;
    height: 100%;
    border-radius: 0 8px 8px 0;
    object-fit: cover;
}

.deci-sa__benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.deci-sa__benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--deci-text);
    font-size: 1rem;
    line-height: 1.75;
}

.deci-sa__check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: transparent;
    border: 1px solid var(--deci-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.deci-sa__check::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--deci-heading);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.deci-sa__cta {
    text-align: right;
    margin-top: 16px;
    width: 100%;
}

.deci-sa__cta .deci-btn {
    background-color: transparent;
    border-color: var(--deci-ink-300);
    color: var(--deci-white);
}

.deci-sa__cta .deci-btn:hover {
    background-color: var(--deci-primary);
    border-color: var(--deci-primary);
    color: var(--deci-white);
}

/* --------------------------------------------------------------------------
   HMO (Dark)
   -------------------------------------------------------------------------- */

.deci-hmo {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--deci-black);
    padding: 30px 0;
}

.deci-hmo .deci-section__line--center {
    margin-left: auto;
    margin-right: auto;
}

.deci-section__line--white {
    background-color: var(--deci-white-soft);
}

/* Horizontal Steps */
.deci-hmo__steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.deci-hmo__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 180px;
    width: 180px;
}

.deci-hmo__step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--deci-white-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.deci-hmo__step-title {
    color: var(--deci-white-soft);
    font-weight: 600;
    font-size: 1.1rem;
    max-width: 160px;
}

.deci-hmo__connector {
    flex: 1;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    margin-top: 32px;
}

/* Content: Benefits + Image (mirrored from SA) */
.deci-hmo__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.deci-hmo__image {
    display: grid;
}

.deci-hmo__image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.deci-hmo__benefits {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deci-hmo__title {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--deci-white-soft);
    margin: 0 0 0.75rem 0;
}

.deci-section__line--light {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
}

.deci-hmo__intro {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.25rem 0;
}

.deci-hmo__group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deci-white-soft);
    margin: calc(1.25rem + 20px) 0 0.75rem 0;
}

.deci-hmo__group-title:first-of-type {
    margin-top: 10px;
}

.deci-hmo__benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.deci-hmo__benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
    padding: 0;
}

.deci-hmo__check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.deci-hmo__check::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid rgba(255, 255, 255, 0.5);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.deci-hmo__cta {
    text-align: center;
}

/* --------------------------------------------------------------------------
   FAQs
   -------------------------------------------------------------------------- */

.deci-faqs {
    background: var(--deci-black);
    padding: 140px 0 180px;
}

.deci-faqs__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.deci-faqs__main {
    max-width: 100%;
}

.deci-faqs .deci-section__heading {
    color: var(--deci-white-soft);
    margin-bottom: 2rem;
}

.deci-faqs__badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Aligns the top of the first badge with the first FAQ item (matches the
       heading block height above the accordion). */
    margin-top: 4.1rem;
}

.deci-faqs__badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.deci-faqs__badge-heading {
    color: var(--deci-white-soft);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.deci-faqs__badge-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.deci-faqs__badge-logo {
    max-width: 160px;
    height: auto;
    margin-top: 1rem;
}

/* Renders a dark monochrome logo as white for the dark badge cards */
.deci-faqs__badge-logo--invert {
    filter: brightness(0) invert(1);
}

.deci-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deci-accordion__item {
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.deci-accordion__item:hover,
.deci-accordion__item:focus-within,
.deci-accordion__item--active {
    background-color: transparent;
}

.deci-accordion__btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: transparent;
    border: none;
    color: var(--deci-white-soft);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.deci-accordion__btn:hover,
.deci-accordion__btn:active {
    color: var(--deci-white-soft);
    background-color: transparent;
}

/* Visible keyboard focus (was previously suppressed with outline:none) */
.deci-accordion__btn:focus-visible {
    color: var(--deci-white-soft);
    outline: 2px solid var(--deci-blue-500);
    outline-offset: 2px;
    border-radius: 4px;
}

.deci-accordion__item--active .deci-accordion__btn {
    color: var(--deci-white-soft);
    background-color: transparent;
}

.deci-accordion__icon {
    color: var(--deci-white-soft);
    font-size: 1.75rem;
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.deci-accordion__item--active .deci-accordion__icon {
    transform: rotate(45deg);
    color: var(--deci-primary);
}

.deci-accordion__body {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    box-sizing: border-box;
}

.deci-accordion__answer {
    padding: 0 1.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.deci-footer {
    background-color: #0A121A;
}

.deci-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr;
    gap: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    align-items: stretch;
}

/* Card base styles */
.deci-footer__card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

/* Company card - left side, full height */
.deci-footer__card--company {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Nav card - middle */
.deci-footer__card--nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.deci-footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.deci-footer__nav-link {
    display: inline-block;
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.deci-footer__nav-link:hover {
    color: var(--deci-white);
}

/* Right column stacks the two smaller cards, filling the row height so all
   three footer columns share an equal height with aligned bottoms. */
.deci-footer__right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.deci-footer__right > .deci-footer__card {
    flex: 1;
}

/* Socials card */
.deci-footer__card--socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Contact card */
.deci-footer__card--contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.deci-footer__brand {
    display: flex;
    flex-direction: column;
}

.deci-footer__logo {
    max-height: 40px;
    margin-bottom: 1rem;
    width: auto;
}

.deci-footer__tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.deci-footer__heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.deci-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deci-footer__menu li {
    margin-bottom: 0.6rem;
}

.deci-footer__link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.deci-footer__link:hover {
    color: var(--deci-white);
}

.deci-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deci-footer__contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.deci-footer__contact-icon {
    color: rgba(255, 255, 255, 0.6);
    stroke: rgba(255, 255, 255, 0.6);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.deci-footer__socials {
    display: flex;
    gap: 1rem;
    margin-top: 0;
}

.deci-footer__social {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.deci-footer__social:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.deci-footer__social svg {
    stroke: currentColor;
    width: 28px;
    height: 28px;
}

.deci-footer__bottom {
    background-color: var(--deci-black);
    padding: 1.5rem 0 2.5rem;
}

.deci-footer__copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.deci-footer__company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
}

.deci-footer__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deci-footer__info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.deci-footer__info-list li:last-child {
    margin-bottom: 0;
}

.deci-footer__info-list strong {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-right: 0.35rem;
}

.deci-footer__info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.deci-footer__info-icon svg {
    stroke: currentColor;
    width: 18px;
    height: 18px;
}

.deci-footer__bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem 1.25rem;
    flex-wrap: wrap;
    text-align: center;
}

.deci-footer__privacy-link {
    display: inline-block;
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.deci-footer__privacy-link:hover {
    color: var(--deci-white);
}

/* Privacy link in form */
.deci-privacy-link {
    color: var(--deci-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.deci-privacy-link:hover,
.deci-privacy-link:focus,
.deci-privacy-link:active {
    color: var(--deci-primary-hover);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* --------------------------------------------------------------------------
   Max 1200px
   -------------------------------------------------------------------------- */

@media (min-width: 1024px) and (max-width: 1400px) {
    .deci-container,
    .deci-header__container {
        max-width: calc(100% - 4rem);
    }

    /* Hero: Center content like mobile */
    .deci-hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .deci-hero__text {
        flex: 1 1 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .deci-hero__bullets {
        display: inline-flex;
        flex-direction: column;
        text-align: left;
    }

    /* Hero: form stacks below the text and stays visible */
    .deci-hero {
        min-height: 0;
        padding: 4.5rem 0 5rem;
    }

    .deci-hero__learn-more {
        display: none;
    }

    .deci-hero__form-wrap {
        flex: 1 1 100%;
        width: 100%;
        max-width: 640px;
        margin: 3rem auto 0;
    }
}

/* --------------------------------------------------------------------------
   Max 1200px - Tablet
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .deci-header__container {
        position: relative;
    }

    .deci-header__nav {
        display: none;
    }

    .deci-header__cta {
        display: none;
    }

    /* Legal/utility pages keep their "Back to Site" button at every width */
    .deci-header__cta--page {
        display: inline-block;
    }

    .deci-header__hamburger {
        display: flex;
    }

    .deci-hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .deci-hero__text {
        flex: 1 1 100%;
    }

    .deci-hero__form-wrap {
        flex: 1 1 100%;
        max-width: 500px;
    }

    .deci-hero__bullets {
        display: inline-flex;
        flex-direction: column;
        text-align: left;
    }

    .deci-hero__line {
        margin-left: auto;
        margin-right: auto;
    }

    .deci-about {
        min-height: auto;
    }

    .deci-about__inner {
        flex-direction: column;
    }

    .deci-about__image {
        flex: 1 1 100%;
    }

    .deci-about__card .deci-section__heading {
        text-align: center;
    }

    .deci-about__card .deci-section__line {
        margin-left: auto;
        margin-right: auto;
    }

    .deci-about__btn {
        align-self: center;
    }

    .deci-landlords {
        min-height: auto;
        padding: 88px 0;
    }

    .deci-landlords__heading {
        margin-bottom: 1.5rem;
    }

    .deci-landlords__content {
        grid-template-columns: 1fr;
    }

    /* Single column: drop the inner right edge, keep a bottom rule between cards */
    .deci-landlords__item {
        border-right: none;
    }

    .deci-landlords__item:nth-child(7) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .deci-landlords__item:nth-child(1) {
        border-radius: 6px 6px 0 0;
    }

    .deci-landlords__item:nth-child(2),
    .deci-landlords__item:nth-child(7) {
        border-radius: 0;
    }

    .deci-landlords__item:nth-child(8) {
        border-radius: 0 0 6px 6px;
    }

    .deci-landlords__cta {
        margin-top: 2.5rem;
    }

    /* Flow section - Tablet responsive */
    .deci-agents {
        min-height: auto;
        padding: 88px 0;
    }

    .deci-agents__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .deci-agents__left {
        order: 1;
    }

    .deci-agents__card {
        order: 2;
    }

    /* Path - Tablet */
    .deci-sa {
        min-height: auto;
        padding: 88px 0;
    }

    .deci-sa__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* HMO - Tablet */
    .deci-hmo {
        min-height: auto;
        padding: 60px 0;
    }

    .deci-hmo__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .deci-hmo__benefits {
        order: 2;
    }

    .deci-hmo__image {
        order: 1;
    }

    .deci-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deci-section {
        padding: 80px 0;
    }
}

/* --------------------------------------------------------------------------
   Max 1024px - Tablets & Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 1023px) {
    /* -- Platform fixes: no fixed backgrounds on mobile, no input auto-zoom -- */
    .deci-hero,
    .deci-landlords,
    .deci-sa,
    .deci-faqs {
        background-attachment: scroll;
    }

    /* The diagonal fixed-photo treatment is desktop-only. On mobile these
       sections fall back to a simple dark surface, and the photos appear as
       normal stacked images below the content. */
    .deci-landlords,
    .deci-sa {
        background-color: var(--deci-ink-900);
        background-image:
            radial-gradient(760px 460px at 88% 4%, rgba(51, 188, 242, 0.14), transparent 60%),
            linear-gradient(160deg, var(--deci-ink-900) 0%, var(--deci-ink-800) 60%, var(--deci-ink-900) 100%);
        background-size: cover;
        background-position: center;
    }

    .deci-form__input,
    .deci-form__select,
    .deci-form__textarea {
        font-size: 1rem;
    }

    /* -- Layout basics -- */
    .deci-container {
        width: 100%;
        max-width: none;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Mobile is the same site, stacked: every section keeps its desktop
       identity and gets room to breathe. */
    .deci-section {
        padding: 72px 0;
    }

    /* -- Header -- */
    .deci-header__container {
        justify-content: space-between;
        align-items: center;
        padding: 0 1.25rem;
        max-width: 100%;
    }

    .deci-header__hamburger {
        align-items: center;
        align-self: center;
    }

    .deci-header__hamburger span {
        background: var(--deci-white);
        width: 28px;
        height: 3px;
    }

    /* -- Hero: natural height, text then form -- */
    .deci-hero {
        min-height: 0;
        height: auto;
        max-height: none;
        overflow: visible;
        padding: 3.5rem 0 4.5rem;
    }

    /* Mobile hero reads left-aligned, like an editorial page */
    .deci-hero__inner {
        flex-direction: column;
        text-align: left;
        gap: 0;
    }

    .deci-hero__text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .deci-hero__heading {
        font-size: 2rem;
    }

    /* Short mobile subheading replaces the full desktop one */
    .deci-hero__subheading--desktop {
        display: none;
    }

    .deci-hero__subheading--mobile {
        display: block;
    }

    .deci-hero__bullets {
        display: inline-flex;
        flex-direction: column;
        text-align: left;
    }

    .deci-hero__learn-more {
        display: none;
    }

    .deci-hero__form-wrap {
        flex: 1 1 100%;
        width: 100%;
        max-width: 560px;
        margin: 2.5rem auto 0;
    }

    .deci-hero__form-card {
        padding: 1.75rem 1.5rem;
    }

    .deci-form__row {
        flex-direction: column;
        gap: 0; /* stacked fields space themselves with margin-bottom, no double gap */
    }

    /* First and last name stay side by side */
    .deci-form__row--name {
        flex-direction: row;
        gap: 0.75rem;
    }

    /* -- Trust strip: 2x2 grid -- */
    .deci-trust__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
        padding: 2.75rem 1.25rem;
        justify-items: center;
        text-align: center;
    }

    /* -- About -- */
    .deci-about {
        min-height: 0;
    }

    .deci-about__inner {
        flex-direction: column;
        gap: 2rem;
    }

    .deci-about__image {
        width: 100%;
    }

    .deci-benefits__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    /* -- Platform: same dark section, cards in one column -- */
    .deci-landlords {
        min-height: 0;
        padding: 80px 0;
    }

    .deci-landlords__item {
        min-height: 0;
        padding: 1.4rem 1.25rem;
    }

    .deci-landlords__item-icon {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }

    .deci-landlords__image {
        display: block;
        width: 100%;
        max-width: 720px;
        margin: 2.25rem auto 0;
    }

    .deci-landlords__image img {
        border-radius: 8px;
    }

    .deci-landlords__cta {
        margin-top: 2rem;
        text-align: center;
    }

    /* -- Flow: flowchart stacks above the card, everything stays -- */
    .deci-agents {
        padding: 80px 0;
    }

    .deci-agents__main {
        gap: 3rem;
    }

    .deci-agents__card {
        padding: 1.75rem 1.4rem;
    }

    /* -- Path: same dark section; steps go vertical -- */
    .deci-sa.deci-section {
        padding: 80px 0;
    }

    /* Winding centered timeline. A 5-column grid keeps the two circle
       columns fixed and centered, with titles hanging outward:
       1 and 3 read to the LEFT of their circle, 2 and 4 to the RIGHT. */
    .deci-sa__steps {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 48px 32px 48px minmax(0, 1fr);
        align-items: center;
        width: 100%;
        max-width: 420px;
        margin: 0 auto 2.5rem;
    }

    /* Promote each step's circle and title directly into the grid */
    .deci-sa__step {
        display: contents;
    }

    .deci-sa__step-num {
        width: 48px;
        height: 48px;
        font-size: 1.05rem;
        margin-bottom: 0;
    }

    .deci-sa__step-title {
        max-width: none;
        font-size: 1rem;
        white-space: normal; /* titles wrap freely in the mobile timeline columns */
    }

    /* Circles: 1 and 3 in the left column, 2 and 4 in the right column */
    .deci-sa__step:nth-child(1) .deci-sa__step-num { grid-area: 1 / 2; }
    .deci-sa__step:nth-child(3) .deci-sa__step-num { grid-area: 3 / 4; }
    .deci-sa__step:nth-child(5) .deci-sa__step-num { grid-area: 5 / 2; }
    .deci-sa__step:nth-child(7) .deci-sa__step-num { grid-area: 7 / 4; }

    /* Titles: 1 and 3 hang left of their circle, 2 and 4 hang right */
    .deci-sa__step:nth-child(1) .deci-sa__step-title,
    .deci-sa__step:nth-child(5) .deci-sa__step-title {
        grid-column: 1;
        justify-self: end;
        text-align: right;
        padding-right: 12px;
    }

    .deci-sa__step:nth-child(1) .deci-sa__step-title { grid-row: 1; }
    .deci-sa__step:nth-child(5) .deci-sa__step-title { grid-row: 5; }

    .deci-sa__step:nth-child(3) .deci-sa__step-title,
    .deci-sa__step:nth-child(7) .deci-sa__step-title {
        grid-column: 5;
        justify-self: start;
        text-align: left;
        padding-left: 12px;
    }

    .deci-sa__step:nth-child(3) .deci-sa__step-title { grid-row: 3; }
    .deci-sa__step:nth-child(7) .deci-sa__step-title { grid-row: 7; }

    /* Dashed S-curves between the circles: drop out of one circle, swing
       across, and curve down onto the next number like a road turn. */
    .deci-sa__connector {
        position: relative;
        grid-column: 2 / 5;
        width: 100%;
        height: 40px;
        border: none;
        margin: 2px 0;
    }

    .deci-sa__connector:nth-child(2) { grid-row: 2; }
    .deci-sa__connector:nth-child(4) { grid-row: 4; }
    .deci-sa__connector:nth-child(6) { grid-row: 6; }

    .deci-sa__connector::before,
    .deci-sa__connector::after {
        content: '';
        position: absolute;
    }

    /* 1 to 2 and 3 to 4: down from the left circle, swing right, then
       curve down onto the next number */
    .deci-sa__connector:nth-child(2)::before,
    .deci-sa__connector:nth-child(6)::before {
        left: 21px;
        top: 0;
        width: 46px;
        height: 19px;
        border-left: 3px dashed rgba(255, 255, 255, 0.45);
        border-bottom: 3px dashed rgba(255, 255, 255, 0.45);
        border-bottom-left-radius: 16px;
    }

    .deci-sa__connector:nth-child(2)::after,
    .deci-sa__connector:nth-child(6)::after {
        right: 21px;
        top: 16px;
        width: 40px;
        height: 22px;
        border-right: 3px dashed rgba(255, 255, 255, 0.45);
        border-top: 3px dashed rgba(255, 255, 255, 0.45);
        border-top-right-radius: 16px;
    }

    /* 2 to 3: the mirrored turn back to the left */
    .deci-sa__connector:nth-child(4)::before {
        right: 21px;
        top: 0;
        width: 46px;
        height: 19px;
        border-right: 3px dashed rgba(255, 255, 255, 0.45);
        border-bottom: 3px dashed rgba(255, 255, 255, 0.45);
        border-bottom-right-radius: 16px;
    }

    .deci-sa__connector:nth-child(4)::after {
        left: 21px;
        top: 16px;
        width: 40px;
        height: 22px;
        border-left: 3px dashed rgba(255, 255, 255, 0.45);
        border-top: 3px dashed rgba(255, 255, 255, 0.45);
        border-top-left-radius: 16px;
    }

    /* No white card on mobile: content sits on the dark section itself */
    .deci-sa__content {
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
        gap: 1.75rem;
    }

    .deci-sa__benefits {
        background: transparent;
        padding: 0;
    }

    .deci-sa__title {
        color: var(--deci-white-soft);
    }

    .deci-sa__intro {
        color: rgba(255, 255, 255, 0.75);
    }

    .deci-sa__group-title {
        color: var(--deci-white-soft);
    }

    .deci-sa__benefits-list li {
        color: rgba(255, 255, 255, 0.78);
    }

    .deci-sa__check {
        border-color: rgba(255, 255, 255, 0.6);
    }

    .deci-sa__check::after {
        border-color: rgba(255, 255, 255, 0.85);
    }

    .deci-sa__image {
        border-radius: 8px;
        overflow: hidden;
    }

    .deci-sa__image img {
        border-radius: 8px;
    }

    .deci-sa__cta {
        margin-top: 2rem;
        text-align: center;
    }

    /* -- FAQs: same dark identity, single column, questions first -- */
    .deci-faqs {
        padding: 80px 0 100px;
    }

    .deci-faqs .deci-section__heading {
        line-height: 1.4;
    }

    .deci-accordion__btn {
        line-height: 1.5;
    }

    .deci-faqs__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .deci-faqs__badges {
        margin-top: 0;
    }

    /* -- Section CTAs: comfortable, centered tap targets -- */
    .deci-landlords .deci-btn,
    .deci-agents .deci-btn,
    .deci-sa .deci-btn {
        display: inline-block;
        width: 100%;
        max-width: 420px;
        text-align: center;
    }

    .deci-btn--primary {
        background-color: var(--deci-primary);
        border-color: var(--deci-primary);
        color: var(--deci-white);
    }

    /* -- Footer -- */
    .deci-footer .deci-footer__inner.deci-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2.5rem 1.25rem;
    }

    .deci-footer__card {
        padding: 1.4rem;
    }

    .deci-footer__card--nav {
        order: -1;
    }

    .deci-footer__nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1.5rem;
    }

    .deci-footer__right {
        gap: 1rem;
    }

    .deci-footer__bottom {
        padding: 1rem 0 4rem;
    }

    .deci-footer__bottom-inner {
        flex-direction: column;
        gap: 0.35rem;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   Hero heading: Keep full size until 748px
   -------------------------------------------------------------------------- */
@media (min-width: 748px) {
    .deci-hero__heading {
        font-size: clamp(2.25rem, 5vw, 3.5rem);
    }
}

/* --------------------------------------------------------------------------
   Hamburger: Match mobile styling at 1024-1200px
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) and (max-width: 1200px) {
    .deci-header__hamburger span {
        background: var(--deci-white);
        width: 28px;
        height: 3px;
    }
}

/* ==========================================================================
   Delta Edge CI - additions (brand accents, LOA button, fine print)
   ========================================================================== */

/* Eyebrow / section kicker */
.deci-eyebrow {
    display: inline-block;
    font-family: var(--deci-font-head);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--deci-primary);
    margin-bottom: 0.85rem;
}
.deci-eyebrow--light { color: var(--deci-blue-500); }
.deci-eyebrow--accent { color: var(--deci-accent); }
/* Platform section's container is a centered flex column; keep the eyebrow
   left-aligned with the heading and intro rather than centered. */
.deci-landlords .deci-eyebrow { align-self: flex-start; }

/* Brand touch: hero bullet ticks in brand blue */
.deci-hero__bullet-icon { stroke: var(--deci-blue-500); }

/* Green accent button (used sparingly, e.g. LOA) */
.deci-btn--accent {
    background-color: var(--deci-accent);
    color: var(--deci-ink-900);   /* dark text on green = 7.2:1 (white failed at 2.45:1) */
    border-color: var(--deci-accent);
}
.deci-btn--accent:hover {
    background-color: var(--deci-accent-hover);
    border-color: var(--deci-accent-hover);
    color: var(--deci-ink-900);
}

/* Legal fine print / indicative-information disclaimer */
.deci-disclaimer {
    font-size: 0.75rem;
    line-height: 1.65;
    color: var(--deci-text-muted);
    max-width: 78ch;
    margin: 0 auto;
}

/* Sticky floating "Download the LOA" button (bottom-right) */
.deci-loa-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    background-color: var(--deci-primary);
    color: var(--deci-white);
    font-family: var(--deci-font-head);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(14, 26, 36, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
    transform: translateY(0);
}
.deci-loa-fab:hover {
    background-color: var(--deci-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(14, 26, 36, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    color: var(--deci-white);
}
/* Hidden when the footer is in view so it never covers the footer LOA button
   or the Privacy Policy link (JS toggles this class). */
.deci-loa-fab--hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(140%);
    pointer-events: none;
}
.deci-loa-fab svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
}
.deci-loa-fab__label small {
    display: block;
    font-family: var(--deci-font-body);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0;
    opacity: 0.82;
}

@media (max-width: 560px) {
    .deci-loa-fab {
        right: 0.85rem;
        bottom: 0.85rem;
        padding: 0.7rem 1rem;
        font-size: 0.78rem;
    }
    .deci-loa-fab__label small { display: none; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .deci-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---- Brand logo images ---- */
.deci-header__logo-img {
    display: block;
    height: 40px;
    width: auto;
}
.deci-footer__logo {
    display: block;
    align-self: flex-start;   /* don't stretch to full column width in the flex card */
    height: 40px;
    max-height: 40px;
    width: auto;
    object-fit: contain;      /* preserve aspect ratio no matter what */
    margin-bottom: 1.4rem;
}
@media (max-width: 768px) {
    .deci-header__logo-img { height: 32px; }
}

/* ---- Hero form subtitle ---- */
.deci-hero__form-sub {
    color: var(--deci-text);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.35rem;
}

/* ---- Form card, optional-field hint, and LOA attach input ---- */
.deci-hero__form-card {
    text-align: left;
}

.deci-form__optional {
    font-weight: 400;
    color: var(--deci-ink-500);
    font-size: 0.85em;
}

.deci-form__file {
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
    color: var(--deci-ink-600);
    cursor: pointer;
}

.deci-form__file::file-selector-button {
    margin-right: 0.75rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--deci-ink-300);
    border-radius: 4px;
    background: var(--deci-ink-050);
    color: var(--deci-ink-700);
    font-family: var(--deci-font-body);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.deci-form__file::file-selector-button:hover {
    background: var(--deci-ink-100);
    border-color: var(--deci-ink-400);
}

.deci-form__hint {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--deci-ink-500);
}

.deci-form__hint-link {
    color: var(--deci-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.deci-form__hint-link:hover {
    color: var(--deci-primary-hover);
}

/* ---- Footer LOA button + disclaimer band ---- */
.deci-footer__loa-btn {
    margin-top: 1.4rem;
}
.deci-footer__disclaimer-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    text-align: center;
}
.deci-footer__disclaimer-wrap .deci-disclaimer {
    color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   Legal pages (privacy.html)
   ========================================================================== */

.deci-legal {
    background: var(--deci-off-white);
    padding: 72px 0 96px;
    min-height: calc(100vh - 160px);
}

.deci-legal__container {
    max-width: 820px;
}

.deci-legal__header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--deci-ink-200);
}

.deci-legal__title {
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    color: var(--deci-heading);
    margin-bottom: 0.5rem;
}

.deci-legal__updated {
    font-size: 0.85rem;
    color: var(--deci-text-muted);
}

.deci-legal__section {
    margin-bottom: 2.25rem;
}

.deci-legal__section h2 {
    font-size: 1.2rem;
    color: var(--deci-heading);
    margin-bottom: 0.75rem;
}

.deci-legal__section p {
    color: var(--deci-text);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.deci-legal__section ul {
    list-style: disc;
    padding-left: 1.4rem;
    color: var(--deci-text);
    line-height: 1.85;
}

.deci-legal__section a {
    color: var(--deci-primary);
    font-weight: 600;
    text-decoration: none;
}

.deci-legal__section a:hover {
    text-decoration: underline;
}

/* Slim footer used on legal pages */
.deci-footer--slim .deci-footer__bottom {
    padding: 1.5rem 0;
}
