        :root {
            --orange: #D9782D;
            --orange-dark: #C86E2C;
            --charcoal: #262626;
            --near-black: #0E0E0E;
            --dark-panel: #1E1A17;
            --peach: #FBEFE2;
            --cream-card: #F0EEE6;
            --green: #3E7C36;
            --text: #3F3F3F;
            --text-light: #5A5A5A;
            --border: #DCDCDC;
            --white: #FFFFFF;
        }

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

        .fsla-lp {
            scroll-behavior: smooth;
        }

        .fsla-lp {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background: var(--white);
            font-size: 17px;
            line-height: 1.7;
        }

        .fsla-lp img {
            max-width: 100%;
            display: block;
        }

        .fsla-lp a {
            text-decoration: none;
            color: inherit;
        }

        .fsla-lp .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============ TYPE ============ */
        .fsla-lp h2.section-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: clamp(28px, 3.4vw, 40px);
            line-height: 1.25;
            color: var(--charcoal);
            text-transform: uppercase;
            letter-spacing: .01em;
        }

        .fsla-lp .eyebrow {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            font-variant: small-caps;
            color: var(--orange-dark);
            font-size: 22px;
            line-height: 1.4;
            letter-spacing: .05em;
            margin-top: 14px;
        }

        .fsla-lp p.body-text {
            color: var(--text-light);
            margin-top: 20px;
        }

        .fsla-lp .disclaimer {
            font-style: italic;
            font-weight: 600;
            color: var(--charcoal);
            margin-top: 24px;
        }

        /* ============ BUTTONS ============ */
        .fsla-lp .btn {
            display: inline-block;
            background: var(--orange);
            color: #fff;
            font-weight: 500;
            font-size: 17px;
            padding: 16px 30px;
            border: none;
            border-radius: 6px 6px 6px 22px;
            cursor: pointer;
            transition: background .2s ease;
        }

        .fsla-lp .btn:hover {
            background: #c46a24;
        }

        .fsla-lp .btn-green {
            display: block;
            width: 100%;
            background: var(--green);
            color: #fff;
            font-weight: 500;
            font-size: 17px;
            padding: 15px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background .2s;
        }

        .fsla-lp .btn-green:hover {
            background: #356a2e;
        }

        /* ============ TOP BAR ============ */
        .fsla-lp .topbar {
            background: var(--charcoal);
            color: #fff;
            font-size: 15px;
        }

        .fsla-lp .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 12px 20px;
            flex-wrap: wrap;
        }

        .fsla-lp .topbar-left {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }

        .fsla-lp .topbar-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .fsla-lp .topbar-icon {
            width: 32px;
            height: 32px;
            border: 1px solid #6b6b6b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .fsla-lp .topbar-right {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .fsla-lp .topbar-right img {
            width: 96px;
        }

        /* ============ NAV (sits on the transparent hero overlay) ============ */
        .fsla-lp .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 20px 0;
            flex-wrap: nowrap;
        }

        .fsla-lp .logo img {
            width: 190px;
        }

        .fsla-lp .nav-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            row-gap: 8px;
            gap: 32px;
            font-size: 16px;
            font-weight: 400;
        }

        .fsla-lp .nav-links>a,
        .fsla-lp .nav-links .has-dropdown>a {
            color: #fff;
        }

        .fsla-lp .nav-links>a:hover,
        .fsla-lp .nav-links .has-dropdown>a:hover {
            color: var(--orange);
        }

        .fsla-lp .nav-links>a.active {
            font-weight: 600;
            position: relative;
        }

        .fsla-lp .nav-links>a.active::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -9px;
            transform: translateX(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--orange);
        }

        .fsla-lp .has-dropdown {
            position: relative;
        }

        .fsla-lp .has-dropdown>a {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .fsla-lp .caret {
            font-style: normal;
            font-size: 12px;
            display: inline-block;
        }

        .fsla-lp .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 14px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
            padding: 10px 0;
            min-width: 280px;
            z-index: 20;
        }

        .fsla-lp .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -14px;
            left: 0;
            right: 0;
            height: 14px;
        }

        .fsla-lp .has-dropdown:hover>.dropdown-menu {
            display: block;
        }

        .fsla-lp .dropdown-menu .dropdown-item {
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 10px 20px !important;
            font-size: 15px;
            font-weight: 400;
            white-space: nowrap;
            color: var(--charcoal) !important;
        }

        .fsla-lp .dropdown-menu .dropdown-item:hover {
            background: #faf3ec;
            color: var(--orange) !important;
        }

        .fsla-lp .has-submenu {
            position: relative;
        }

        .fsla-lp .has-submenu .dropdown-menu.submenu {
            top: -10px;
            left: 100%;
            margin-top: 0;
            margin-left: 6px;
        }

        .fsla-lp .has-submenu .dropdown-menu.submenu::before {
            top: 0;
            left: -6px;
            right: auto;
            width: 6px;
            height: 100%;
        }

        .fsla-lp .has-submenu:hover>.dropdown-menu.submenu {
            display: block;
        }

        .fsla-lp .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .fsla-lp .lang-select {
            background: #fff;
            color: var(--charcoal);
            border: 1px solid #d9d9d9;
            border-radius: 5px;
            padding: 12px 18px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            min-width: 170px;
        }

        /* ============ GOOGLE TRANSLATE CLEANUP ============ */
        .fsla-lp {
            top: 0 !important;
        }

        .fsla-lp .goog-te-banner-frame,
        .fsla-lp .skiptranslate>iframe {
            display: none !important;
        }

        .fsla-lp .goog-text-highlight,
        .fsla-lp .goog-tooltip,
        .fsla-lp .goog-tooltip:hover {
            background: none !important;
            box-shadow: none !important;
            border: none !important;
        }

        /* ============ HERO ============ */
        .fsla-lp .hero {
            position: relative;
            background: #2a2a2a url('https://www.thedebtdefenders.com/wp-content/uploads/home-banner-debt.webp') center/cover no-repeat;
            color: #fff;
        }

        .fsla-lp .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(15, 15, 15, .82) 0%, rgba(15, 15, 15, .55) 55%, rgba(15, 15, 15, .35) 100%);
        }

        .fsla-lp .hero>* {
            position: relative;
        }

        .fsla-lp .hero-body {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 60px;
            align-items: center;
            padding: 70px 0 110px;
        }

        .fsla-lp .breadcrumb {
            font-size: 16px;
            margin-bottom: 18px;
            color: #e8e8e8;
        }

        .fsla-lp .breadcrumb b {
            font-weight: 600;
            color: #fff;
        }

        .fsla-lp .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-variant: small-caps;
            font-size: clamp(40px, 4.6vw, 58px);
            line-height: 1.15;
            letter-spacing: .02em;
        }

        .fsla-lp .hero h1 .hl {
            color: var(--orange);
        }

        /* Hero form */
        .fsla-lp .form-control.error,
        .fsla-lp .form-control.is-invalid,
        .fsla-lp .form-group.has-error .form-control,
        .fsla-lp .vip-field.has-error input,
        .fsla-lp .vip-field.has-error textarea,
        .fsla-lp .vip-field.has-error select,
        .fsla-lp .form-field.has-error input,
        .fsla-lp .form-field.has-error textarea,
        .fsla-lp .form-field.has-error select {
            border: 1px solid #dc3545 !important;
            box-shadow: none;
        }

        .fsla-lp .help-block.error {
            display: none;
            color: #dc3545;
            font-size: 12px;
            margin-top: 4px;
        }

        .fsla-lp .form-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            color: var(--charcoal);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
            max-width: 640px;
            justify-self: end;
            width: 100%;
        }

        .fsla-lp .form-card-head {
            background: var(--orange);
            color: #fff;
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-variant: small-caps;
            font-weight: 700;
            font-size: 24px;
            letter-spacing: .06em;
            padding: 18px 20px;
        }

        .fsla-lp .form-card-body {
            padding: 28px;
        }

        .fsla-lp .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px 22px;
        }

        .fsla-lp .field label {
            display: block;
            font-size: 16px;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .fsla-lp .field input,
        .fsla-lp .field select,
        .fsla-lp .field textarea {
            width: 100%;
            border: 1px solid var(--border);
            background: #fafafa;
            border-radius: 4px;
            padding: 13px 14px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            color: var(--text);
        }

        .fsla-lp .field.full {
            grid-column: 1 / -1;
        }

        .fsla-lp .field textarea {
            min-height: 150px;
            resize: vertical;
        }

        .fsla-lp .form-card-body .btn-green {
            margin-top: 22px;
        }

        /* ============ ORANGE BANNER ============ */
        .fsla-lp .banner {
            background: var(--orange);
            color: #fff;
            padding: 34px 0;
        }

        .fsla-lp .banner-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 22px;
            text-align: left;
        }

        .fsla-lp .banner-icon {
            font-size: 44px;
            line-height: 1;
        }

        .fsla-lp .banner-title {
            font-weight: 700;
            font-size: 26px;
            letter-spacing: .02em;
        }

        .fsla-lp .banner-sub {
            color: #f6dfc9;
            font-size: 18px;
        }

        /* ============ SECTIONS ============ */
        .fsla-lp section.block {
            padding: 70px 0;
        }

        .fsla-lp .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .fsla-lp .two-col .img-wrap img {
            border-radius: 10px;
            object-fit: cover;
        }

        .fsla-lp .peach-panel {
            background: var(--peach);
            border-radius: 12px;
            padding: 56px 60px;
        }

        .fsla-lp .glance-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .fsla-lp .panel-heading {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            font-family: 'Cormorant Garamond', serif;
            font-variant: small-caps;
            font-weight: 700;
            font-size: 26px;
            color: var(--charcoal);
            line-height: 1.25;
            letter-spacing: .04em;
            margin-bottom: 26px;
        }

        .fsla-lp .panel-heading::before {
            content: '';
            width: 34px;
            height: 2px;
            background: var(--charcoal);
            flex-shrink: 0;
            margin-top: 18px;
        }

        .fsla-lp ul.checks {
            list-style: none;
        }

        .fsla-lp ul.checks li {
            position: relative;
            padding-left: 44px;
            margin-bottom: 22px;
            color: var(--text-light);
        }

        .fsla-lp ul.checks li::before {
            content: '\2714';
            position: absolute;
            left: 0;
            top: 2px;
            width: 26px;
            height: 26px;
            background: var(--orange);
            color: #fff;
            border-radius: 50%;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ============ DECORATED CARDS (process + 3-step) ============ */
        .fsla-lp .deco {
            position: relative;
            --off: 18px;
        }

        .fsla-lp .deco::before,
        .fsla-lp .deco::after {
            content: '';
            position: absolute;
            pointer-events: none;
        }

        .fsla-lp .deco-a::before {
            top: calc(-1 * var(--off));
            left: calc(-1 * var(--off));
            right: calc(-.35 * var(--off));
            height: 62%;
            border: 1px dashed #8a8a8a;
            border-bottom: none;
        }

        .fsla-lp .deco-a::after {
            top: 40%;
            bottom: calc(-1 * var(--off));
            left: calc(-.35 * var(--off));
            right: calc(-1 * var(--off));
            border: 3px solid var(--orange);
            border-top: none;
        }

        .fsla-lp .deco-b::before {
            top: calc(-1 * var(--off));
            left: calc(-1 * var(--off));
            right: calc(-1 * var(--off));
            height: 62%;
            border: 3px solid var(--orange);
            border-bottom: none;
        }

        .fsla-lp .deco-b::after {
            top: 40%;
            bottom: calc(-1 * var(--off));
            left: calc(-.35 * var(--off));
            right: calc(-.35 * var(--off));
            border: 1px dashed #8a8a8a;
            border-top: none;
        }

        /* Process (dark) */
        .fsla-lp .process {
            background: var(--dark-panel);
            color: #fff;
            padding: 90px 0 110px;
            text-align: center;
        }

        .fsla-lp .process-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: clamp(34px, 4.2vw, 54px);
            color: #fff;
            line-height: 1.2;
        }

        .fsla-lp .process-sub {
            color: var(--orange);
            font-size: 20px;
            margin-top: 24px;
        }

        .fsla-lp .process-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            max-width: 1160px;
            margin: 80px auto 0;
        }

        .fsla-lp .p-card {
            background: var(--cream-card);
            color: var(--charcoal);
            padding: 110px 42px 70px;
            min-height: 560px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .fsla-lp .p-num {
            width: 66px;
            height: 66px;
            border-radius: 50%;
            border: 1px solid var(--orange);
            background: #F6E3CF;
            color: var(--orange-dark);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
        }

        .fsla-lp .p-label {
            font-family: 'Cormorant Garamond', serif;
            font-variant: small-caps;
            font-weight: 700;
            font-size: 34px;
            line-height: 1.25;
            letter-spacing: .04em;
        }

        .fsla-lp .p-desc {
            margin-top: 28px;
            color: var(--text);
            font-size: 17px;
            line-height: 1.8;
        }

        /* 3-step mini boxes */
        .fsla-lp .mini-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 34px;
            margin-top: 44px;
        }

        .fsla-lp .m-card {
            --off: 10px;
            background: var(--cream-card);
            padding: 60px 20px;
            text-align: center;
        }

        .fsla-lp .m-card.deco-a::after,
        .fsla-lp .m-card.deco-b::before {
            border-width: 2px;
        }

        .fsla-lp .m-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid var(--orange);
            background: #F6E3CF;
            color: var(--orange-dark);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
        }

        .fsla-lp .m-label {
            font-family: 'Cormorant Garamond', serif;
            font-variant: small-caps;
            font-weight: 700;
            font-size: 22px;
            line-height: 1.35;
            letter-spacing: .05em;
            color: var(--charcoal);
        }

        /* Comparison table */
        .fsla-lp .compare {
            background: var(--peach);
            border-radius: 12px;
            padding: 50px 56px;
            margin-top: 44px;
        }

        .fsla-lp .cmp-row {
            display: grid;
            grid-template-columns: 1.4fr .8fr 1.1fr;
            align-items: stretch;
        }

        .fsla-lp .cmp-row>div {
            padding: 13px 26px;
            display: flex;
            align-items: flex-start;
        }

        .fsla-lp .cmp-row>div+div {
            border-left: 1px solid #dcc9b4;
        }

        .fsla-lp .cmp-head>div {
            padding-bottom: 30px;
        }

        .fsla-lp .compare .panel-heading {
            font-size: 23px;
            margin-bottom: 0;
        }

        .fsla-lp .cmp-f {
            color: var(--text-light);
            gap: 12px;
        }

        .fsla-lp .cmp-f::before {
            content: '\2022';
            color: #9a9a9a;
            flex-shrink: 0;
        }

        .fsla-lp .cmp-dd {
            justify-content: center;
        }

        .fsla-lp .cmp-check {
            width: 26px;
            height: 26px;
            background: var(--orange);
            color: #fff;
            border-radius: 50%;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .fsla-lp .cmp-o {
            color: var(--text-light);
        }

        .fsla-lp .cmp-label {
            display: none;
        }

        /* ============ FAQ ============ */
        .fsla-lp .faq h2 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            font-variant: small-caps;
            font-size: clamp(36px, 4vw, 50px);
            text-align: center;
            color: var(--charcoal);
            letter-spacing: .05em;
        }

        .fsla-lp .faq-list {
            max-width: 1080px;
            margin: 50px auto 0;
        }

        .fsla-lp .faq-item {
            border: 1px solid var(--border);
            background: #fff;
            margin-bottom: 26px;
        }

        .fsla-lp .faq-item.open {
            box-shadow: 0 0 24px rgba(217, 120, 45, .28);
            border-color: #f0d9c2;
        }

        .fsla-lp .faq-q {
            width: 100%;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            text-align: left;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 20px;
            color: var(--charcoal);
            padding: 30px 34px;
            cursor: pointer;
        }

        .fsla-lp .faq-q .toggle {
            color: var(--orange);
            font-size: 28px;
            font-weight: 400;
            line-height: 1;
            flex-shrink: 0;
        }

        .fsla-lp .faq-a {
            display: none;
            padding: 0 34px 30px;
            color: var(--text-light);
            text-align: left;
            line-height: 1.8;
        }

        .fsla-lp .faq-item.open .faq-a {
            display: block;
        }

        /* ============ FOOTER ============ */
        .fsla-lp footer {
            background: #000;
            color: #e8e8e8;
        }

        .fsla-lp .footer-main {
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 80px;
            padding: 70px 20px 50px 20px;
        }

        .fsla-lp .footer-logo {
            margin-bottom: 30px;
        }

        .fsla-lp .footer-logo img {
            width: 230px;
        }

        .fsla-lp .footer-about {
            color: #cfcfcf;
            max-width: 560px;
        }

        .fsla-lp .footer-note {
            font-size: 15px;
            color: #bdbdbd;
            margin-top: 34px;
        }

        .fsla-lp .footer-h {
            font-family: 'Cormorant Garamond', serif;
            font-variant: small-caps;
            font-weight: 700;
            font-size: 26px;
            letter-spacing: .06em;
            margin-bottom: 30px;
            color: #fff;
        }

        .fsla-lp .footer-contact {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 26px;
            color: #e2e2e2;
        }

        .fsla-lp .footer-contact .ico {
            width: 46px;
            height: 46px;
            background: #1c1c1c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
        }

        .fsla-lp .footer-bottom {
            border-top: 1px solid #222;
            padding: 22px 0;
            font-size: 15px;
            color: #cfcfcf;
        }

        .fsla-lp .footer-bottom a {
            color: var(--orange);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width:1024px) {
            .fsla-lp .hero-body {
                grid-template-columns: 1fr;
                padding: 50px 0 80px;
            }

            .fsla-lp .form-card {
                justify-self: stretch;
                max-width: none;
            }

            .fsla-lp .two-col {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .fsla-lp .glance-grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .fsla-lp .process-row {
                grid-template-columns: 1fr;
                max-width: 480px;
                gap: 70px;
            }

            .fsla-lp .p-card {
                min-height: 0;
                padding: 70px 34px 50px;
            }

            .fsla-lp .mini-steps {
                gap: 40px;
            }

            .fsla-lp .cmp-head {
                display: none;
            }

            .fsla-lp .cmp-row {
                grid-template-columns: 1fr;
                background: #fff;
                border: 1px solid #ecd9c2;
                border-radius: 10px;
                margin-bottom: 16px;
                padding: 16px 18px;
            }

            .fsla-lp .cmp-row>div {
                padding: 6px 0;
                border-left: none !important;
            }

            .fsla-lp .cmp-f {
                font-weight: 600;
                color: var(--charcoal);
            }

            .fsla-lp .cmp-f::before {
                display: none;
            }

            .fsla-lp .cmp-dd {
                justify-content: flex-start;
                align-items: center;
            }

            .fsla-lp .cmp-row>.cmp-o {
                display: block;
            }

            .fsla-lp .cmp-label {
                display: inline;
                font-size: 15px;
                color: var(--text-light);
                font-weight: 400;
            }

            .fsla-lp .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 50px;
                align-items: end;
            }

            .fsla-lp .nav-links {
                display: none;
            }
        }

        @media (max-width:768px) {
            .fsla-lp [style*="justify"] {
                text-align: left !important;
            }
        }

        @media (max-width:640px) {

            .fsla-lp .peach-panel,
            .fsla-lp .compare {
                padding: 34px 26px;
            }

            .fsla-lp .form-grid {
                grid-template-columns: 1fr;
            }

            .fsla-lp .faq-q {
                font-size: 17px;
                padding: 22px 20px;
            }

            .fsla-lp .faq-a {
                padding: 0 20px 22px;
            }

            .fsla-lp .mini-steps {
                grid-template-columns: 1fr;
            }

            .fsla-lp .footer-h {
                font-size: 22px;
                margin-bottom: 14px;
            }

            .fsla-lp .footer-about,
            .fsla-lp .footer-contact {
                font-size: 14px;
            }

            .fsla-lp .footer-bottom {
                font-size: 14px;
                text-align: center;
            }
        }

        @media (prefers-reduced-motion:reduce) {
            .fsla-lp {
                scroll-behavior: auto;
            }

            .fsla-lp * {
                transition: none !important;
            }
        }

/* =========================================================================
   GRAVITY FORMS SKIN — makes GF markup match the original static form card.
   Scoped to .fsla-lp .form-card so it only affects the hero form.
   Field layout (First/Last on one row, Phone/Email on one row, Case Type &
   Message full width) is set in the GF editor; this only handles appearance
   plus a grid fallback for classic (non-2.5 orbital) layouts.
   ========================================================================= */

/* strip GF's own chrome inside our card */
.fsla-lp .form-card .gform_wrapper,
.fsla-lp .form-card .gform_wrapper form { margin: 0; padding: 0; }
.fsla-lp .form-card .gform_wrapper .gform_heading,
.fsla-lp .form-card .gform_wrapper .gform_description { display: none; }

/* grid fallback: only applies if GF isn't already doing its own grid layout */
.fsla-lp .form-card .gform_fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 18px 22px;
    gap: 18px 22px;
}
/* full-width fields: add CSS Ready Class "fsla-full" to Case Type & Message */
.fsla-lp .form-card .gfield.fsla-full { grid-column: 1 / -1; }
/* if you instead use GF ready classes, keep these too */
.fsla-lp .form-card .gfield.gf_left_half  { grid-column: 1 / 2; }
.fsla-lp .form-card .gfield.gf_right_half { grid-column: 2 / 3; }

/* labels */
.fsla-lp .form-card .gfield_label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

/* inputs / selects / textareas — matches original .field controls */
.fsla-lp .form-card .ginput_container input[type="text"],
.fsla-lp .form-card .ginput_container input[type="email"],
.fsla-lp .form-card .ginput_container input[type="tel"],
.fsla-lp .form-card .ginput_container input[type="number"],
.fsla-lp .form-card .ginput_container select,
.fsla-lp .form-card .ginput_container textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #fafafa;
    border-radius: 4px;
    padding: 13px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text);
    line-height: 1.4;
}
.fsla-lp .form-card .ginput_container textarea { min-height: 150px; resize: vertical; }
.fsla-lp .form-card .ginput_container { margin-top: 0; }

/* error state parity with original */
.fsla-lp .form-card .gfield_error input,
.fsla-lp .form-card .gfield_error select,
.fsla-lp .form-card .gfield_error textarea { border: 1px solid #dc3545 !important; box-shadow: none; }
.fsla-lp .form-card .gfield_validation_message,
.fsla-lp .form-card .validation_message {
    color: #dc3545; font-size: 12px; margin-top: 4px; background: none; border: 0; padding: 0;
}
.fsla-lp .form-card .gform_validation_errors { display: none; } /* hide GF summary banner; keep inline msgs */

/* submit button — matches .btn-green */
.fsla-lp .form-card .gform_footer { margin: 22px 0 0; padding: 0; }
.fsla-lp .form-card .gform_footer input[type="submit"],
.fsla-lp .form-card .gform_footer button {
    display: block;
    width: 100%;
    background: var(--green);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 17px;
    padding: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s;
}
.fsla-lp .form-card .gform_footer input[type="submit"]:hover,
.fsla-lp .form-card .gform_footer button:hover { background: #356a2e; }

/* GF AJAX spinner alignment */
.fsla-lp .form-card .gform_ajax_spinner { margin-left: 12px; vertical-align: middle; }

@media (max-width:1024px) {
    .fsla-lp .form-card .gform_fields { grid-template-columns: 1fr; }
    .fsla-lp .form-card .gfield.gf_left_half,
    .fsla-lp .form-card .gfield.gf_right_half { grid-column: 1 / -1; }
}
