:root {
    --bg-dark: #11161b;
    --bg-dark-2: #182028;
    --bg-card: rgba(18, 24, 30, 0.68);
    --bg-card-2: rgba(255, 255, 255, 0.05);
    --white: #ffffff;
    --muted: #d6dde4;
    --muted-2: #9facb8;
    --gold: #d69545;
    --gold-soft: #e8ab62;
    --green: #1f5b46;
    --green-hover: #184836;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    --radius: 20px;
    --max: 1240px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f6f8;
    color: #15212c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    background: #f4f4f4;
    border-top: 6px solid #111;
}

.topbar-inner {
    width: min(1280px, calc(100% - 16px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 34px;
}

.logo {
    font-size: 20px;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #161616;
}

.logo span {
    font-weight: 300;
    color: #506070;
    letter-spacing: -0.02em;
    margin-left: 2px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.client-line {
    text-align: center;
    line-height: 1.2;
}

.client-line .small {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #9ba6b2;
    font-weight: 600;
    margin-bottom: 4px;
}

.client-line .phone {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #18232d;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
}

.hero-wrap {
    /* width: min(1280px, calc(100% - 16px)); */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    background:
        linear-gradient(90deg, rgba(10, 13, 17, 0.74) 0%, rgba(13, 18, 24, 0.66) 44%, rgba(21, 28, 34, 0.54) 100%),
        linear-gradient(180deg, rgba(214, 149, 69, 0.12) 0%, rgba(0, 0, 0, 0) 28%),
        url('../images/resources/nsw-brand.avif') center/cover no-repeat;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.hero {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 42px;
    min-height: 646px;
    padding: 50px 0;
    position: relative;
}

.hero-left {
    max-width: 860px
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #f3f6f8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.trust-pill .gold {
    color: var(--gold);
    font-weight: 700;
}

.hero h1 {
    margin: 0 0 24px;
    font-size: clamp(40px, 4.4vw, 50px);
    line-height: 1.00;
    letter-spacing: -0.05em;
    color: #fff;
    font-weight: 700;
    max-width: 760px;
}

.hero p.lead {
    margin: 0 0 26px;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.52;
    font-weight: 400;
    color: #edf2f6;
    max-width: 680px;
    letter-spacing: -0.01em;
}

.hero p.lead strong {
    color: var(--gold-soft);
    font-weight: 700;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 0 0 30px;
    max-width: 920px;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 16px 14px;
    backdrop-filter: blur(4px);
    min-height: 88px;
}

.mini-stat .num {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    line-height: 1;
}

.mini-stat .label {
    font-size: 13px;
    line-height: 1.45;
    color: #d8e0e7;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-cta-row .btn-primary {
    min-width: 300px;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: none;
    font-weight: 700;
}

.microcopy {
    color: #d0d8df;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.7;
    text-transform: none;
}

.urgency-line {
    display: inline-block;
    margin-top: 14px;
    background: rgba(0, 0, 0, 0.28);
    border-left: 2px solid var(--gold);
    padding: 16px 18px;
    color: #dde5ec;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 680px;
}

.hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 100%;
}

.feature-stack {
    width: min(100%, 340px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 42px;
}

.feature-card {
    background: rgba(21, 28, 34, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 28px 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
    min-height: 96px;
}

.feature-card .big {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: -0.04em;
}

.feature-card .title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.feature-card .small {
    font-size: 12px;
    line-height: 1.5;
    color: #d3dce4;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}

.section {
    padding: 76px 0
}

.section-light {
    background: #f5f6f8
}

.section-muted {
    background: #eef1f4
}

.section-dark {
    background: #11161b;
    color: #fff
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 700;
    color: #17212b;
}

.section-dark h2 {
    color: #fff
}

.section-subtext {
    margin: 0 0 30px;
    max-width: 760px;
    color: #50606f;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

.section-dark .section-subtext {
    color: #cfd7de
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.content-card {
    background: #fff;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.list li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    color: #223141;
    line-height: 1.6;
    font-weight: 400;
}

.list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: -1px;
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.badge-card {
    background: #fff;
    border-radius: 20px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    border-bottom: 5px solid #0c3769;
}

.badge-visual {
    width: 98px;
    height: 98px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ffefbf, #dfb25f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d3767;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    padding: 12px;
}

.badge-title {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
    color: #17304e;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.badge-text {
    font-size: 16px;
    line-height: 1.55;
    color: #496073;
    font-weight: 400;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.benefit-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    border: 1px solid #edf1f4;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(214, 149, 69, 0.13);
    color: #8b5b19;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.benefit-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    color: #18232d;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.benefit-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #536371;
    font-weight: 400;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.review-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #edf1f4;
}

.stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    font-weight: 700;
}

.review-card p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.6;
    color: #223141;
    font-weight: 400;
}

.review-meta {
    color: #60707f;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.faq-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8edf1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.faq-button {
    width: 100%;
    border: none;
    background: #fff;
    color: #17212b;
    padding: 20px 22px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.faq-button .icon {
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease;
    background: #fbfcfd;
}

.faq-answer-inner {
    padding: 0 22px 22px;
    color: #536371;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.cta-panel {
    display: grid;
    grid-template-columns: 1fr 0.94fr;
    gap: 34px;
    align-items: center;
    border-radius: 28px;
    padding: 42px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(10, 15, 18, 0.93), rgba(20, 29, 35, 0.92)),
        linear-gradient(90deg, rgba(214, 149, 69, 0.20), transparent 46%);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.cta-panel h2 {
    color: #fff;
}

.cta-panel .section-subtext {
    color: #d5dee6;
    margin-bottom: 0;
}

.lead-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    padding: 24px;
    backdrop-filter: blur(4px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.lead-form input {
    width: 100%;
    height: 54px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    padding: 0 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    font-weight: 500;
}

.lead-form input::placeholder {
    color: #d4dde6;
    font-weight: 400;
}

.lead-form .btn-primary {
    width: 100%;
    min-height: 54px;
    border-radius: 12px;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-transform: none;
    font-weight: 700;
}

.form-micro {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 14px;
    color: #d6dee5;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.final-cta {
    background: #11161b;
    color: #fff;
    text-align: center;
    padding: 86px 0;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 14px;
}

.final-cta p {
    max-width: 760px;
    margin: 0 auto 26px;
    color: #d0d8df;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
}

.final-cta .btn-primary {
    min-width: 320px;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 15px;
}

.support {
    margin-top: 18px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.sticky-mobile-cta {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.sticky-mobile-cta .btn-primary {
    width: 100%;
    border-radius: 12px;
    min-height: 54px;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-transform: none;
}

@media (max-width:1100px) {
    .hero {
        grid-template-columns: 1fr;
        /* padding-top: 86px; */
    }

    .hero-right {
        justify-content: flex-start;
    }

    .feature-stack {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-row,
    .benefits-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col,
    .cta-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width:820px) {
    .topbar-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
    }

    .topbar-right {
        justify-content: space-between;
    }

    .hero {
        padding: 48px 0px 24px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p.lead {
        font-size: 19px;
    }

    .feature-stack,
    .stats-row,
    .benefits-grid,
    .reviews-grid,
    .badges-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .content-card,
    .cta-panel,
    .lead-form {
        padding: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .trust-pill {
        width: 100%;
    }

    .sticky-mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 84px;
    }

    .hero-cta-row .btn-primary,
    .final-cta .btn-primary {
        min-width: 100%;
    }
}

.error {
    font-size: 12px;
    color: red;
    padding-left: 5px;
    padding-top: 5px;
    font-weight: 700;
}

.form-group{
    margin-bottom: 10px;
}

.form-group-full, .form-check-inline{
    display: flex;
    gap: 5px;
}
input[type=checkbox], input[type=radio]{
    height: 16px;width: auto;
}