/* ===========================================
   Crescendo Design System
   Shared styles for both Brook Mays & Fishburn
   Tenant-specific values via CSS custom properties
   =========================================== */

/* --- Tenant: Brook Mays --- */
.tenant-brookmays {
    --cr-primary: #A31E23;
    --cr-primary-dark: #8A191D;
    --cr-accent: #C4C7C8;
    --cr-bg-dark: #1A1A1A;
    --cr-bg-off: #FAFAFA;
    --cr-charcoal: #1A1A1A;
    --cr-text-grey: #6B6B6B;
    --cr-white: #FFFFFF;
    --cr-hero-overlay: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.9) 100%);
    --cr-trust-border: rgba(0,0,0,0.04);
    --cr-why-tag-color: #C4C7C8;
    --cr-quote-border: #A31E23;
    --cr-hero-filter: grayscale(20%);
    --cr-border-radius: 2px;
}

/* --- Tenant: Fishburn --- */
.tenant-fishburn {
    --cr-primary: #8B6914;
    --cr-primary-dark: #725812;
    --cr-accent: #C9A227;
    --cr-bg-dark: #17212e;
    --cr-bg-off: #FBF8F3;
    --cr-charcoal: #2A2A2A;
    --cr-text-grey: #6B6B6B;
    --cr-white: #FFFFFF;
    --cr-hero-overlay: linear-gradient(180deg, rgba(255,253,249,0.92) 0%, rgba(251,248,243,0.7) 40%, rgba(255,255,255,0.95) 100%);
    --cr-trust-border: rgba(139, 105, 20, 0.1);
    --cr-why-tag-color: #C9A227;
    --cr-quote-border: #C9A227;
    --cr-hero-filter: sepia(10%) saturate(90%);
    --cr-border-radius: 0;
}

/* ===========================================
   Crescendo Navigation
   =========================================== */
.crescendo-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--cr-trust-border);
    animation: crSlideDown 0.8s ease-out;
}

@keyframes crSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.crescendo-nav .cr-logo {
    height: 50px;
}

.crescendo-nav .cr-logo img {
    height: 100%;
    width: auto;
}

/* Fishburn text-based logo */
.crescendo-nav .cr-logo-text {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.crescendo-nav .cr-logo-text em {
    font-style: italic;
    color: var(--cr-primary);
}

.crescendo-nav .cr-logo-text span {
    font-style: normal;
    color: var(--cr-charcoal);
    font-weight: 400;
}

.cr-nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cr-nav-links a {
    text-decoration: none;
    color: var(--cr-text-grey);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.cr-nav-links a:hover {
    color: var(--cr-charcoal);
}

.cr-nav-buttons {
    display: flex;
    gap: 1rem;
}

.cr-nav-secondary {
    background: transparent;
    color: var(--cr-charcoal);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--cr-accent);
    border-radius: var(--cr-border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cr-nav-secondary:hover {
    border-color: var(--cr-charcoal);
}

.tenant-fishburn .cr-nav-secondary {
    border-color: #374759;
}

.tenant-fishburn .cr-nav-secondary:hover {
    background: #374759;
    color: var(--cr-white);
}

.cr-nav-cta {
    background: var(--cr-primary);
    color: var(--cr-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--cr-border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cr-nav-cta:hover {
    background: var(--cr-primary-dark);
    transform: translateY(-1px);
}

/* ===========================================
   Hero Section
   =========================================== */
.cr-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.cr-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: var(--cr-hero-filter);
}

.cr-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cr-hero-overlay);
    z-index: 1;
}

.cr-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: crFadeUp 1s ease-out 0.3s both;
}

@keyframes crFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.cr-hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cr-primary);
    margin-bottom: 2rem;
    animation: crFadeUp 1s ease-out 0.5s both;
}

.tenant-fishburn .cr-hero-tag {
    border: 1px solid var(--cr-primary);
    padding: 0.5rem 1rem;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
}

.cr-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--cr-charcoal);
    margin-bottom: 1.5rem;
}

.tenant-fishburn .cr-hero h1 {
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 5.5rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cr-hero h1 em {
    font-style: italic;
    color: var(--cr-primary);
}

.cr-hero-sub {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--cr-text-grey);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: crFadeUp 1s ease-out 0.7s both;
}

.tenant-fishburn .cr-hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.cr-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: crFadeUp 1s ease-out 0.9s both;
}

/* ===========================================
   Buttons
   =========================================== */
.cr-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--cr-primary);
    color: var(--cr-white);
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--cr-border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tenant-fishburn .cr-btn-primary {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cr-btn-primary:hover {
    background: var(--cr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cr-btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cr-btn-primary:hover svg {
    transform: translateX(4px);
}

.cr-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--cr-white);
    color: var(--cr-charcoal);
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--cr-border-radius);
    border: 1px solid var(--cr-accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tenant-fishburn .cr-btn-secondary {
    background: transparent;
    border-color: var(--cr-charcoal);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cr-btn-secondary:hover {
    border-color: var(--cr-charcoal);
    background: var(--cr-bg-off);
}

.tenant-fishburn .cr-btn-secondary:hover {
    background: var(--cr-charcoal);
    color: var(--cr-white);
}

/* ===========================================
   Trust Bar
   =========================================== */
.cr-trust-bar {
    padding: 4rem 2rem;
    background: var(--cr-bg-off);
    border-top: 1px solid var(--cr-trust-border);
    border-bottom: 1px solid var(--cr-trust-border);
}

.cr-trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.cr-trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--cr-text-grey);
    font-size: 0.9rem;
    font-weight: 500;
}

.cr-trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--cr-primary);
    flex-shrink: 0;
}

.cr-trust-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--cr-charcoal);
}

.tenant-fishburn .cr-trust-number {
    font-weight: 500;
}

/* ===========================================
   How It Works
   =========================================== */
.cr-how-it-works {
    padding: 8rem 2rem;
    background: var(--cr-white);
}

.cr-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.cr-section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cr-primary);
    margin-bottom: 1rem;
}

.tenant-fishburn .cr-section-tag {
    letter-spacing: 0.25em;
    font-size: 0.7rem;
}

.cr-section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--cr-charcoal);
}

.tenant-fishburn .cr-section-header h2 {
    font-weight: 400;
    letter-spacing: -0.01em;
}

.cr-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cr-step {
    text-align: center;
    padding: 2rem;
}

.cr-step-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--cr-accent);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.tenant-fishburn .cr-step-number {
    color: rgba(139, 105, 20, 0.3);
}

.cr-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cr-charcoal);
    margin-bottom: 0.75rem;
}

.tenant-fishburn .cr-step h3 {
    font-weight: 500;
    font-size: 1.35rem;
}

.cr-step p {
    font-size: 0.95rem;
    color: var(--cr-text-grey);
    line-height: 1.6;
}

.tenant-fishburn .cr-step p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===========================================
   Why Section
   =========================================== */
.cr-why-section {
    padding: 8rem 2rem;
    background: var(--cr-bg-dark);
    color: var(--cr-white);
}

.cr-why-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.tenant-fishburn .cr-why-content {
    max-width: 1100px;
    gap: 5rem;
}

.cr-why-text .cr-section-tag {
    color: var(--cr-why-tag-color);
}

.cr-why-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.tenant-fishburn .cr-why-text h2 {
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.cr-why-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.tenant-fishburn .cr-why-text p {
    font-size: 1rem;
}

.cr-why-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--cr-white);
    padding-left: 1.5rem;
    border-left: 2px solid var(--cr-quote-border);
}

.tenant-fishburn .cr-why-quote {
    font-size: 1.2rem;
}

.cr-why-image {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 4px;
}

.tenant-fishburn .cr-why-image {
    border-radius: 2px;
}

/* ===========================================
   CTA Section
   =========================================== */
.cr-cta-section {
    padding: 8rem 2rem;
    background: var(--cr-white);
    text-align: center;
}

.tenant-fishburn .cr-cta-section {
    background: var(--cr-bg-off);
}

.cr-cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--cr-charcoal);
    margin-bottom: 1rem;
}

.tenant-fishburn .cr-cta-section h2 {
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3rem);
}

.cr-cta-section p {
    font-size: 1.1rem;
    color: var(--cr-text-grey);
    margin-bottom: 2.5rem;
}

.cr-cta-section .cr-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================================
   Footer
   =========================================== */
.cr-footer {
    padding: 4rem 2rem;
    background: var(--cr-bg-off);
    border-top: 1px solid var(--cr-trust-border);
}

.tenant-fishburn .cr-footer {
    background: var(--cr-white);
}

.cr-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cr-footer-logo {
    height: 40px;
}

.cr-footer-logo img {
    height: 100%;
    width: auto;
}

.cr-footer-logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--cr-primary);
    text-decoration: none;
}

.cr-footer-logo-text span {
    font-style: normal;
    color: var(--cr-charcoal);
    font-weight: 400;
}

.cr-footer-text {
    font-size: 0.875rem;
    color: var(--cr-text-grey);
}

/* ===========================================
   Scroll Animations
   =========================================== */
.cr-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cr-animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   Responsive
   =========================================== */
@media (max-width: 968px) {
    .crescendo-nav {
        padding: 1rem 2rem;
    }

    .cr-nav-links {
        display: none;
    }

    .cr-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cr-why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cr-footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===========================================
   First Note Design System
   =========================================== */

/* --- First Note: Brook Mays overrides --- */
.tenant-brookmays .fn-section-tag {
    background: rgba(163, 30, 35, 0.08);
    color: #A31E23;
}

.tenant-brookmays .fn-btn-primary {
    box-shadow: 0 4px 14px rgba(163, 30, 35, 0.25);
}

.tenant-brookmays .fn-feature-icon {
    background: rgba(0, 103, 177, 0.08);
}

.tenant-brookmays .fn-feature-icon svg {
    color: #0067B1;
}

.tenant-brookmays .fn-cta-section .fn-btn-primary {
    background: var(--cr-white);
    color: #2D2D2D;
}

.tenant-brookmays .fn-cta-section .fn-btn-secondary {
    border-color: rgba(255,255,255,0.3);
    color: var(--cr-white);
    background: transparent;
}

/* --- First Note: Fishburn overrides --- */
.tenant-fishburn .fn-section-tag {
    background: rgba(139, 105, 20, 0.08);
    color: #8B6914;
}

.tenant-fishburn .fn-btn-primary {
    box-shadow: 0 4px 14px rgba(139, 105, 20, 0.25);
}

.tenant-fishburn .fn-feature-icon {
    background: rgba(55, 71, 89, 0.08);
}

.tenant-fishburn .fn-feature-icon svg {
    color: #374759;
}

.tenant-fishburn .fn-cta-section {
    background: #17212e;
}

.tenant-fishburn .fn-cta-section .fn-btn-primary {
    background: #C9A227;
    color: var(--cr-white);
}

.tenant-fishburn .fn-cta-section .fn-btn-secondary {
    border-color: rgba(255,255,255,0.3);
    color: var(--cr-white);
    background: transparent;
}

/* First Note Hero */
.fn-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 4rem 4rem;
    gap: 4rem;
    background: linear-gradient(135deg, var(--cr-white) 0%, var(--cr-bg-off) 100%);
    position: relative;
    overflow: hidden;
}

.fn-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(var(--cr-primary), 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.tenant-brookmays .fn-hero::before {
    background: radial-gradient(ellipse, rgba(163, 30, 35, 0.08) 0%, transparent 70%);
}

.tenant-fishburn .fn-hero::before {
    background: radial-gradient(ellipse, rgba(139, 105, 20, 0.06) 0%, transparent 70%);
}

.fn-hero-content {
    position: relative;
    z-index: 10;
}

.fn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cr-white);
    border: 1px solid #E8EAEB;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cr-text-grey);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.fn-hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--cr-primary);
}

.fn-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cr-charcoal);
    margin-bottom: 1.25rem;
}

.fn-hero h1 span {
    color: var(--cr-primary);
}

.fn-hero-sub {
    font-size: 1.15rem;
    color: var(--cr-text-grey);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.fn-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.fn-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cr-primary);
    color: var(--cr-white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fn-btn-primary:hover {
    transform: translateY(-2px);
}

.fn-btn-primary svg {
    transition: transform 0.3s ease;
}

.fn-btn-primary:hover svg {
    transform: translateX(4px);
}

.fn-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cr-white);
    color: var(--cr-charcoal);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid var(--cr-accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.fn-btn-secondary:hover {
    border-color: var(--cr-charcoal);
}

/* First Note Hero Trust */
.fn-hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.fn-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--cr-text-grey);
}

.fn-trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--cr-primary);
}

/* First Note Hero Image */
.fn-hero-image {
    position: relative;
    z-index: 10;
}

.fn-hero-image-container {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #f5f0eb 0%, #ebe5df 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.fn-hero-image-placeholder {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fn-floating-card {
    position: absolute;
    background: var(--cr-white);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fnFloat 3s ease-in-out infinite;
}

.fn-floating-card.fn-card-1 {
    bottom: -20px;
    left: -30px;
}

.fn-floating-card.fn-card-2 {
    top: 20px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes fnFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fn-card-stat {
    font-size: 1.5rem;
    color: var(--cr-primary);
    line-height: 1;
}

.fn-card-label {
    font-size: 0.75rem;
    color: var(--cr-text-grey);
    margin-top: 0.25rem;
}

/* First Note Trust Strip */
.fn-trust-strip {
    padding: 3rem 4rem;
    background: var(--cr-white);
    border-bottom: 1px solid #E8EAEB;
}

.fn-trust-strip-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.fn-trust-strip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fn-trust-strip-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fn-trust-strip-icon svg {
    width: 22px;
    height: 22px;
}

.fn-trust-strip-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cr-charcoal);
}

.fn-trust-strip-text span {
    font-size: 0.8rem;
    color: var(--cr-text-grey);
}

/* First Note Steps */
.fn-how-it-works {
    padding: 6rem 4rem;
    background: var(--cr-bg-off);
}

.fn-section-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 4rem;
}

.fn-section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.fn-section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--cr-charcoal);
}

.fn-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fn-step-card {
    background: var(--cr-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.fn-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.fn-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cr-primary) 0%, var(--cr-primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.fn-step-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.fn-step-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--cr-charcoal);
    margin-bottom: 0.5rem;
}

.fn-step-card p {
    font-size: 0.9rem;
    color: var(--cr-text-grey);
    line-height: 1.6;
}

/* First Note Testimonials */
.fn-testimonials {
    padding: 6rem 4rem;
    background: var(--cr-white);
}

.fn-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.fn-testimonial-card {
    background: var(--cr-bg-off);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #E8EAEB;
}

.fn-testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.fn-testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #F5A623;
    fill: #F5A623;
}

.fn-testimonial-text {
    font-size: 0.95rem;
    color: var(--cr-charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.fn-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fn-testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--cr-accent);
    border-radius: 50%;
}

.fn-testimonial-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--cr-charcoal);
}

.fn-testimonial-info span {
    font-size: 0.8rem;
    color: var(--cr-text-grey);
}

/* First Note Difference/Why Section */
.fn-difference {
    padding: 6rem 4rem;
    background: linear-gradient(180deg, var(--cr-bg-off) 0%, var(--cr-white) 100%);
}

.fn-difference-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fn-difference-image {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.fn-difference-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--cr-charcoal);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.fn-difference-text > p {
    font-size: 1rem;
    color: var(--cr-text-grey);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.fn-difference-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fn-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.fn-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.fn-feature-icon svg {
    width: 14px;
    height: 14px;
}

.fn-feature-item p {
    font-size: 0.9rem;
    color: var(--cr-charcoal);
    line-height: 1.5;
}

/* First Note CTA */
.fn-cta-section {
    padding: 6rem 4rem;
    background: #2D2D2D;
    text-align: center;
}

.fn-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.fn-cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--cr-white);
    margin-bottom: 1rem;
}

.fn-cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.fn-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* First Note Footer */
.fn-footer {
    padding: 4rem;
    background: var(--cr-bg-off);
    border-top: 1px solid #E8EAEB;
}

.fn-footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.fn-footer-brand {
    max-width: 280px;
}

.fn-footer-brand p {
    font-size: 0.9rem;
    color: var(--cr-text-grey);
    line-height: 1.6;
}

.fn-footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cr-charcoal);
    margin-bottom: 1rem;
}

.fn-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fn-footer-col li {
    margin-bottom: 0.5rem;
}

.fn-footer-col a {
    font-size: 0.9rem;
    color: var(--cr-text-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fn-footer-col a:hover {
    color: var(--cr-primary);
}

.fn-footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #E8EAEB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fn-footer-bottom p {
    font-size: 0.85rem;
    color: var(--cr-text-grey);
}

/* First Note Responsive */
@media (max-width: 1024px) {
    .fn-hero {
        grid-template-columns: 1fr;
        padding: 7rem 2rem 3rem;
        text-align: center;
    }

    .fn-hero-content {
        order: 1;
    }

    .fn-hero-image {
        order: 2;
    }

    .fn-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .fn-hero-buttons {
        justify-content: center;
    }

    .fn-hero-trust {
        justify-content: center;
    }

    .fn-steps {
        grid-template-columns: 1fr;
    }

    .fn-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .fn-difference-content {
        grid-template-columns: 1fr;
    }

    .fn-footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .fn-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .fn-trust-strip {
        padding: 2rem;
    }

    .fn-how-it-works,
    .fn-testimonials,
    .fn-difference,
    .fn-cta-section,
    .fn-footer {
        padding: 4rem 2rem;
    }
}
