
.brighten-landing-page h1 {
    font-size: 62px;
    line-height: 80px;
}

.brighten-landing-page h2 {
    font-size: 40px;
    line-height: 60px;
}

.brighten-landing-page h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
}

.brighten-landing-page h4 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 20px;
}

.brighten-landing-page .section-hero-banner h1 + p span {
    font-size: 20px;
}

.brighten-landing-page .section-hero-banner .cta {
    margin-top: 40px;
    font-weight: 700;
    border-radius: 12px;
}

.brighten-landing-page .section-wr .card-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 990px;
    margin: 0 auto;
}

.brighten-landing-page .section-wr .card-columns .card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
}

.brighten-landing-page .section-wr .card-columns .card h3 {
    color: #87b348;
}

.brighten-landing-page .section-wr .card-columns .card p {
    margin: 0;
}

.brighten-landing-page .section-wr .card-columns .card span {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 5px;
    background-color: #979797;
    transform: skewX(-16deg) translate3d(0, 0, 0);
    margin-bottom: 20px;
}

/* ============================================================
   How it works carousel
   Drop into your theme's CSS or enqueue via functions.php
   ============================================================ */

.steps-carousel {
    max-width: 990px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    font-family: inherit;
    box-sizing: border-box;
}

/* Header */
.steps-carousel__header {
    text-align: center;
    margin-bottom: 2rem;
}
.steps-carousel__heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #5b5a5a;
}
.steps-carousel__sub {
    font-size: 1rem;
    color: #5a6475;
    margin: 0;
}

/* Progress tracker */
.steps-carousel__progress {
    display: flex;
    align-items: center;
    margin: 0 1rem 1.5rem;
}
.steps-carousel__prog-dot {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f2f5;
    border: 1.5px solid #d0d5dd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a6475;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    cursor: pointer;
}
.steps-carousel__prog-dot .dashicons,
.steps-carousel__prog-dot svg {
    width: 18px;
    height: 18px;
    font-size: 18px;
}
.steps-carousel__prog-dot.is-active {
    background: #87b348;
    border-color: #87b348;
    color: #fff;
}
.steps-carousel__prog-dot.is-active img {
    filter: brightness(0) invert(1);
}
.steps-carousel__prog-dot.is-done {
    background: #e8edf8;
    border-color: #87b348;
    color: #87b348;
}
.steps-carousel__prog-line {
    flex: 1;
    height: 2px;
    background: #d0d5dd;
    transition: background 0.3s;
}
.steps-carousel__prog-line.is-done {
    background: #87b348;
}
.steps-carousel__step-num {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Track */
.steps-carousel__track-wrap {
    overflow: hidden;
}
.steps-carousel__track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.steps-carousel__slide {
    min-width: 100%;
    padding: 0 0.25rem;
    box-sizing: border-box;
}
.steps-carousel__card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #ffffff;
    border: 1px solid #87b348;
    border-radius: 12px;
    padding: 2rem 2.5rem;
}

/* Icon */
.steps-carousel__icon-wrap {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #e8edf8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #87b348;
}
.steps-carousel__icon-wrap .dashicons,
.steps-carousel__icon-wrap svg {
    width: 28px;
    height: 28px;
    font-size: 28px;
}

/* Content */
.steps-carousel__content {
    flex: 1;
}
.steps-carousel__step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #87b348;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.25rem;
}
.steps-carousel__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f1a2e;
    margin: 0 0 0.5rem !important;
}
.steps-carousel__desc {
    font-size: 0.9375rem;
    color: #5a6475;
    line-height: 1.6;
    margin: 0;
}

/* Nav */
.steps-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}
.steps-carousel__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.125rem;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
    color: #0f1a2e;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.steps-carousel__btn:hover {
    background: #f0f2f5;
    border-color: #b0b8c8;
}
.steps-carousel__btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.steps-carousel__dots {
    display: flex;
    gap: 6px;
}
.steps-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d5dd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.steps-carousel__dot.is-active {
    background: #87b348;
    transform: scale(1.25);
}

/* Mobile */
@media (max-width: 580px) {
    .steps-carousel__card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1rem;
    }
    .steps-carousel__heading {
        font-size: 1.5rem;
    }
}



.section-card-wrap {
	padding: 2.5rem 0;
}

.section-card-eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--text-muted);
	text-align: center;
	margin: 0 0 0.5rem;
}

.section-card-heading {
	font-size: 22px;
	font-weight: 500;
	color: var(--text-primary);
	text-align: center;
	margin: 0 0 2rem;
}

.section-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 990px;
    margin: 0 auto;
}

.section-card-main {
	perspective: 900px;
	min-height: 200px;
	cursor: pointer;
}

.section-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 300px;
	transition: transform 0.52s cubic-bezier(.4,0,.2,1);
	transform-style: preserve-3d;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
}

.section-card-main:hover .section-card-inner, 
.section-card-main.on .section-card-inner {
	transform: rotateY(180deg);
    background: #87b348;
}

.section-card-front, .section-card-back {
	position: absolute;
	inset: 0;
	border-radius: 12px;
	padding: 40px 30px;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	display: flex;
	flex-direction: column;
}

.section-card-front {
	background: var(--surface-2);
	border: 0.5px solid var(--border);
	justify-content: space-between;
}

.section-card-back {
	background: var(--surface-2);
	border: 2px solid var(--border-accent);
	transform: rotateY(180deg);
	justify-content: center;
	gap: 10px;
}

.section-card-icon {
	width: 80px;
	height: 60px;
	border-radius: 8px;
	background: var(--bg-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
}

.section-card-icon i {
	font-size: 18px;
	color: var(--text-accent);
}

.section-card-label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin: 0 0 0.3rem;
}

.section-card-name {
	font-size: 17px;
	font-weight: 500;
	color: var(--text-primary);
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.section-card-trigger {
	font-size: 16px;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.7;
	font-style: italic;
}

.section-card-hint {
	font-size: 12px;
	color: #989898;
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 4px;
    margin-bottom: 0;
}

.section-card-hint i {
	font-size: 13px;
}

.section-card-back-label {
	font-size: 10px;
    font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0;
}

.section-card-back-body {
	font-size: 16px;
	color: #ffffff;
	line-height: 1.7;
	margin: 0;
}

.bridging-lp-form .row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr;
    background: url(https://2.dev.ramgroup.com/brighten-au/wp-content/uploads/2026/07/brighten-green-bg.png) center no-repeat;
    background-size: cover;
    border-radius: 30px;
    overflow: hidden;
}

.bridging-lp-form .column-simple .column-head img {
    height: 100%;
}

.bridging-lp-form .column-simple h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.bridging-lp-form .column-simple h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.bridging-lp-form .column-simple p {
    color: #ffffff;
    margin-bottom: 15px;
}

.bridging-lp-form .column-simple .gform_wrapper label.gfield_label {
    color: #ffffff;
    font-weight: 700
}

.bridging-lp-form .column-simple .gform_wrapper input,
.bridging-lp-form .column-simple .gform_wrapper textarea {
    border-radius: 10px;
}

.bridging-lp-form .column-simple .gform_wrapper .gfield_required .gfield_required_text {
    display: none
}

.bridging-lp-form .column-simple .gform_wrapper .gfield_required:after {
    content: "*"
}

.bridging-lp-form .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 1.5%;
    grid-row-gap: 10px;
}


.bridging-lp-form .gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
    background: transparent;
    font-size: 12px;
    border: none;
    margin-block-start: 0px;
    padding: 0;
}

.bridging-lp-form .gform_wrapper .gform_footer input.button {
    background: #294d61;
    border: 3px solid #294d61;
    min-height: 50px;
    max-width: 100%;
    border-radius: 10px;
}

.bridging-lp-form .gform_wrapper .gform_footer input.button:hover {
    color: #294d61;
    background: #ffffff;
}

.bridging-lp-form .column-simple:nth-child(1) {
    padding: 80px 60px;
    background: linear-gradient(to top, rgb(80 147 45 / 68%) 0%, transparent 100%);
}

.bridging-lp-form .column-simple:nth-child(2) {
    position: relative;
    padding: 0;
    background: url(https://2.dev.ramgroup.com/brighten-au/wp-content/uploads/2026/07/bridging-loan-landing-page.png) center no-repeat;
    background-size: cover;
    border-radius: 8px;
    border-radius: 30px;
}


 /* Caption overlay */
.bridging-lp-form  .lp-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 3.75rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  }
 
.bridging-lp-form  .lp-caption .lp-tag {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
  }
 
.bridging-lp-form  .lp-caption h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 14px;
  }
 
.bridging-lp-form  .lp-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
 
.bridging-lp-form  .lp-pill {
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 30px;
    padding: 5px 13px;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gform_confirmation_message_50 {
    color: #ffffff !important;
}

.gform_wrapper.gravity-theme .gfield_description {
	font-size: 12px !important;
    line-height: 18px !important;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .brighten-landing-page h1 {
        font-size: 32px;
        line-height: 46px;
    }

    .brighten-landing-page h1 > br {
        display: block;
    }

    .brighten-landing-page h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .brighten-landing-page h3 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .brighten-landing-page h4 {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .brighten-landing-page .section-hero-banner h1 + p span {
        font-size: 14px;
    }

    .brighten-landing-page .section-hero-banner h1 + p {
        margin: 0;
    }
    
    .brighten-landing-page .section-hero-banner .cta {
        min-height: 50px;
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 16px;
        margin-bottom: 0;
    }

    .brighten-landing-page .steps-carousel__prog-dot {
        width: 40px;
        height: 40px;
    }

    .brighten-landing-page .steps-carousel__prog-dot img {
        width: 30px !important;
        height: 30px  !important;
    }

    .brighten-landing-page .steps-carousel__icon-wrap {
        width: 70px;
        height: 70px;
    }

    .brighten-landing-page .steps-carousel__icon-wrap img {
        width: 60px !important;
        height: 60px  !important;
    }

    .brighten-landing-page .steps-carousel__title {
        font-size: 20px;
    }

    .brighten-landing-page .steps-carousel__desc {
        font-size: 14px;
    }

    .brighten-landing-page .section-card-name {
        font-size: 20px;
    }

    .brighten-landing-page .section-card-back-body,
    .brighten-landing-page .section-card-trigger {
        font-size: 14px;
    }


    .brighten-landing-page .section-card-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .brighten-landing-page .section-recent-article-display .card {
        padding: 0;
        margin-bottom: 15px
    }

    .bridging-lp-form .row {
        grid-template-columns: 1fr;
        grid-template-rows: 0.5fr 1fr;
        flex-direction: column-reverse;
    }

    .bridging-lp-form .row .column-simple:first-child {
        order: 2;
        padding: 60px 40px;
    }
    .bridging-lp-form .row .bridging-lp-form:last-child {
        order: 1;
    }

    .bridging-lp-form .lp-caption h3 {
        font-size: 20px;
    }

    .bridging-lp-form .lp-pill {
        font-size: 12px;
    }

    .bridging-lp-form .lp-caption .lp-tag {
        font-size: 12px;
    }
}