@charset "UTF-8";

/* Google Fonts Import - Work Sans (Heading) & Merriweather (Body) */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Work+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Custom Properties */
:root {
    --h76-primary: #7c3aed;
    --h76-secondary: #6d28d9;
    --h76-accent: #06b6d4;
    --h76-background: #faf5ff; /* Matches --fn-off-white */
    --h76-text: #1e1b4b;
    --h76-muted: #a78bfa;
    --h76-off-white: #faf8f5; /* Luxury Minimal specific off-white */

    --fn-font-heading: 'Work Sans', sans-serif;
    --fn-font-body: 'Merriweather', serif;

    --fn-spacing-xxs: 4px;
    --fn-spacing-xs: 8px;
    --fn-spacing-sm: 16px;
    --fn-spacing-md: 24px;
    --fn-spacing-lg: 32px;
    --fn-spacing-xl: 48px;
    --fn-spacing-xxl: 64px;
    --fn-spacing-xxxl: 96px;
    --fn-spacing-xxxxl: 128px;

    --fn-border-radius-sm: 4px;
    --fn-border-radius-md: 8px;
    --fn-border-radius-lg: 12px;
    --fn-border-radius-xl: 16px;

    --fn-transition-speed: 0.25s;
    --fn-transition-ease: cubic-bezier(0.4, 0, 0.2, 1);

    --fn-shadow-light: 0 1px 3px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.04);
    --fn-shadow-hover: 0 4px 6px rgba(0,0,0,0.08), 0 10px 25px rgba(0,0,0,0.08);
}

/* Base Styles & Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    background-color: var(--h76-off-white);
}

body {
    font-family: var(--fn-font-body);
    line-height: 1.75;
    color: var(--h76-text);
    background-color: var(--h76-off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
    background-color: var(--h76-primary);
    color: var(--h76-off-white);
}

::selection {
    background-color: var(--h76-primary);
    color: var(--h76-off-white);
}

a {
    color: var(--h76-primary);
    text-decoration: none;
    transition: color var(--fn-transition-speed) var(--fn-transition-ease);
}

a:hover {
    color: var(--h76-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--fn-border-radius-md);
}

/* Typography Scale */
.fn-h1,
h1 {
    font-family: var(--fn-font-heading);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-top: 0;
    margin-bottom: var(--fn-spacing-md);
    font-size: clamp(4rem, 8vw, 6.5rem);
    color: var(--h76-text);
}

.fn-h2,
h2 {
    font-family: var(--fn-font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-top: var(--fn-spacing-xxxl);
    margin-bottom: var(--fn-spacing-lg);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--h76-text);
}

.fn-h3,
h3 {
    font-family: var(--fn-font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-top: var(--fn-spacing-xxl);
    margin-bottom: var(--fn-spacing-md);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    color: var(--h76-text);
}

h4,
h5,
h6 {
    font-family: var(--fn-font-heading);
    font-weight: 500;
    line-height: 1.3;
    margin-top: var(--fn-spacing-lg);
    margin-bottom: var(--fn-spacing-sm);
    color: var(--h76-text);
}

p {
    margin-bottom: var(--fn-spacing-md);
    max-width: 65ch;
    font-size: 1.125rem; /* 18px */
    line-height: 1.75;
}

small,
.fn-subheading {
    font-size: 0.875rem;
    font-family: var(--fn-font-heading);
    font-weight: 500;
    color: var(--h76-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

strong {
    font-weight: 700;
}

blockquote {
    font-style: italic;
    border-left: 4px solid var(--h76-muted);
    padding-left: var(--fn-spacing-md);
    margin: var(--fn-spacing-xxl) 0;
    color: var(--h76-text);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fn-check-list {
    list-style: none;
    padding: 0;
    margin: var(--fn-spacing-lg) 0;
}

.fn-check-list .fn-check-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--fn-spacing-sm);
    font-size: 1.0625rem; /* 17px */
}

.fn-check-list .fn-check-item .fn-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-inline-end: var(--fn-spacing-xs);
    color: var(--h76-primary);
}

/* Utility Classes */
.fn-container {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--fn-spacing-md);
    padding-right: var(--fn-spacing-md);
}

.fn-section {
    padding-top: var(--fn-spacing-xxxl);
    padding-bottom: var(--fn-spacing-xxxl);
    position: relative;
}

.fn-section-alt {
    background-color: var(--h76-background);
    padding-top: var(--fn-spacing-xxxl);
    padding-bottom: var(--fn-spacing-xxxl);
    position: relative;
}

.fn-grid {
    display: grid;
    gap: var(--fn-spacing-lg);
}

.fn-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.fn-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.fn-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.fn-flex {
    display: flex;
    gap: var(--fn-spacing-md);
    align-items: center;
}

.fn-text-center {
    text-align: center;
}

/* Header & Navigation */
.fn-header {
    background-color: var(--h76-off-white);
    padding: var(--fn-spacing-md) 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.fn-header > .fn-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fn-logo {
    font-family: var(--fn-font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--h76-text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.fn-nav {
    display: flex;
    align-items: center;
}

.fn-nav-list {
    display: flex;
    gap: var(--fn-spacing-lg);
}

.fn-nav-item {
    list-style: none;
}

.fn-nav-link {
    font-family: var(--fn-font-heading);
    font-weight: 500;
    font-size: 1.0625rem;
    color: var(--h76-text);
    padding: var(--fn-spacing-xs) 0;
    position: relative;
    transition: color var(--fn-transition-speed) var(--fn-transition-ease), transform var(--fn-transition-speed) var(--fn-transition-ease);
}

.fn-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--h76-primary);
    transition: width var(--fn-transition-speed) var(--fn-transition-ease);
}

.fn-nav-link:hover::after {
    width: 100%;
}

.fn-nav-link:hover {
    transform: translateY(-2px);
    color: var(--h76-primary);
}

.fn-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--fn-spacing-lg);
    cursor: pointer;
    color: var(--h76-text);
    padding: var(--fn-spacing-xs);
}

/* Hero Section */
.fn-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--fn-spacing-xxxl);
    padding-bottom: var(--fn-spacing-xxxl);
    background: url('https://dummyimage.com/1200x800/dbeafe/1e293b&text=premium-lifestyle%20graphic-shapes%202') no-repeat center center / cover;
    position: relative;
}

.fn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.7) 0%, rgba(109, 40, 217, 0.7) 100%);
    opacity: 0.85;
}

.fn-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--h76-off-white);
    max-width: 800px;
}

.fn-hero-content .fn-h1 {
    color: var(--h76-off-white);
    margin-bottom: var(--fn-spacing-md);
}

.fn-hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: var(--fn-spacing-xl);
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--fn-font-body);
    font-weight: 300;
}

/* Buttons */
.fn-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--fn-spacing-sm) var(--fn-spacing-lg);
    font-family: var(--fn-font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--fn-border-radius-sm); /* Luxury minimal button style */
    cursor: pointer;
    transition: all var(--fn-transition-speed) var(--fn-transition-ease);
    white-space: nowrap;
}

.fn-button-primary {
    background-color: var(--h76-primary);
    color: var(--h76-off-white);
    border: 1px solid var(--h76-primary);
}

.fn-button-primary:hover {
    background-color: var(--h76-secondary);
    border-color: var(--h76-secondary);
    transform: translateY(-2px);
    box-shadow: var(--fn-shadow-light);
}

.fn-button-secondary {
    background-color: var(--h76-accent);
    color: var(--h76-off-white);
    border: 1px solid var(--h76-accent);
}

.fn-button-secondary:hover {
    background-color: #0d9488;
    border-color: #0d9488;
    transform: translateY(-2px);
    box-shadow: var(--fn-shadow-light);color:#ffffff}

.fn-button-outline {
    background-color: transparent;
    color: var(--h76-primary);
    border: 1px solid var(--h76-primary);
}

.fn-button-outline:hover {
    background-color: var(--h76-primary);
    color: var(--h76-off-white);
    transform: translateY(-2px);
    box-shadow: var(--fn-shadow-light);
}

.fn-link {
    display: inline-block;
    font-family: var(--fn-font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--h76-primary);
    position: relative;
    padding-bottom: 2px;
}

.fn-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--h76-primary);
    transition: width var(--fn-transition-speed) var(--fn-transition-ease), background-color var(--fn-transition-speed) var(--fn-transition-ease);
}

.fn-link:hover::after {
    width: 0;
    background-color: var(--h76-secondary);
}

/* Card Components - Luxury Minimal specific */
.fn-card {
    background-color: var(--h76-off-white);
    padding: var(--fn-spacing-lg);
    border-radius: var(--fn-border-radius-none); /* Luxury Minimal: no card chrome, no shadows */
    border-top: 1px solid rgba(0,0,0,0.08); /* Hairline divider */
    transition: transform var(--fn-transition-speed) var(--fn-transition-ease), box-shadow var(--fn-transition-speed) var(--fn-transition-ease);
}

.fn-card-feature,
.fn-card-service,
.fn-card-process {
    text-align: center;
    padding: var(--fn-spacing-xl) var(--fn-spacing-lg);
    background-color: var(--h76-off-white);
    border-top: 1px solid rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

.fn-card-feature:hover,
.fn-card-service:hover,
.fn-card-process:hover {
    transform: translateY(-4px);
    /* Luxury Minimal: no shadow for hover effect */
}

.fn-icon-wrapper {
    margin-bottom: var(--fn-spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
}

.fn-icon {
    stroke: currentColor;
    fill: none;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.fn-icon-large {
    width: 48px;
    height: 48px;
    color: var(--h76-primary);
}

/* Editorial Moments */
.fn-pullquote {
    font-family: var(--fn-font-body);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    text-align: center;
    margin: var(--fn-spacing-xxxl) auto;
    max-width: 70ch;
    position: relative;
    color: var(--h76-text);
}

.fn-pullquote::before {
    content: '“';
    font-family: var(--fn-font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    color: var(--h76-muted);
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
    z-index: 0;
}

.fn-pullquote cite {
    display: block;
    margin-top: var(--fn-spacing-md);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: var(--h76-muted);
}

.fn-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--fn-spacing-lg);
    text-align: center;
    margin-top: var(--fn-spacing-xxl);
    margin-bottom: var(--fn-spacing-xxl);
    padding: var(--fn-spacing-xl) 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.fn-stat-item {
    background-color: var(--h76-off-white);
    padding: var(--fn-spacing-md);
    border-radius: var(--fn-border-radius-none);
}

.fn-stat-number {
    font-family: var(--fn-font-heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    color: var(--h76-primary);
    margin-bottom: var(--fn-spacing-xs);
}

.fn-stat-label {
    font-family: var(--fn-font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--h76-text);
}

/* Testimonials */
.fn-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--fn-spacing-lg);
}

.fn-testimonial-card {
    background-color: var(--h76-off-white);
    padding: var(--fn-spacing-lg);
    border-radius: var(--fn-border-radius-none);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.fn-testimonial-quote {
    font-family: var(--fn-font-body);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--fn-spacing-md);
    color: var(--h76-text);
}

.fn-testimonial-cite {
    display: flex;
    align-items: center;
    font-family: var(--fn-font-heading);
    font-weight: 600;
    color: var(--h76-text);
    font-size: 0.95rem;
}

.fn-testimonial-cite img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-inline-end: var(--fn-spacing-sm);
    object-fit: cover;
}

.fn-testimonial-stars {
    display: flex;
    gap: var(--fn-spacing-xxs);
    color: gold;
    margin-bottom: var(--fn-spacing-sm);
}

.fn-testimonial-stars .fn-icon {
    fill: currentColor;
    stroke: none;
    width: 18px;
    height: 18px;
}

/* FAQ */
.fn-faq {
    margin-top: var(--fn-spacing-xxl);
}

.fn-faq-item {
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 0;
    background-color: var(--h76-off-white);
    padding: var(--fn-spacing-md) 0;
    overflow: hidden;
}

.fn-faq-item:last-of-type {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.fn-faq-q {
    font-family: var(--fn-font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--h76-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--fn-spacing-xs) 0;
    transition: color var(--fn-transition-speed) var(--fn-transition-ease);
}

.fn-faq-q:hover {
    color: var(--h76-primary);
}

.fn-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    line-height: 1;
    transition: transform var(--fn-transition-speed) var(--fn-transition-ease);
}

.fn-faq-item.active .fn-faq-q::after {
    transform: rotate(45deg);
}

.fn-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 1.0625rem;
    color: var(--h76-text);
    padding-right: var(--fn-spacing-lg); /* Indent slightly */
}

.fn-faq-item.active .fn-faq-a {
    max-height: 500px; /* Adjust as needed for content */
    padding-top: var(--fn-spacing-sm);
    padding-bottom: var(--fn-spacing-sm);
}

/* CTA Section */
.fn-cta {
    background-color: var(--h76-off-white);
    padding: var(--fn-spacing-xxxl) 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    text-align: center;
}

.fn-cta .fn-h2 {
    margin-top: 0;
    margin-bottom: var(--fn-spacing-lg);
}

.fn-cta p {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--fn-spacing-xl);
}

/* Form Styling */
.fn-contact-form {
    display: grid;
    gap: var(--fn-spacing-md);
    max-width: 600px;
    margin: var(--fn-spacing-xl) auto;
    padding: var(--fn-spacing-xl);
    background-color: var(--h76-off-white);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.fn-form-group {
    margin-bottom: var(--fn-spacing-sm);
}

.fn-form-label {
    display: block;
    font-family: var(--fn-font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--h76-text);
    margin-bottom: var(--fn-spacing-xs);
}

.fn-form-input,
.fn-form-textarea {
    width: 100%;
    padding: var(--fn-spacing-sm);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: var(--fn-border-radius-sm);
    font-family: var(--fn-font-body);
    font-size: 1rem;
    color: var(--h76-text);
    background-color: var(--h76-off-white);
    transition: border-color var(--fn-transition-speed) var(--fn-transition-ease), box-shadow var(--fn-transition-speed) var(--fn-transition-ease);
}

.fn-form-input:focus,
.fn-form-textarea:focus {
    outline: none;
    border-color: var(--h76-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.fn-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.fn-form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: var(--fn-spacing-xxs);
    display: none;
}

.fn-form-success {
    color: #117e39;
    font-size: 1rem;
    margin-top: var(--fn-spacing-md);
    text-align: center;
    display: none;
    font-weight: 600;
}

/* Footer */
.fn-footer {
    background-color: var(--h76-text);
    color: var(--h76-off-white);
    padding-top: var(--fn-spacing-xxxl);
    padding-bottom: var(--fn-spacing-md);
    font-size: 0.95rem;
}

.fn-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--fn-spacing-xl);
    margin-bottom: var(--fn-spacing-xxl);
}

.fn-footer-col h3 {
    color: var(--h76-off-white);
    font-size: 1.15rem;
    margin-bottom: var(--fn-spacing-md);
    font-weight: 600;
}

.fn-footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--fn-spacing-sm);
    max-width: 90%;
    line-height: 1.6;
}

.fn-footer-list {
    list-style: none;
    padding: 0;
}

.fn-footer-list li {
    margin-bottom: var(--fn-spacing-xs);
}

.fn-footer-list .fn-footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    position: relative;
    font-family: var(--fn-font-body);
}

.fn-footer-list .fn-footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--h76-primary);
    transition: width var(--fn-transition-speed) var(--fn-transition-ease);
}

.fn-footer-list .fn-footer-link:hover {
    color: var(--h76-primary);
    transform: translateX(4px);
}

.fn-footer-list .fn-footer-link:hover::after {
    width: 100%;
}

.fn-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--fn-spacing-md);
    margin-top: var(--fn-spacing-xl);
    color: rgba(255,255,255,0.5);
}

.fn-social-links {
    display: flex;
    gap: var(--fn-spacing-sm);
    margin-top: var(--fn-spacing-md);
    justify-content: flex-start;
}

.fn-social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    transition: color var(--fn-transition-speed) var(--fn-transition-ease);
}

.fn-social-links a:hover {
    color: var(--h76-primary);
}

/* Animation */
.fn-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--fn-transition-ease), transform 0.6s var(--fn-transition-ease);
}

.fn-animate.fn-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .fn-nav-list {
        gap: var(--fn-spacing-md);
    }
    .fn-section {
        padding-top: var(--fn-spacing-xxl);
        padding-bottom: var(--fn-spacing-xxl);
    }

    .fn-section-alt {
        padding-top: var(--fn-spacing-xxl);
        padding-bottom: var(--fn-spacing-xxl);
    }
}

@media (max-width: 768px) {
    .fn-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--h76-off-white);
        border-top: 1px solid rgba(0,0,0,0.05);
        padding: var(--fn-spacing-md) var(--fn-spacing-lg);
        box-shadow: var(--fn-shadow-light);
    }

    .fn-nav.active {
        display: flex;
    }

    .fn-nav-list {
        flex-direction: column;
        width: 100%;
    }

    .fn-nav-item {
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.03);
        padding: var(--fn-spacing-sm) 0;
    }

    .fn-nav-item:last-child {
        border-bottom: none;
    }

    .fn-nav-link {
        width: 100%;
        display: block;
        padding: var(--fn-spacing-sm) 0;
    }

    .fn-mobile-toggle {
        display: block;
    }

    .fn-h1,
h1 {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }

    p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .fn-hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
    }

    .fn-pullquote {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    }

    .fn-pullquote::before {
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .fn-stats {
        grid-template-columns: 1fr;
    }

    .fn-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fn-footer-col p,
    .fn-footer-list {
        text-align: center;
    }

    .fn-social-links {
        justify-content: center;
    }

    .fn-card-feature, .fn-card-service, .fn-card-process {
        padding: var(--fn-spacing-md);
    }
}

@media (max-width: 480px) {
    .fn-container {
        padding-left: var(--fn-spacing-sm);
        padding-right: var(--fn-spacing-sm);
    }

    .fn-hero {
        min-height: 60vh;
        padding-top: var(--fn-spacing-xxl);
        padding-bottom: var(--fn-spacing-xxl);
    }

    .fn-h1,
h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .fn-h2,
h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .fn-button {
        flex-direction: column;
        width: 100%;
        padding: var(--fn-spacing-sm) var(--fn-spacing-md);
    }

    .fn-cta p {
        font-size: 0.95rem;
    }

    p {
        font-size: 0.95rem;
    }

    .fn-stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}


/* === Quality polish === */
button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }

@keyframes fnFadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fn-animate { opacity: 0; }
.fn-animate.fn-visible { animation: fnFadeInUp 0.6s ease forwards; }

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.fn-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.fn-faq-item.active .fn-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.fn-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.fn-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.fn-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.fn-section { padding: 96px 0; background: #faf5ff; }
.fn-section-alt { padding: 96px 0; background: color-mix(in srgb, #7c3aed 4%, #faf5ff); }
.fn-grid { display: grid; gap: 32px; }
.fn-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.fn-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.fn-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.fn-text-center { text-align: center; }
/* Header / Nav */
.fn-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #1e1b4b 8%, transparent); }
.fn-header > .fn-container, .fn-header .fn-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.fn-brand, .fn-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Work Sans; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #7c3aed; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.fn-brand-mark { display: inline-flex; color: #7c3aed; flex-shrink: 0; }
.fn-brand-mark svg { display: block; width: 24px; height: 24px; }
.fn-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.fn-nav-list, .fn-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.fn-nav-link { color: #1e1b4b; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.fn-nav-link + .fn-nav-link { margin-left: 0; }
.fn-nav-link:hover { color: #7c3aed; }
.fn-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.fn-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #7c3aed 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #7c3aed 7%, #faf5ff) 0%, #faf5ff 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.fn-hero [class*="ghost"], .fn-hero [class*="bg-text"], .fn-hero [class*="watermark"], .fn-hero [class*="hero-bg"], .fn-hero [aria-hidden="true"][class*="text"], .fn-hero [data-decorative="true"] { display: none !important; }
.fn-hero .fn-hero-image, .fn-hero .fn-dashboard-mockup { position: relative !important; }
.fn-hero .fn-hero-image { max-width: 100%; }
.fn-hero .fn-hero-image > * { max-width: 100%; }
.fn-hero .fn-stats { position: static !important; }
.fn-hero > .fn-container { max-width: 1200px; }
.fn-hero h1, .fn-hero .fn-h1 { font-family: Work Sans; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #1e1b4b; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.fn-hero p, .fn-hero .fn-hero-sub, .fn-hero .fn-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #a78bfa; max-width: 48ch; margin: 0; }
.fn-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.fn-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.fn-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.fn-hero-image { position: relative; }
.fn-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #7c3aed 12%, transparent); z-index: 0; }
.fn-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.fn-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #a78bfa; max-width: 60ch; }
.fn-h1 { font-family: Work Sans; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #1e1b4b; margin: 0; }
.fn-h2 { font-family: Work Sans; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #1e1b4b; margin: 0 0 24px; }
.fn-h3 { font-family: Work Sans; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #1e1b4b; margin: 0 0 12px; }
.fn-subheading { font-size: 1.125rem; line-height: 1.7; color: #a78bfa; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.fn-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.fn-button-primary { background: #7c3aed; color: #fff; border-color: #7c3aed; }
.fn-button-primary:hover { background: #6d28d9; border-color: #6d28d9; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #7c3aed 50%, transparent); }
.fn-button-secondary { background: #6d28d9; color: #fff; border-color: #6d28d9; }
.fn-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.fn-button-outline { background: transparent; color: #7c3aed; border-color: #7c3aed; }
.fn-button-outline:hover { background: #7c3aed; color: #fff; }
.fn-link { color: #7c3aed; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.fn-link:hover { gap: 10px; }
/* Cards */
.fn-card { background: #fff; border: 1px solid color-mix(in srgb, #1e1b4b 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.fn-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.fn-card-feature, .fn-card-service, .fn-card-process { text-align: left; }
/* Icons */
.fn-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #7c3aed 10%, transparent); color: #7c3aed; }
.fn-icon-wrapper svg, .fn-icon-wrapper .fn-icon { width: 28px; height: 28px; stroke: #7c3aed; }
.fn-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.fn-icon-large { width: 48px; height: 48px; stroke: #7c3aed; }
/* Check list */
.fn-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.fn-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.fn-check-item .fn-icon { color: #7c3aed; margin-top: 4px; }
/* Editorial */
.fn-pullquote { font-family: Work Sans; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #1e1b4b; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.fn-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #7c3aed; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.fn-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.fn-stat-item { text-align: center; }
.fn-stat-number { display: block; font-family: Work Sans; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #7c3aed; line-height: 1; letter-spacing: -0.03em; }
.fn-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #a78bfa; }
/* Testimonials */
.fn-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.fn-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #1e1b4b 6%, transparent); }
.fn-testimonial-quote { font-style: italic; line-height: 1.7; color: #1e1b4b; margin-bottom: 16px; }
.fn-testimonial-cite { font-weight: 600; color: #7c3aed; font-size: 0.95rem; }
.fn-testimonial-stars { color: #06b6d4; margin-bottom: 12px; }
/* FAQ */
.fn-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.fn-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #1e1b4b 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.fn-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.fn-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #1e1b4b; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.fn-faq-q::after { content: '+'; font-size: 1.5rem; color: #7c3aed; transition: transform 0.3s ease; flex-shrink: 0; }
.fn-faq-item.active .fn-faq-q::after { transform: rotate(45deg); }
/* CTA */
.fn-cta { padding: 96px 0; background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); color: #fff; text-align: center; }
.fn-cta .fn-h2, .fn-cta h2 { color: #fff; }
.fn-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.fn-cta .fn-button-primary { background: #fff; color: #7c3aed; border-color: #fff; }
.fn-cta .fn-button-primary:hover { background: #faf5ff; color: #7c3aed; }
/* Form */
.fn-form, .fn-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #1e1b4b 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #7c3aed 40%, transparent); text-align: left; color: #1e1b4b; }
.fn-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .fn-form-row { grid-template-columns: 1fr; } }
.fn-form-group { display: flex; flex-direction: column; gap: 8px; }
.fn-form-label, .fn-form label { font-weight: 600; font-size: 0.9rem; color: #1e1b4b; letter-spacing: 0.01em; }
.fn-form-input, .fn-form-textarea, .fn-form input:not([type="submit"]), .fn-form textarea, .fn-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #1e1b4b 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #7c3aed 2%, #fff); color: #1e1b4b; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.fn-form-input:hover, .fn-form-textarea:hover { border-color: color-mix(in srgb, #7c3aed 35%, transparent); }
.fn-form-input:focus, .fn-form-textarea:focus, .fn-form input:focus, .fn-form textarea:focus { outline: none; border-color: #7c3aed; box-shadow: 0 0 0 4px color-mix(in srgb, #7c3aed 18%, transparent); }
.fn-form-textarea, .fn-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.fn-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.fn-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.fn-form-error[hidden], .fn-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.fn-form-error.is-visible, .fn-form-success.is-visible { display: block; }
.fn-cta .fn-form, .fn-cta .fn-contact-form { color: #1e1b4b; }
.fn-cta .fn-form button[type="submit"], .fn-cta .fn-contact-form button[type="submit"] { background: #7c3aed; color: #fff; border-color: #7c3aed; }
/* Footer */
.fn-footer { background: #1e1b4b; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.fn-footer .fn-h3, .fn-footer h3, .fn-footer h4 { color: #fff; font-family: Work Sans; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.fn-footer .fn-logo { color: #fff; }
.fn-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.fn-footer-col { display: flex; flex-direction: column; gap: 12px; }
.fn-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.fn-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.fn-footer-link:hover { color: #fff; }
.fn-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.fn-social-links { display: flex; gap: 16px; }
.fn-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.fn-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .fn-hero { padding: 80px 0 64px; }
  .fn-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .fn-section, .fn-section-alt { padding: 64px 0; }
  .fn-cta { padding: 64px 0; }
  .fn-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .fn-nav-list { display: none; }
  .fn-mobile-toggle { display: inline-flex; }
  .fn-nav.active .fn-nav-list, .fn-header.active .fn-nav-list, .fn-nav-list.active, .fn-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .fn-card { padding: 24px; }
  .fn-form, .fn-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: luxury_minimal === */
.fn-section { padding: 160px 0; background: #faf8f5; }
.fn-hero { padding: 200px 0 160px; background: #faf8f5; text-align: center; }
.fn-hero .fn-container, .fn-hero-content { max-width: 920px; margin: 0 auto; }
.fn-h1 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; letter-spacing: -0.03em; font-size: clamp(3.5rem, 6vw, 6rem); line-height: 1.05; }
.fn-card, .fn-card-feature, .fn-card-service { background: transparent; border: none; border-top: 1px solid rgba(0,0,0,0.12); box-shadow: none; padding: 32px 0 0; border-radius: 0; }
.fn-card:hover { transform: none; box-shadow: none; border-top-color: #7c3aed; }
.fn-button-primary { background: transparent; color: #1c1917; border: 1px solid #1c1917; border-radius: 0; padding: 14px 32px; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; }
.fn-button-secondary { background: transparent; color: #1c1917; border: none; border-bottom: 1px solid currentColor; border-radius: 0; padding: 4px 0; }
.fn-pullquote { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.75rem, 3vw, 2.5rem); font-style: italic; max-width: 820px; margin: 96px auto; line-height: 1.4; }