/* =========================================================
   Clean Clean Cleaners — Brisbane
   Design system: bold, trust-first, builder-friendly.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Fraunces:opsz,wght@9..144,500;9..144,700;9..144,900&display=swap');

:root {
    /* Colors — matched to corporate reference palette */
    --ink: #0f172a;            /* near-black text */
    --ink-soft: #334155;       /* secondary text */
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --paper: #f5f7fa;          /* soft off-white section bg */
    --white: #ffffff;

    --brand: #1da1f2;          /* electric/sky blue — primary accent */
    --brand-dark: #1487d8;
    --brand-deep: #0b2545;     /* deep navy for dark sections */
    --brand-darker: #08192f;

    --teal: #1da1f2;           /* aliased to brand blue for harmony */
    --teal-dark: #1487d8;
    --teal-deep: #0e6db5;

    /* Aliases for backwards compatibility */
    --navy-900: var(--brand-deep);
    --navy-800: #103057;
    --navy-700: #1a4275;
    --blue-bright: var(--brand);

    --warning: #ffb020;
    --success: #16a34a;

    /* Type */
    --font-display: 'Fraunces', Georgia, serif;
    --font-sans: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing/structure */
    --max-w: 1240px;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(10, 26, 47, 0.06);
    --shadow: 0 10px 30px rgba(10, 26, 47, 0.08);
    --shadow-lg: 0 24px 60px rgba(10, 26, 47, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--navy-800);
    text-decoration: none;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Top notice bar ========== */
.top-bar {
    background: var(--navy-900);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 16px;
}
.top-bar .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 212, 207, 0.12);
    color: var(--teal);
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}
.top-bar > .container > * {
    flex-shrink: 0;
}
.top-bar a {
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
}
.top-bar .txt-ok {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}
.top-bar .hide-mobile { display: inline; }

/* ========== Header / nav ========== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    position: sticky;
    top: 0;
    z-index: 50;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}
.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--navy-900);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--teal);
    font-weight: 900;
    font-family: var(--font-sans);
    font-size: 18px;
    letter-spacing: -0.04em;
}
.logo-mark-img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    display: block;
}
.footer .logo .logo-mark-img {
    height: 36px;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    color: var(--ink);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy-700); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: clamp(8px, 4vw, 56px);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: var(--navy-900);
    border: none;
    color: var(--white);
    padding: 14px 16px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(13, 36, 64, 0.2);
    transition: all 0.2s;
}
.menu-toggle:hover {
    background: var(--brand);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(29, 161, 242, 0.35);
}
.menu-toggle:active {
    transform: translateY(0);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
    transition: all 0.2s;
}
.menu-toggle span::before { content: ''; position: absolute; top: -9px; left: 0; }
.menu-toggle span::after { content: ''; position: absolute; top: 9px; left: 0; }

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
    box-shadow: 0 6px 16px rgba(38, 147, 245, 0.35);
}
.btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(38, 147, 245, 0.45);
}
.btn-dark {
    background: var(--navy-900);
    color: var(--white);
    border-color: var(--navy-900);
}
.btn-dark:hover {
    background: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline {
    background: transparent;
    color: var(--navy-900);
    border-color: var(--navy-900);
}
.btn-outline:hover {
    background: var(--navy-900);
    color: var(--white);
}
.btn-outline-light {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-900);
    border-color: var(--white);
}
.btn-lg {
    padding: 18px 28px;
    font-size: 16px;
}
.btn-block {
    width: 100%;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 75% 50%, rgba(29, 161, 242, 0.35) 0%, transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(29, 161, 242, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-deep) 60%, #103057 100%);
    color: var(--white);
    overflow: hidden;
    padding: 80px 0 100px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(29, 161, 242, 0.15);
    color: var(--brand);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(29, 161, 242, 0.3);
}
.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(29, 161, 242, 0.25);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(29, 161, 242, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(29, 161, 242, 0); }
}
.hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--white);
}
.hero h1 em {
    font-style: italic;
    color: var(--brand);
    font-weight: 700;
}
.hero p.lead {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.55;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}
.hero-trust .check {
    width: 22px;
    height: 22px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(29, 161, 242, 0.18);
}

/* Hero quote card */
.hero-card {
    background: var(--white);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
}
.hero-card-tag {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--teal);
    color: var(--navy-900);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hero-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.hero-card p.sub {
    color: var(--slate-600);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Form */
.form-group {
    margin-bottom: 14px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-control {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-control:focus {
    outline: none;
    border-color: var(--navy-900);
    box-shadow: 0 0 0 3px rgba(11, 26, 47, 0.08);
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230f172a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
textarea.form-control {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-sans);
}
label.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-600);
    margin-bottom: 6px;
}
.hp-field { position: absolute; left: -9999px; }

.form-tiny {
    font-size: 12px;
    color: var(--slate-400);
    margin-top: 10px;
    text-align: center;
}

/* ========== Logo strip / proof bar ========== */
.proof-bar {
    background: var(--paper);
    border-bottom: 1px solid var(--slate-200);
    padding: 28px 0;
}
.proof-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
}
.proof-stat {
    text-align: center;
}
.proof-stat .num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 32px;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}
.proof-stat .label {
    font-size: 13px;
    color: var(--slate-600);
    font-weight: 500;
}

/* ========== Section base ========== */
section.section {
    padding: 100px 0;
}
section.section.tight {
    padding: 70px 0;
}
.section-head {
    max-width: 720px;
    margin-bottom: 56px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--navy-700);
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--teal);
}
.section-head h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--navy-900);
    margin-bottom: 16px;
}
.section-head h2 em {
    font-style: italic;
    font-weight: 700;
    color: var(--navy-700);
}
.section-head p {
    font-size: 17px;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ========== Services grid ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: var(--navy-900);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.service-card.featured {
    background: var(--navy-900);
    color: var(--white);
    border-color: var(--navy-900);
}
.service-card.featured .service-price,
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.75); }
.service-card.featured .service-meta { color: rgba(255,255,255,0.5); }
.service-card.featured::before {
    content: 'Most booked';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--teal);
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--paper);
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--navy-900);
}
.service-card.featured .service-icon {
    background: rgba(45, 212, 207, 0.15);
    color: var(--teal);
}
.service-icon svg {
    width: 28px;
    height: 28px;
}
.service-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}
.service-card p {
    color: var(--slate-600);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.55;
}
.service-price {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 28px;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.service-price .small {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    font-family: var(--font-sans);
}
.service-card.featured .service-price .small { color: rgba(255,255,255,0.6); }
.service-meta {
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 22px;
}
.service-link {
    color: var(--navy-900);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.service-card.featured .service-link { color: var(--teal); }
.service-link:hover { gap: 12px; }

/* ========== Builder feature section ========== */
.builder-feature {
    background: var(--paper);
}
.builder-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.builder-img-wrap {
    position: relative;
}
.builder-img-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 540px;
    object-fit: cover;
}
.builder-img-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
}
.builder-img-badge .badge-icon {
    width: 48px;
    height: 48px;
    background: var(--teal);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    font-weight: 900;
    font-size: 22px;
    flex-shrink: 0;
}
.builder-img-badge .badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.3;
}
.builder-img-badge .badge-text .sm {
    display: block;
    font-size: 12px;
    color: var(--slate-600);
    font-weight: 500;
    margin-top: 2px;
}
.builder-list {
    list-style: none;
    margin: 24px 0 32px;
}
.builder-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--slate-200);
    font-size: 16px;
    color: var(--ink);
}
.builder-list li:last-child { border-bottom: none; }
.builder-list .num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 14px;
    color: var(--teal-dark);
    background: var(--navy-900);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

/* ========== Why us / process ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.process-card {
    padding: 32px 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    position: relative;
}
.process-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 56px;
    line-height: 1;
    color: var(--teal);
    -webkit-text-stroke: 1px var(--navy-900);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.process-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--navy-900);
}
.process-card p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.55;
}

/* ========== Testimonials ========== */
.testimonials {
    background: var(--navy-900);
    color: var(--white);
}
.testimonials .section-head h2 { color: var(--white); }
.testimonials .section-head p { color: rgba(255,255,255,0.7); }
.testimonials .eyebrow { color: var(--teal); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.stars {
    color: var(--teal);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial blockquote {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--navy-900);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 16px;
}
.testimonial-author .name {
    font-weight: 600;
    font-size: 15px;
}
.testimonial-author .meta {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

/* ========== Service areas ========== */
.areas-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}
.area-pill {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    color: var(--navy-900);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.area-pill:hover {
    border-color: var(--navy-900);
    background: var(--navy-900);
    color: var(--white);
}
.area-pill::before {
    content: '◆';
    color: var(--teal-dark);
    font-size: 10px;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
details.faq-item {
    border-bottom: 1.5px solid var(--slate-200);
    padding: 24px 0;
}
details.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--navy-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.01em;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
    content: '+';
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 28px;
    color: var(--navy-700);
    transition: transform 0.2s;
    flex-shrink: 0;
}
details.faq-item[open] summary::after {
    transform: rotate(45deg);
}
details.faq-item p {
    margin-top: 14px;
    color: var(--slate-600);
    font-size: 16px;
    line-height: 1.65;
}

/* ========== Final CTA ========== */
.final-cta {
    background:
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--brand) 0%, var(--teal-deep) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06) 0%, transparent 40%);
}
.final-cta-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}
.final-cta h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: var(--white);
}
.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    max-width: 480px;
}
.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta-phone-card {
    background: var(--navy-900);
    color: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    text-align: center;
}
.cta-phone-card .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    font-weight: 600;
}
.cta-phone-card .phone {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 34px;
    color: var(--teal);
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}
.cta-phone-card .phone:hover { color: var(--teal-dark); }
.cta-phone-card .small {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ========== The Promise section ========== */
.promise-section {
    padding: 80px 0;
    background: var(--white);
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.promise-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--paper);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    transition: all 0.25s;
}
.promise-card:hover {
    background: var(--white);
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13, 36, 64, 0.08);
}
.promise-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: var(--brand-deep);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--brand);
}
.promise-card:hover .promise-icon {
    background: var(--brand);
    color: var(--white);
}
.promise-icon svg {
    width: 28px;
    height: 28px;
}
.promise-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.promise-card p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.5;
}

/* ========== About preview ========== */
.about-preview {
    padding: 100px 0;
    background: var(--paper);
}
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.about-preview-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(13, 36, 64, 0.15);
}
.about-preview-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.about-preview-img-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    color: var(--navy-900);
    padding: 12px 18px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(13, 36, 64, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-preview-img-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
}
.about-preview h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--navy-900);
    margin-bottom: 20px;
}
.about-preview h2 em {
    font-style: italic;
    color: var(--brand);
    font-weight: 700;
}
.about-preview .lead {
    font-size: 18px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 20px;
}
.about-preview p {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (max-width: 1000px) {
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
    .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-preview-img img { height: 380px; }
}
@media (max-width: 600px) {
    .promise-grid { grid-template-columns: 1fr; gap: 14px; }
    .promise-section { padding: 56px 0; }
    .about-preview { padding: 64px 0; }
    .about-preview-img img { height: 280px; }
}

/* ========== Photo showcase strip ========== */
.showcase-strip {
    padding: 60px 0 80px;
    background: var(--white);
}
.showcase-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(13, 36, 64, 0.18);
}
.showcase-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}
.showcase-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 36, 64, 0.78) 0%, rgba(13, 36, 64, 0.4) 50%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 56px;
    color: var(--white);
}
.showcase-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
    width: fit-content;
}
.showcase-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--teal);
}
.showcase-overlay h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 520px;
    color: var(--white);
}
.showcase-overlay h3 span {
    font-style: italic;
    font-weight: 700;
    color: var(--teal);
}
@media (max-width: 700px) {
    .showcase-strip { padding: 40px 0 56px; }
    .showcase-img { height: 320px; }
    .showcase-overlay { padding: 28px 24px; }
    .showcase-overlay { background: linear-gradient(180deg, rgba(13, 36, 64, 0.55) 0%, rgba(13, 36, 64, 0.85) 100%); }
}

/* ========== Photo gallery ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 16px;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    background: var(--slate-200);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,26,47,0.5) 100%);
    pointer-events: none;
}
.gallery-item .tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 1;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
}
.gallery-item.tall {
    grid-row: span 2;
}
@media (max-width: 800px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }
    .gallery-item.tall { grid-row: span 1; }
}

/* ========== Insurance badge ========== */
.insurance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(20, 184, 176, 0.3);
}
.insurance-badge::before {
    content: '🛡';
    font-size: 14px;
}
.insurance-badge strong {
    font-weight: 900;
    letter-spacing: -0.01em;
}
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 320px;
}
.footer h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.005em;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s;
}
.footer a:hover { color: var(--teal); }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255,255,255,0.45);
}
.footer-abn {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

/* ========== Page hero (inner pages) ========== */
.page-hero {
    background:
        radial-gradient(circle at 80% 40%, rgba(29, 161, 242, 0.25) 0%, transparent 55%),
        linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-deep) 70%, #103057 100%);
    color: var(--white);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--brand); }
.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: var(--white);
}
.page-hero h1 em { font-style: italic; color: var(--brand); font-weight: 700; }
.page-hero p {
    font-size: 19px;
    color: rgba(255,255,255,0.8);
    max-width: 680px;
    line-height: 1.55;
}

/* Breadcrumb */
.crumb {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.crumb a { color: rgba(255,255,255,0.7); }
.crumb a:hover { color: var(--brand); }

/* ========== Pricing page ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.price-card {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
}
.price-card.popular {
    background: var(--navy-900);
    color: var(--white);
    border-color: var(--navy-900);
}
.price-card.popular::before {
    content: 'Best value';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 999px;
}
.price-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.price-amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 48px;
    color: var(--navy-900);
    letter-spacing: -0.03em;
    margin: 16px 0 4px;
    line-height: 1;
}
.price-card.popular .price-amount { color: var(--teal); }
.price-amount .unit {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
}
.price-card.popular .price-amount .unit { color: rgba(255,255,255,0.6); }
.price-meta {
    font-size: 13px;
    color: var(--slate-600);
    margin-bottom: 24px;
}
.price-card.popular .price-meta { color: rgba(255,255,255,0.6); }
.price-list {
    list-style: none;
    margin-bottom: 28px;
}
.price-list li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.price-list li::before {
    content: '✓';
    color: var(--teal-dark);
    font-weight: 800;
    flex-shrink: 0;
}
.price-card.popular .price-list li::before { color: var(--teal); }

.pricing-note {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}
.pricing-note h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--navy-900);
}
.pricing-note p {
    font-size: 16px;
    color: var(--slate-600);
    max-width: 620px;
    margin: 0 auto 16px;
}

/* ========== About / generic content ========== */
.prose {
    max-width: 760px;
    margin: 0 auto;
}
.prose p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 20px;
}
.prose h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 32px;
    letter-spacing: -0.02em;
    color: var(--navy-900);
    margin: 48px 0 16px;
}
.prose h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--navy-900);
    margin: 32px 0 12px;
}
.prose ul {
    margin: 0 0 20px 24px;
}
.prose ul li {
    margin-bottom: 8px;
    color: var(--ink);
}

/* Contact page two-col */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: flex-start;
}
.contact-info {
    background: var(--navy-900);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
}
.contact-info h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.contact-info .info-block {
    margin-bottom: 28px;
}
.contact-info .info-block .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 6px;
}
.contact-info .info-block .value {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}
.contact-info .info-block .value a { color: var(--white); }
.contact-info .info-block .value a:hover { color: var(--teal); }
.contact-info .info-small {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* ========== Utility ========== */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-4 { margin-top: 16px; }

/* ========== Responsive ========== */

/* Hide top-bar middle text earlier — it collides with the phone number */
@media (max-width: 900px) {
    .top-bar .hide-mobile { display: none; }
}

/* Switch to mobile-style nav earlier so the desktop nav doesn't squash the logo */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 16px 24px;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow);
        z-index: 10;
    }
    .nav-links.open { display: flex; }
    .nav-links li {
        border-bottom: 1px solid var(--slate-100);
        padding: 14px 0;
    }
    .nav-links li:last-child { border-bottom: none; }
    .menu-toggle { display: block; }
    .site-header { position: relative; }
}

@media (max-width: 1000px) {
    .hero-grid,
    .builder-feature-grid,
    .contact-grid,
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid,
    .process-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .proof-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .areas-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .builder-img-wrap img { height: 380px; }
}

/* Tablet / small laptop */
@media (max-width: 700px) {
    section.section { padding: 64px 0; }
    .hero { padding: 48px 0 64px; }
    .nav-cta .btn:not(.menu-toggle) { display: none; }
    .services-grid,
    .process-grid,
    .testimonial-grid,
    .pricing-grid,
    .areas-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .proof-bar-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-row { grid-template-columns: 1fr; }
    .builder-img-badge { left: 16px; bottom: -32px; }
    .builder-img-wrap img { height: 300px; }
    .hero-card { padding: 24px; }
}

/* Small phone: shrink top bar further so the phone number sits comfortably */
@media (max-width: 520px) {
    .top-bar { font-size: 12px; }
    .top-bar .container { gap: 10px; padding-top: 8px; padding-bottom: 8px; }
    .top-bar .pill {
        padding: 3px 10px;
        font-size: 11px;
    }
    .logo { font-size: 18px; gap: 10px; }
    .logo-mark-img { height: 34px; }
}

/* Tiny phones: drop the pill entirely to make room */
@media (max-width: 400px) {
    .top-bar .pill { display: none; }
    .top-bar .container { justify-content: flex-end; }
    .top-bar a { font-size: 13px; }
}
/* Very small phones: also hide the TEXT OK badge to avoid clipping */
@media (max-width: 440px) {
    .top-bar .txt-ok { display: none; }
}
