    @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800&family=Source+Sans+Pro:wght@400;600&display=swap');

    :root {
        --ujw-primary: #7e22ce;
        --ujw-secondary: #581c87;
        --ujw-accent: #fb923c;
        --ujw-background: #faf5ff;
        --ujw-text: #3b0764;
        --ujw-muted: #c084fc;
        --ujw-light-gray: #f0f0f0;
        --ujw-dark-gray: #333333;
        --ujw-white: #ffffff;

        --ujw-border-radius-card: 16px;
        --ujw-border-radius-button: 12px;
        --ujw-border-radius-image: 8px;

        --ujw-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
        --ujw-shadow-md: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
        --ujw-shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 3px 6px rgba(0,0,0,0.05);

        --ujw-transition-speed: 0.25s;
        --ujw-transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    body {
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 1.125rem; /* 18px */
        line-height: 1.75;
        color: var(--ujw-text);
        background-color: var(--ujw-background);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    ::selection {
        background-color: var(--ujw-accent);
        color: var(--ujw-white);
    }

    /* Typography Scale */
    h1, .ct-h1 {
        font-family: 'Nunito', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem); /* 40px to 72px */
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1.05;
        color: var(--ujw-text);
    }

    h2, .ct-h2 {
        font-family: 'Nunito', sans-serif;
        font-size: clamp(2rem, 3.5vw, 3rem); /* 32px to 48px */
        font-weight: 700;
        letter-spacing: -0.015em;
        line-height: 1.15;
        color: var(--ujw-text);
    }

    h3, .ct-h3 {
        font-family: 'Nunito', sans-serif;
        font-size: clamp(1.5rem, 2.5vw, 1.875rem); /* 24px to 30px */
        font-weight: 700;
        letter-spacing: -0.01em;
        line-height: 1.2;
        color: var(--ujw-text);
    }

    p {
        margin-bottom: 1em;
        max-width: 65ch;
    }

    a {
        color: var(--ujw-primary);
        text-decoration: none;
        transition: color var(--ujw-transition-speed) var(--ujw-transition-easing);
    }

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

    strong {
        font-weight: 600;
    }

    em {
        font-style: italic;
    }

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

    /* Utility Classes */
    .ct-container {
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .ct-section {
        padding-top: 96px;
        padding-bottom: 96px;
        position: relative;
    }

    .ct-section-alt {
        background-color: var(--ujw-white);
        padding-top: 96px;
        padding-bottom: 96px;
        position: relative;
    }

    .ct-grid {
        display: grid;
        gap: 24px;
    }

    .ct-grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    @media (min-width: 768px) {
        .ct-grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .ct-grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    @media (min-width: 768px) {
        .ct-grid-3 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .ct-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .ct-grid-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    @media (min-width: 768px) {
        .ct-grid-4 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .ct-grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .ct-flex {
        display: flex;
        gap: 24px;
    }

    .ct-flex-col {
        flex-direction: column;
    }

    .ct-flex-center {
        justify-content: center;
        align-items: center;
    }

    .ct-text-center {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .ct-subheading {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--ujw-primary);
        margin-bottom: 8px;
        display: block;
    }

    .ct-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        vertical-align: middle;
    }

    .ct-icon-large {
        width: 48px;
        height: 48px;
        color: var(--ujw-primary);
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
    }

    .ct-icon-wrapper {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(126, 34, 206, 0.1);
        border-radius: 50%;
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    /* Header & Navigation */
    .ct-header {
        background-color: var(--ujw-white);
        padding: 24px 0;
        box-shadow: var(--ujw-shadow-sm);
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .ct-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .ct-logo {
        font-family: 'Nunito', sans-serif;
        font-size: 1.875rem;
        font-weight: 800;
        color: var(--ujw-primary);
        text-decoration: none;
        line-height: 1;
    }

    .ct-nav-list {
        list-style: none;
        display: flex;
        gap: 32px;
    }

    .ct-nav-item {
        position: relative;
    }

    .ct-nav-link {
        color: var(--ujw-text);
        font-weight: 600;
        padding: 8px 0;
        position: relative;
    }

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

    .ct-nav-link:hover::after, .ct-nav-link.active::after {
        width: 100%;
    }

    .ct-mobile-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--ujw-primary);
        z-index: 1001;
    }

    @media (max-width: 768px) {
        .ct-nav-list {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--ujw-white);
            padding: 96px 24px 24px;
            box-shadow: var(--ujw-shadow-md);
            transition: transform var(--ujw-transition-speed) var(--ujw-transition-easing);
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }

        .ct-nav-list.active {
            display: flex;
            transform: translateY(0%);
            opacity: 1;
            pointer-events: all;
        }

        .ct-nav-item {
            margin-bottom: 16px;
        }

        .ct-nav-link {
            font-size: 1.5rem;
        }

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

    /* Hero Section */
    .ct-hero {
        background-color: var(--ujw-background);
        min-height: 80vh;
        display: flex;
        align-items: center;
        padding-top: 96px;
        padding-bottom: 96px;
        position: relative;
        overflow: hidden;
    }

    .ct-hero-content {
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
        z-index: 10;
        position: relative;
    }

    .ct-hero-text {
        max-width: 600px;
    }

    .ct-hero-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.8;
        clip-path: ellipse(70% 70% at 90% 50%); /* Rounded blob background */
    }

    @media (max-width: 1024px) {
        .ct-hero-image {
            width: 100%;
            height: 50%;
            top: auto;
            bottom: 0;
            left: 0;
            clip-path: ellipse(70% 70% at 50% 90%);
        }
        .ct-hero-content {
            align-items: center;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 768px) {
        .ct-hero {
            min-height: 70vh;
            padding-top: 64px;
            padding-bottom: 64px;
        }
        .ct-hero-image {
            opacity: 0.5;
        }
    }


    /* Buttons */
    .ct-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        border-radius: var(--ujw-border-radius-button);
        font-weight: 600;
        font-size: 1.125rem;
        text-decoration: none;
        transition: all var(--ujw-transition-speed) var(--ujw-transition-easing);
        cursor: pointer;
        border: 2px solid transparent;
        line-height: 1;
    }

    .ct-button-primary {
        background-color: var(--ujw-primary);
        color: var(--ujw-white);
    }

    .ct-button-primary:hover {
        background-color: var(--ujw-secondary);
        transform: translateY(-2px);
        box-shadow: var(--ujw-shadow-sm);
    }

    .ct-button-secondary {
        background-color: var(--ujw-muted);
        color: var(--ujw-text);
    }

    .ct-button-secondary:hover {
        background-color: var(--ujw-primary);
        color: var(--ujw-white);
        transform: translateY(-2px);
        box-shadow: var(--ujw-shadow-sm);
    }

    .ct-button-outline {
        background-color: transparent;
        color: var(--ujw-primary);
        border-color: var(--ujw-primary);
    }

    .ct-button-outline:hover {
        background-color: var(--ujw-primary);
        color: var(--ujw-white);
        transform: translateY(-2px);
        box-shadow: var(--ujw-shadow-sm);
    }

    .ct-link {
        color: var(--ujw-primary);
        text-decoration: underline;
        font-weight: 600;
    }

    .ct-link:hover {
        color: var(--ujw-secondary);
    }

    /* Cards */
    .ct-card {
        background-color: var(--ujw-white);
        border-radius: var(--ujw-border-radius-card);
        box-shadow: var(--ujw-shadow-md);
        padding: 32px;
        transition: all var(--ujw-transition-speed) var(--ujw-transition-easing);
    }

    .ct-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--ujw-shadow-lg);
    }

    .ct-card-feature, .ct-card-service, .ct-card-process {
        text-align: center;
    }

    .ct-card-feature .ct-icon-wrapper,
    .ct-card-service .ct-icon-wrapper,
    .ct-card-process .ct-icon-wrapper {
        margin-left: auto;
        margin-right: auto;
    }

    .ct-check-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .ct-check-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 1.0625rem; /* 17px */
        line-height: 1.6;
    }

    .ct-check-item .ct-icon {
        flex-shrink: 0;
        color: var(--ujw-primary);
        margin-top: 4px;
    }

    /* Editorial Elements */
    .ct-pullquote {
        font-family: 'Times New Roman', serif;
        font-size: clamp(1.875rem, 3vw, 2.5rem);
        font-style: italic;
        line-height: 1.4;
        text-align: center;
        margin: 64px auto;
        max-width: 800px;
        position: relative;
        color: var(--ujw-text);
    }

    .ct-pullquote::before {
        content: '“';
        font-size: 6rem;
        line-height: 1;
        color: var(--ujw-muted);
        position: absolute;
        top: -32px;
        left: -32px;
        opacity: 0.6;
        z-index: 1;
        font-family: serif;
    }

    .ct-pullquote cite {
        display: block;
        margin-top: 16px;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--ujw-secondary);
        font-style: normal;
    }

    .ct-stats {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
        text-align: center;
        margin-top: 48px;
        margin-bottom: 48px;
    }

    @media (min-width: 768px) {
        .ct-stats {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .ct-stats {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .ct-stat-item {
        background-color: var(--ujw-white);
        border-radius: var(--ujw-border-radius-card);
        padding: 32px;
        box-shadow: var(--ujw-shadow-sm);
    }

    .ct-stat-number {
        font-family: 'Nunito', sans-serif;
        font-size: clamp(3.5rem, 5vw, 4.5rem); /* 56px to 72px */
        font-weight: 800;
        color: var(--ujw-primary);
        line-height: 1;
        margin-bottom: 8px;
    }

    .ct-stat-label {
        font-size: 0.9375rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--ujw-muted);
        font-weight: 600;
    }

    /* Testimonials */
    .ct-testimonial-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }

    @media (min-width: 768px) {
        .ct-testimonial-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .ct-testimonial-card {
        background-color: var(--ujw-white);
        border-radius: var(--ujw-border-radius-card);
        box-shadow: var(--ujw-shadow-md);
        padding: 32px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        border-top: 4px solid var(--ujw-primary);
    }

    .ct-testimonial-quote {
        font-size: 1.125rem;
        font-style: italic;
        color: var(--ujw-text);
        position: relative;
        padding-left: 20px;
    }

    .ct-testimonial-quote::before {
        content: '“';
        font-family: serif;
        font-size: 3rem;
        color: var(--ujw-muted);
        position: absolute;
        left: 0;
        top: -10px;
        line-height: 1;
    }

    .ct-testimonial-cite {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 16px;
    }

    .ct-testimonial-cite img {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .ct-testimonial-cite div {
        display: flex;
        flex-direction: column;
    }

    .ct-testimonial-cite span:first-child {
        font-weight: 700;
        color: var(--ujw-primary);
        font-size: 1.0625rem;
    }

    .ct-testimonial-cite span:last-child {
        font-size: 0.9375rem;
        color: var(--ujw-muted);
    }

    .ct-testimonial-stars {
        display: flex;
        gap: 4px;
        color: var(--ujw-accent);
        margin-bottom: 8px;
    }

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

    /* FAQ */
    .ct-faq-item {
        background-color: var(--ujw-white);
        border-radius: var(--ujw-border-radius-card);
        box-shadow: var(--ujw-shadow-sm);
        margin-bottom: 16px; /* Reduced margin for cards */
        overflow: hidden;
    }

    .ct-faq-q {
        font-family: 'Nunito', sans-serif;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--ujw-text);
        padding: 24px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .ct-faq-q::after {
        content: '+';
        font-size: 1.5rem;
        color: var(--ujw-primary);
        transition: transform var(--ujw-transition-speed) var(--ujw-transition-easing);
    }

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

    .ct-faq-a {
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
        font-size: 1.0625rem;
        line-height: 1.65;
        color: var(--ujw-dark-gray);
    }

    .ct-faq-item.active .ct-faq-a {
        max-height: 500px; /* Adjust as needed for content */
        padding-bottom: 24px;
        padding-top: 16px;
    }

    /* CTA Section */
    .ct-cta {
        background-color: var(--ujw-primary);
        color: var(--ujw-white);
        padding-top: 96px;
        padding-bottom: 96px;
        text-align: center;
    }

    .ct-cta-content {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .ct-cta h2 {
        color: var(--ujw-white);
    }

    .ct-cta p {
        color: var(--ujw-white);
        opacity: 0.9;
    }

    /* Form Styling */
    .ct-contact-form {
        background-color: var(--ujw-white);
        padding: 48px;
        border-radius: var(--ujw-border-radius-card);
        box-shadow: var(--ujw-shadow-lg);
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .ct-form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .ct-form-label {
        font-weight: 600;
        color: var(--ujw-text);
        font-size: 1rem;
    }

    .ct-form-input, .ct-form-textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--ujw-muted);
        border-radius: 8px;
        font-size: 1rem;
        font-family: 'Source Sans Pro', sans-serif;
        color: var(--ujw-dark-gray);
        transition: border-color var(--ujw-transition-speed) var(--ujw-transition-easing), box-shadow var(--ujw-transition-speed) var(--ujw-transition-easing);
    }

    .ct-form-input:focus, .ct-form-textarea:focus {
        border-color: var(--ujw-primary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.2);
    }

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

    .ct-form-error {
        color: #dc2626;
        font-size: 0.875rem;
        margin-top: 4px;
    }

    .ct-form-success {
        background-color: #d1fae5;
        color: #065f46;
        padding: 16px;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
        display: none;
    }

    /* Footer */
    .ct-footer {
        background-color: var(--ujw-text);
        color: var(--ujw-white);
        padding-top: 96px;
        padding-bottom: 32px;
    }

    .ct-footer-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 48px;
        margin-bottom: 64px;
    }

    @media (min-width: 768px) {
        .ct-footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .ct-footer-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .ct-footer-col h3 {
        color: var(--ujw-primary);
        margin-bottom: 24px;
        font-size: 1.375rem;
    }

    .ct-footer-col p, .ct-footer-col address {
        color: var(--ujw-muted);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .ct-footer-col a {
        color: var(--ujw-muted);
        text-decoration: none;
        transition: color var(--ujw-transition-speed) var(--ujw-transition-easing);
    }

    .ct-footer-col a:hover {
        color: var(--ujw-primary);
    }

    .ct-footer-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ct-footer-list a {
        font-size: 1rem;
    }

    .ct-footer-logo {
        color: var(--ujw-primary);
        font-size: 2rem;
        margin-bottom: 16px;
        display: block;
        font-weight: 800;
    }

    .ct-footer-slogan {
        font-size: 1.125rem;
        color: var(--ujw-muted);
        line-height: 1.6;
    }

    .ct-footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 32px;
        text-align: center;
        font-size: 0.9375rem;
        color: var(--ujw-muted);
    }

    /* Animations */
    .ct-animate {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s var(--ujw-transition-easing), transform 0.6s var(--ujw-transition-easing);
    }

    .ct-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .ct-section, .ct-section-alt, .ct-cta {
            padding-top: 64px;
            padding-bottom: 64px;
        }

        h1, .ct-h1 {
            font-size: clamp(2.25rem, 4.5vw, 3.5rem);
        }

        h2, .ct-h2 {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
        }

        h3, .ct-h3 {
            font-size: clamp(1.375rem, 2vw, 1.625rem);
        }

        body {
            font-size: 1.0625rem; /* 17px */
        }

        .ct-pullquote {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            margin: 48px auto;
        }

        .ct-stat-number {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
        }

        .ct-contact-form {
            padding: 32px;
        }

        .ct-footer {
            padding-top: 64px;
        }
        .ct-footer-grid {
            margin-bottom: 48px;
        }
    }

    @media (max-width: 768px) {
        .ct-container {
            padding-left: 16px;
            padding-right: 16px;
        }

        .ct-section, .ct-section-alt, .ct-cta {
            padding-top: 48px;
            padding-bottom: 48px;
        }

        h1, .ct-h1 {
            font-size: clamp(2rem, 6vw, 3rem);
        }

        h2, .ct-h2 {
            font-size: clamp(1.625rem, 4.5vw, 2.25rem);
        }

        h3, .ct-h3 {
            font-size: clamp(1.25rem, 3.5vw, 1.5rem);
        }

        .ct-button {
            padding: 12px 24px;
            font-size: 1rem;
        }

        .ct-card {
            padding: 24px;
        }

        .ct-testimonial-card {
            padding: 24px;
        }

        .ct-faq-q {
            font-size: 1.125rem;
            padding: 20px;
        }

        .ct-faq-a {
            font-size: 1rem;
            padding: 0 20px;
        }

        .ct-faq-item.active .ct-faq-a {
            padding-bottom: 20px;
            padding-top: 12px;
        }

        .ct-footer-grid {
            gap: 32px;
        }

        .ct-footer-col h3 {
            margin-bottom: 16px;
        }
    }

    @media (max-width: 480px) {
        .ct-footer-col:nth-child(2) {
            order: 3;
        }
        .ct-footer-col:nth-child(3) {
            order: 2;
        }
        .ct-footer-col:nth-child(4) {
             order: 4;
        }

    }


/* === Quality polish === */
.ct-card, [class*="ct-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.ct-card:hover, [class*="ct-card"]:hover { transform: scale(1.02); box-shadow: 0 10px 28px rgba(0,0,0,0.10); }

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 ctFadeInUp { from { opacity:0;transform:translateY(20px) } to { opacity: 1; transform: none; } }
.ct-animate { opacity: 0; }
.ct-animate.ct-visible { animation: ctFadeInUp .6s ease forwards; }

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

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

/* === STYLE FAMILY: clean_healthcare === */
.ct-hero { background: linear-gradient(180deg, #f0f7f9 0%, #faf5ff 100%); padding: 112px 0 96px; }
.ct-section-alt { background: #f4f8f9; }
.ct-card { border-radius: 16px; background: #fff; box-shadow: 0 4px 16px rgba(40,80,100,0.06); }
.ct-button-primary { background: #7e22ce; color: #fff; border-radius: 12px; }