@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@500;600;700;800;900&display=swap');

/* ==========================================================================
   Awesome Agents v3 — Homepage redesign (brand "flyer" look)
   --------------------------------------------------------------------------
   Loaded ONLY on the Home Page template (see functions.php), AFTER main.css,
   so these rules layer over the existing homepage styles.

   SCOPE RULES (do not break):
   - Visual redesign only. No copy/markup changes.
   - The hero lead form is OFF-LIMITS. Nothing here targets
     .property-search-container, .property-search, .compact, .compact-button,
     #valuation-form or any form internals. We restyle the hero shell around it.
   ========================================================================== */

:root {
    /* Brand palette pulled from the flyers / pitch deck */
    --aa3-green:        #144633;  /* deep pine green — dominant dark surface   */
    --aa3-green-deep:   #0f3527;  /* darker green for depth / gradients         */
    --aa3-green-mid:    #1d5942;
    --aa3-pink:         #e8447f;  /* hot pink — CTAs, pills, accents            */
    --aa3-pink-deep:    #c33a68;
    --aa3-cream:        #fff7eb;  /* warm cream — light sections + text on dark */
    --aa3-cream-soft:   #f7ecda;

    --aa3-pink-grad:  linear-gradient(135deg, #ef4a81 0%, #c33a68 100%);

    --aa3-pink-hot:     #ff2d8f;  /* brighter eyebrow/accent pink (Kam's design) */

    --aa3-font-head:    'Outfit', sans-serif;
    --aa3-font-body:    'Poppins', sans-serif;
    --aa3-font-display: 'Hanken Grotesk', 'Outfit', sans-serif;  /* heavy editorial */
}

/* ==========================================================================
   HERO — elevate the existing centered hero to the flyer's premium feel.
   ========================================================================== */

/* Clean, premium deep-green surface — no stock photo. The animated data
   "constellation" canvas (assets/js/home-v3.js) layers on top of this and
   signals the AI / technology positioning without clutter. */
.hero--centered {
    background: radial-gradient(125% 95% at 72% 8%, #1f6049 0%, #154835 46%, #0e3226 100%);
}

/* Faint diagonal texture + clean blend into the dark intro strip below. */
.hero--centered::before {
    background:
        repeating-linear-gradient(135deg, rgba(255,255,255,0.020) 0 2px, transparent 2px 26px),
        linear-gradient(180deg, transparent 58%, rgba(15,53,39,0.65) 86%, var(--aa3-green) 100%);
}

/* Two slow-drifting brand glows (teal + pink) keep the surface alive. */
.hero--centered::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(40% 40% at 22% 26%, rgba(45,201,165,0.18) 0%, rgba(45,201,165,0) 70%),
        radial-gradient(38% 40% at 82% 72%, rgba(232,68,127,0.16) 0%, rgba(232,68,127,0) 70%);
    animation: aa-hero-drift 20s ease-in-out infinite alternate;
}
@keyframes aa-hero-drift {
    from { transform: translate3d(-2%, -1%, 0) scale(1.03); }
    to   { transform: translate3d(2%, 2%, 0) scale(1.09); }
}

/* Remove the old diagonal chevron graphic on the home hero. */
.hero--centered .hero-chevron { display: none; }

/* Animated data-network canvas, injected by home-v3.js, above the glows. */
.hero--centered .aa-hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* Hero content sits above canvas + glows. */
.hero--centered .hero-content { position: relative; z-index: 3; }

@media (prefers-reduced-motion: reduce) {
    .hero--centered::after { animation: none; }
}

/* Headline: heavier, tighter, more confident — matches the bold flyer voice.
   Copy is unchanged; only weight / scale / rhythm change. */
.hero--centered h1 {
    font-family: var(--aa3-font-display);
    font-size: clamp(28px, 3.3vw, 42px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.5px;
    color: var(--aa3-cream);
    max-width: 1150px;
    margin: 0 auto 52px;
    animation: aa-rise 0.85s 0.15s ease both;
}

@keyframes aa-rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero--centered h1,
    .hero--centered .opening-offer-banner { animation: none; }
}

/* ---- Opening offer card — calmer, more premium "Launch Offer" block ------- */

/* Drop the constant pulse/shimmer animation for a stiller, higher-end feel. */
.hero--centered .opening-offer-banner {
    background: var(--aa3-pink-grad);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    padding: 20px 24px;
    box-shadow: 0 18px 50px -12px rgba(195, 58, 104, 0.55);
    animation: aa-rise 0.85s ease both;
    max-width: 600px;
    margin: 0 auto 52px;
}
.hero--centered .opening-offer-banner::before { display: none; } /* kill shimmer sweep */

.hero--centered .offer-badge {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-family: var(--aa3-font-head);
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 999px;
    padding: 5px 14px;
}

.hero--centered .opening-offer-banner .offer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.96);
}

.hero--centered .offer-pricing { gap: 14px; }

.hero--centered .pricing-box {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    padding: 14px 16px;
}

.hero--centered .pricing-value {
    font-family: var(--aa3-font-head);
    font-size: 1.7rem;
    font-weight: 800;
}

.hero--centered .offer-footnote {
    font-size: 0.78rem;
    opacity: 0.92;
}

@media (max-width: 768px) {
    .hero--centered h1 { margin-bottom: 36px; }
    .hero--centered .opening-offer-banner { margin-bottom: 36px; }
}

/* ==========================================================================
   EDITORIAL TYPE SYSTEM (matches Kam's generated content design)
   Huge heavy deep-green headlines with depth, hot-pink tracked eyebrows,
   bold readable sub-copy, cream surfaces with a faint pink glow.
   ========================================================================== */

/* SECTION 2 — "A smarter, more accountable way..." (dark-green statement) */
.smarter-intro {
    background:
        repeating-linear-gradient(135deg, rgba(255,255,255,0.016) 0 2px, transparent 2px 26px),
        radial-gradient(60% 60% at 50% 4%, rgba(45,201,165,0.12) 0%, rgba(45,201,165,0) 60%),
        linear-gradient(180deg, #144633 0%, #103c2d 100%);
    padding: 116px 0;
    position: relative;
}

.smarter-intro-inner { max-width: 1020px; }

.smarter-intro-inner::before {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: var(--aa3-pink-hot);
    margin: 0 auto 28px;
}

.smarter-intro h2 {
    font-family: var(--aa3-font-display);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -1.2px;
    color: var(--aa3-cream);
    margin-bottom: 26px;
    text-wrap: balance;
}

.smarter-intro p {
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.65;
    font-weight: 500;
    color: rgba(255, 247, 235, 0.82);
    max-width: 780px;
    margin: 0 auto;
}

/* ==========================================================================
   SCROLL REVEAL + PARALLAX (driven by home-v3.js)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.service-point.reveal:nth-child(2) { transition-delay: 0.10s; }
.service-point.reveal:nth-child(3) { transition-delay: 0.20s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* Full-bleed parallax background image layer + dark brand overlay. */
.section-parallax { position: relative; overflow: hidden; }
.section-parallax .section-bg {
    position: absolute;
    left: 0; right: 0; top: -14%;
    height: 128%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}
.section-parallax .section-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(11,40,30,0.92) 0%, rgba(11,40,30,0.66) 28%, rgba(11,40,30,0.58) 70%, var(--aa3-green) 100%),
        linear-gradient(95deg, rgba(11,40,30,0.62) 0%, rgba(11,40,30,0.40) 60%, rgba(11,40,30,0.34) 100%);
}

/* ==========================================================================
   SECTION 3 — "01 / The problem" (parallax image + animated glass cards)
   ========================================================================== */
.services-tailored {
    padding: 140px 0;
}

.services-tailored .services-content {
    display: block;
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
    min-height: 0;
}
.services-tailored .services-inner {
    width: 100%;
    max-width: none;
    padding-right: 0;
}
/* The old right-hand photo block is replaced by the full-bleed parallax image. */
.services-tailored .services-right { display: none; }

.services-tailored .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--aa3-pink-hot);
    margin-bottom: 18px;
}
.services-tailored .eyebrow::before {
    content: '';
    width: 26px;
    height: 3px;
    background: var(--aa3-pink-hot);
}

/* Giant cream headline over the image.
   Scoped under .services-tailored .services-inner so it beats main.css's
   `.services-inner h2` colour/size rule (specificity 0,1,1). */
.services-tailored .services-inner .services-headline {
    font-family: var(--aa3-font-display);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -2px;
    color: var(--aa3-cream);
    margin: 0 0 28px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}

.services-tailored .services-lead strong {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--aa3-cream);
}
.services-tailored .services-lead-copy {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 247, 235, 0.86);
    line-height: 1.65;
    max-width: 760px;
    margin: 4px 0 48px;
}

/* The three points become frosted glass cards over the image. */
.services-tailored .service-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.services-tailored .service-point {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 30px 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 24px 50px -24px rgba(0,0,0,0.5);
}
.services-tailored .service-icon {
    width: 50px;
    height: 50px;
    margin: 0;
    background: rgba(255, 45, 143, 0.18);
    border: 1px solid rgba(255, 45, 143, 0.40);
}
.services-tailored .service-content h3 {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 19px;
    color: var(--aa3-cream);
    margin-bottom: 8px;
}
.services-tailored .service-content p {
    font-weight: 500;
    color: rgba(255, 247, 235, 0.78);
    font-size: 14.5px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .services-tailored .services-content { padding: 0 24px; }
    .services-tailored { padding: 90px 0; }
    .services-tailored .service-points { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION 4 — "02 / The alternative" (LIGHT interstitial, no image)
   The alternating "breath" between dark parallax sections: cream surface,
   bold deep-green headline, hot-pink eyebrow, a soft pink glow. Animated.
   ========================================================================== */
.alternative-band {
    padding: 124px 24px;
    background:
        radial-gradient(54% 64% at 50% 0%, rgba(255,45,143,0.08) 0%, rgba(255,45,143,0) 62%),
        #fdf3e6;
    text-align: center;
}
.alternative-band .alternative-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}
.alternative-band .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--aa3-pink-hot);
    margin-bottom: 18px;
}
.alternative-band .eyebrow::before {
    content: '';
    width: 26px;
    height: 3px;
    background: var(--aa3-pink-hot);
}
.alternative-band .alternative-inner h2 {
    font-family: var(--aa3-font-display);
    font-size: clamp(34px, 5.4vw, 64px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -1.5px;
    color: #0e3226;
    margin-bottom: 22px;
    text-shadow: 0 3px 0 rgba(11,40,30,0.04), 0 16px 30px rgba(11,40,30,0.10);
}
.alternative-band .alternative-inner p {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 500;
    color: #5d5a52;
    line-height: 1.65;
    max-width: 760px;
    margin: 0 auto;
}

/* ==========================================================================
   SECTION 5 — "What we do differently" (dark parallax + glass cards)
   ========================================================================== */
.why-awesome {
    padding: 130px 0;
    background: var(--aa3-green);
}
/* Lighter overlay than the default so the city image reads as a backdrop:
   dark at the top for the headline, more transparent behind the glass cards. */
.why-awesome .section-overlay {
    background:
        linear-gradient(180deg, rgba(11,40,30,0.88) 0%, rgba(11,40,30,0.50) 36%, rgba(11,40,30,0.46) 72%, rgba(11,40,30,0.66) 100%);
}
.why-awesome .why-awesome-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 48px;
}
.why-awesome .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--aa3-pink-hot);
    margin-bottom: 18px;
}
.why-awesome .eyebrow::before {
    content: '';
    width: 26px;
    height: 3px;
    background: var(--aa3-pink-hot);
}
.why-awesome .why-awesome-content h2 {
    font-family: var(--aa3-font-display);
    font-size: clamp(34px, 5.2vw, 62px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -1.5px;
    color: var(--aa3-cream);
    margin-bottom: 22px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}
.why-awesome .section-intro {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 500;
    color: rgba(255, 247, 235, 0.86);
    line-height: 1.65;
    margin: 0 auto 12px;
}
.why-awesome .differ-grid {
    margin-top: 54px;
    gap: 26px;
}
.why-awesome .differ-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 38px 34px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 24px 50px -24px rgba(0,0,0,0.5);
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.why-awesome .differ-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 143, 0.40);
}
.why-awesome .differ-card h4 {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--aa3-cream);
}

/* ==========================================================================
   SECTION 6 — "Transparent fees" (LIGHT, bold colour-blocked fee cards)
   Pink / pink / green / cream cards a la Kam's mockup. Alternates after the
   dark London parallax above.
   ========================================================================== */
.fees-strip {
    background:
        radial-gradient(52% 52% at 50% 0%, rgba(255,45,143,0.07) 0%, rgba(255,45,143,0) 60%),
        #fdf3e6;
    padding: 120px 24px;
}
.fees-strip-inner {
    max-width: 1180px;
    margin: 0 auto;
}
.fees-strip-inner h2 {
    font-family: var(--aa3-font-display);
    font-size: clamp(34px, 5.2vw, 60px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -1.5px;
    color: #0e3226;
    margin: 0 0 16px;
}
.fees-strip-lead {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    color: #5d5a52;
    max-width: 720px;
    margin: 0 auto 54px;
}
.fees-strip .fees-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.fees-strip .fee-card {
    border: none;
    border-radius: 22px;
    padding: 34px 28px;
    text-align: left;
    box-shadow: 0 20px 44px -20px rgba(16,60,45,0.40);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fees-strip .fee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 56px -20px rgba(16,60,45,0.45);
}
/* Pink cards (Sales, Lettings) */
.fees-strip .fee-card:nth-child(1),
.fees-strip .fee-card:nth-child(2) {
    background: linear-gradient(150deg, #ef4a81 0%, #d4356b 100%);
}
/* Green card (Marketing) */
.fees-strip .fee-card:nth-child(3) {
    background: linear-gradient(150deg, #1d5942 0%, #0e3226 100%);
}
/* Cream card with a pink corner (Zero) */
.fees-strip .fee-card:nth-child(4) {
    background: #fffaf2;
    border: 1px solid rgba(232,68,127,0.25);
    position: relative;
    overflow: hidden;
}
.fees-strip .fee-card:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, transparent 50%, #ef4a81 50%);
}
/* Values: big, solid (override the gradient-text trick) */
.fees-strip .fee-value {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: clamp(40px, 4vw, 52px);
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--aa3-cream);
}
.fees-strip .fee-star {
    -webkit-text-fill-color: currentColor;
    color: inherit;
    font-size: 22px;
}
.fees-strip .fee-card:nth-child(4) .fee-value { color: #0e3226; }
/* Labels + notes */
.fees-strip .fee-label {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 15px;
    color: rgba(255, 247, 235, 0.96);
    margin: 18px 0 10px;
}
.fees-strip .fee-note {
    color: rgba(255, 247, 235, 0.82);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.55;
}
.fees-strip .fee-note::before {
    content: '\2713';
    margin-right: 7px;
    font-weight: 800;
    color: #fff;
}
.fees-strip .fee-card:nth-child(4) .fee-label { color: #0e3226; }
.fees-strip .fee-card:nth-child(4) .fee-note { color: #6b6b62; }
.fees-strip .fee-card:nth-child(4) .fee-note::before { color: #d4356b; }
/* Footnote + CTA */
.fees-strip .fees-footnote { color: #8a857c; margin-top: 36px; }
.fees-strip .fees-cta {
    background: linear-gradient(135deg, #ef4a81 0%, #c33a68 100%);
    border: none;
    border-radius: 999px;
    padding: 16px 36px;
    font-family: var(--aa3-font-display);
    font-weight: 700;
    box-shadow: 0 16px 34px -12px rgba(195,58,104,0.55);
}

@media (max-width: 900px) {
    .fees-strip .fees-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .fees-strip .fees-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION 7 — "See how much you could save" (dark parallax + bright calc card)
   Calculator markup/JS untouched; only the shell is restyled.
   ========================================================================== */
.savings-calc {
    padding: 130px 24px;
    background: var(--aa3-green);
}
.savings-calc .savings-calc-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}
.savings-calc .savings-calc-inner h2 {
    font-family: var(--aa3-font-display);
    font-size: clamp(34px, 5.2vw, 58px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -1.5px;
    color: var(--aa3-cream);
    margin: 0 0 14px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}
.savings-calc .savings-calc-lead {
    color: rgba(255, 247, 235, 0.86);
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 18px);
}
/* Frosted-glass calculator card — uniform with the theme's other glass cards. */
.savings-calc .calc-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 28px 56px -24px rgba(0, 0, 0, 0.55);
}
/* Glass toggle */
.savings-calc .calc-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.savings-calc .calc-tab { color: rgba(255, 247, 235, 0.82); }
/* Input + labels in cream */
.savings-calc .calc-field-label { color: var(--aa3-cream); }
.savings-calc .calc-input-wrap {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.savings-calc .calc-input-wrap:focus-within { border-color: var(--aa3-pink-hot); }
.savings-calc .calc-prefix { color: rgba(255, 247, 235, 0.7); }
.savings-calc .calc-amount { color: var(--aa3-cream); }
.savings-calc .calc-amount::placeholder { color: rgba(255, 247, 235, 0.4); }
/* Result chips: subtle glass, cream text; saving stays pink */
.savings-calc .calc-result {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.savings-calc .calc-result-label { color: rgba(255, 247, 235, 0.7); }
.savings-calc .calc-result-value {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    color: var(--aa3-cream);
}
.savings-calc .calc-result--saving {
    background: linear-gradient(135deg, #ef4a81 0%, #c33a68 100%);
    border: none;
}
.savings-calc .calc-result--saving .calc-result-value { color: #fff; }
.savings-calc .calc-basis { color: rgba(255, 247, 235, 0.66); }
.savings-calc .calc-footnote { color: rgba(255, 247, 235, 0.6); }
/* CTAs: pink pill + cream outline */
.savings-calc .calc-actions .btn-primary {
    background: linear-gradient(135deg, #ef4a81 0%, #c33a68 100%);
    border: none;
    border-radius: 999px;
    color: #fff;
}
.savings-calc .calc-actions .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 247, 235, 0.45);
    border-radius: 999px;
    color: var(--aa3-cream);
}

/* ==========================================================================
   SECTION 8 — "Selling with Awesome Agents" (LIGHT editorial, two cards)
   ========================================================================== */
.info-split--sell {
    background:
        radial-gradient(52% 52% at 50% 0%, rgba(255,45,143,0.06) 0%, rgba(255,45,143,0) 60%),
        #fdf3e6;
    padding: 120px 24px;
}
.info-split--sell .info-split-inner { max-width: 1080px; }
.info-split--sell .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--aa3-pink-hot);
    margin-bottom: 18px;
}
.info-split--sell .eyebrow::before {
    content: '';
    width: 26px;
    height: 3px;
    background: var(--aa3-pink-hot);
}
.info-split--sell .info-split-head h2 {
    font-family: var(--aa3-font-display);
    font-size: clamp(30px, 4.4vw, 50px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -1.4px;
    color: #0e3226;
    margin-bottom: 18px;
}
.info-split--sell .info-split-head p {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    color: #5d5a52;
}
/* Flashier colour-blocked cards (consistent with the fee cards). */
.info-split--sell .info-col {
    border-radius: 22px;
    padding: 38px 34px;
    box-shadow: 0 22px 48px -22px rgba(16,60,45,0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.info-split--sell .info-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 58px -22px rgba(16,60,45,0.45);
}
/* Card 1 — cream with a pink corner */
.info-split--sell .info-col:nth-child(1) {
    background: #fffaf2;
    border: 1px solid rgba(232,68,127,0.20);
}
.info-split--sell .info-col:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, transparent 50%, #ef4a81 50%);
}
/* Card 2 — bold green card with cream text + pink ticks */
.info-split--sell .info-col:nth-child(2) {
    background: linear-gradient(155deg, #1d5942 0%, #0e3226 100%);
    border: none;
}
.info-split--sell .info-col h4 {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 20px;
    color: #0e3226;
}
.info-split--sell .info-col:nth-child(2) h4 { color: var(--aa3-cream); }
.info-split--sell .info-col p { color: #5d5a52; font-weight: 500; }
.info-split--sell .info-col:nth-child(1) .ticks li { color: #3f3d38; }
.info-split--sell .info-col:nth-child(2) .ticks li { color: rgba(255,247,235,0.92); }
/* CTA — identical to the fees pink pill, for consistency */
.info-split--sell .info-split-actions .btn-primary {
    background: linear-gradient(135deg, #ef4a81 0%, #c33a68 100%);
    border: none;
    border-radius: 999px;
    padding: 16px 36px;
    font-family: var(--aa3-font-display);
    font-weight: 700;
    color: #fff;
    box-shadow: 0 16px 34px -12px rgba(195,58,104,0.55);
}

/* ==========================================================================
   SECTION 9 — "Lettings and management" (DARK parallax, glass + pink cards)
   The dark pair to the Selling section.
   ========================================================================== */
.info-split--let {
    padding: 120px 24px;
    background: var(--aa3-green);
}
.info-split--let .info-split-inner {
    position: relative;
    z-index: 2;
    max-width: 1080px;
}
.info-split--let .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--aa3-pink-hot);
    margin-bottom: 18px;
}
.info-split--let .eyebrow::before {
    content: '';
    width: 26px;
    height: 3px;
    background: var(--aa3-pink-hot);
}
.info-split--let .info-split-head h2 {
    font-family: var(--aa3-font-display);
    font-size: clamp(30px, 4.4vw, 50px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -1.4px;
    color: var(--aa3-cream);
    margin-bottom: 18px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}
.info-split--let .info-split-head p {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    color: rgba(255, 247, 235, 0.86);
}
.info-split--let .info-col {
    border-radius: 22px;
    padding: 38px 34px;
    box-shadow: 0 24px 50px -24px rgba(0,0,0,0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.info-split--let .info-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 58px -24px rgba(0,0,0,0.55);
}
/* Card 1 (For landlords) — frosted glass */
.info-split--let .info-col:nth-child(1) {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
/* Card 2 (Launch offer) — bold pink */
.info-split--let .info-col:nth-child(2) {
    background: linear-gradient(150deg, #ef4a81 0%, #c33a68 100%);
    border: none;
}
.info-split--let .info-col h4 {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--aa3-cream);
}
.info-split--let .info-col p { color: rgba(255, 247, 235, 0.84); font-weight: 500; }
.info-split--let .ticks li { color: rgba(255, 247, 235, 0.92); }
.info-split--let .info-split-actions .btn-primary {
    background: linear-gradient(135deg, #ef4a81 0%, #c33a68 100%);
    border: none;
    border-radius: 999px;
    padding: 16px 36px;
    font-family: var(--aa3-font-display);
    font-weight: 700;
    color: #fff;
    box-shadow: 0 16px 34px -12px rgba(195,58,104,0.55);
}

/* ==========================================================================
   SECTION 10 — "Credibility" (LIGHT statement)
   ========================================================================== */
.credibility-band {
    background:
        radial-gradient(54% 64% at 50% 0%, rgba(255,45,143,0.07) 0%, rgba(255,45,143,0) 62%),
        #fdf3e6;
    padding: 122px 24px;
}
.credibility-band .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--aa3-pink-hot);
    margin-bottom: 18px;
}
.credibility-band .eyebrow::before {
    content: '';
    width: 26px;
    height: 3px;
    background: var(--aa3-pink-hot);
}
.credibility-band .credibility-inner h2 {
    font-family: var(--aa3-font-display);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -1.5px;
    color: #0e3226;
    margin-bottom: 14px;
}
.credibility-band .credibility-sub {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    color: var(--aa3-pink-deep);
}
.credibility-band .credibility-inner > p {
    color: #5d5a52;
    font-weight: 500;
}
.credibility-band .credibility-actions .btn-primary {
    background: linear-gradient(135deg, #ef4a81 0%, #c33a68 100%);
    border: none;
    border-radius: 999px;
    padding: 16px 36px;
    font-family: var(--aa3-font-display);
    font-weight: 700;
    color: #fff;
    box-shadow: 0 16px 34px -12px rgba(195,58,104,0.55);
}

/* ==========================================================================
   SECTION 11 — "Start here" strategy CTA (DARK; keep the flashy cream card)
   ========================================================================== */
.strategy-review-cta {
    padding: 120px 24px;
}
/* Animated data-network behind the chevron + card (mounted by home-v3.js). */
.strategy-review-cta .aa-net-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.strategy-review-text h2 {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.4vw, 40px);
    letter-spacing: -0.8px;
}
.strategy-book-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4a81 0%, #c33a68 100%);
    color: #fff;
    border-radius: 999px;
    padding: 17px 42px;
    font-family: var(--aa3-font-display);
    font-weight: 700;
    font-size: clamp(18px, 2vw, 22px);
    box-shadow: 0 16px 34px -12px rgba(195,58,104,0.55);
}
.strategy-book-link:hover { color: #fff; transform: translateY(-2px); }
.strategy-call-btn {
    background: transparent;
    border: 1px solid rgba(255, 247, 235, 0.45);
    color: var(--aa3-cream);
    box-shadow: none;
    font-family: var(--aa3-font-display);
    font-weight: 600;
}
.strategy-call-btn:hover { color: var(--aa3-cream); }

/* ==========================================================================
   SECTION 12 — "Regulated UK Estate Agent" (LIGHT trust badges)
   ========================================================================== */
.regulated-badges {
    background: #fdf3e6;
    padding: 96px 24px 116px;
}
.regulated-inner h3 {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.8px;
    color: #0e3226;
    margin-bottom: 44px;
}
.regulated-badges .regulated-item {
    background:
        radial-gradient(70% 60% at 50% 0%, rgba(255,45,143,0.07) 0%, rgba(255,45,143,0) 70%),
        #fffaf2;
    border: 1px solid rgba(232,68,127,0.16);
    border-radius: 18px;
    padding: 42px 24px 34px;
    box-shadow: 0 18px 40px -22px rgba(16,60,45,0.30);
    position: relative;
    overflow: hidden;
}
/* Pink accent bar across the top of each badge card. */
.regulated-badges .regulated-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ef4a81 0%, #c33a68 100%);
}
.regulated-badges .regulated-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 56px -22px rgba(16,60,45,0.42);
}
.regulated-badges .regulated-icon {
    width: 66px;
    height: 66px;
    box-shadow: 0 16px 30px -6px rgba(195,58,104,0.55);
}
.regulated-badges .regulated-label {
    font-family: var(--aa3-font-display);
    font-weight: 800;
    color: var(--aa3-pink-deep);
}
