@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;800&family=Lato:wght@400;700&display=swap');

:root {
    --8jp-primary: #2563eb;
    --8jp-secondary: #1e40af;
    --8jp-accent: #f59e0b;
    --8jp-background: #ffffff;
    --8jp-text: #0f172a;
    --8jp-muted: #94a3b8;
    --8jp-card-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --8jp-hard-shadow: 4px 4px 0px #000;
    --8jp-border-radius-card: 12px;
    --8jp-border-radius-button: 8px;
    --8jp-border-radius-image: 8px;
    --8jp-transition-duration: 0.25s;
    --8jp-transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.65;
    color: var(--8jp-text);
    background-color: var(--8jp-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.125rem; /* 18px */
}

::selection {
    background-color: var(--8jp-primary);
    color: var(--8jp-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: var(--8jp-text);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.ct-h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem); /* 40px base, up to 72px */
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.ct-h2 {
    font-size: clamp(2rem, 3.5vw, 3rem); /* 32px base, up to 48px */
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin-bottom: 24px;
}

.ct-h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem); /* 24px base, up to 30px */
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

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

a {
    color: var(--8jp-primary);
    text-decoration: none;
    transition: color var(--8jp-transition-duration) var(--8jp-transition-ease);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--8jp-border-radius-image);
}

/* 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: #f7f9fc;
    padding-top: 96px;
    padding-bottom: 96px;
    position: relative;
}

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

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

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

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

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

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

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

.ct-icon-large {
    width: 48px;
    height: 48px;
    color: var(--8jp-primary);
}

.ct-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--8jp-primary), 0.1);
    border-radius: var(--8jp-border-radius-card);
    padding: 16px;
    margin-bottom: 24px;
}


/* Buttons */
.ct-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--8jp-border-radius-button);
    cursor: pointer;
    transition: all var(--8jp-transition-duration) var(--8jp-transition-ease);
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    outline: none;
    background-clip: padding-box;
}

.ct-button-primary {
    background-color: var(--8jp-primary);
    color: var(--8jp-background);
    border-color: var(--8jp-primary);
    box-shadow: var(--8jp-hard-shadow);
}

.ct-button-primary:hover {
    background-color: var(--8jp-secondary);
    border-color: var(--8jp-secondary);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px #000;
}

.ct-button-primary:active {
    transform: translateY(0);
    box-shadow: var(--8jp-hard-shadow);
}

.ct-button-secondary {
    background-color: var(--8jp-accent);
    color: var(--8jp-text);
    border-color: var(--8jp-accent);
    box-shadow: var(--8jp-hard-shadow);
}

.ct-button-secondary:hover {
    background-color: #e08e00;
    border-color: #e08e00;
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px #000;
}

.ct-button-secondary:active {
    transform: translateY(0);
    box-shadow: var(--8jp-hard-shadow);
}

.ct-button-outline {
    background-color: transparent;
    color: var(--8jp-primary);
    border-color: var(--8jp-primary);
    box-shadow: var(--8jp-hard-shadow);
}

.ct-button-outline:hover {
    background-color: var(--8jp-primary);
    color: var(--8jp-background);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px #000;
}

.ct-button-outline:active {
    transform: translateY(0);
    box-shadow: var(--8jp-hard-shadow);
}

.ct-link {
    color: var(--8jp-primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.ct-link:hover {
    text-decoration: underline;
}

/* Header & Navigation */
.ct-header {
    background-color: var(--8jp-background);
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.ct-logo {
    font-family: 'Merriweather', serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--8jp-text);
    text-decoration: none;
}

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

.ct-nav-item a {
    font-weight: 700;
    color: var(--8jp-text);
    position: relative;
    padding: 8px 0;
    transition: color var(--8jp-transition-duration) var(--8jp-transition-ease);
}

.ct-nav-item a:hover {
    color: var(--8jp-primary);
}

.ct-nav-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--8jp-primary);
    transition: width var(--8jp-transition-duration) var(--8jp-transition-ease);
}

.ct-nav-item a:hover::after {
    width: 100%;
}

.ct-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--8jp-text);
    padding: 0;
}

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

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

.ct-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37,99,235,0.7) 0%, rgba(30,64,175,0.7) 100%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.ct-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.ct-hero-text {
    color: var(--8jp-background);
}

.ct-hero-text .ct-h1 {
    color: var(--8jp-background);
    margin-bottom: 24px;
}

.ct-hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.ct-hero-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ct-hero-illustration-panel {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://dummyimage.com/800x600/dbeafe/1e293b&text=geometric-graphic%20illustration-panel%202');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.2;
    z-index: 0;
}

/* Cards */
.ct-card {
    background-color: var(--8jp-background);
    border: 1px solid #e2e8f0;
    border-radius: var(--8jp-border-radius-card);
    padding: 32px;
    box-shadow: var(--8jp-card-shadow);
    transition: transform var(--8jp-transition-duration) var(--8jp-transition-ease),
                box-shadow var(--8jp-transition-duration) var(--8jp-transition-ease);
}

.ct-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.08);
}

.ct-card-feature {
    text-align: center;
    border: 1px solid var(--8jp-text);
    box-shadow: var(--8jp-hard-shadow);
}

.ct-card-feature:hover {
    transform: translateY(-4px);
    box-shadow: 6px 8px 0px #000;
}

.ct-card-feature .ct-icon-large {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.ct-card-service {
    border: 1px solid var(--8jp-text);
    box-shadow: var(--8jp-hard-shadow);
    padding: 32px;
    background-color: white;
}

.ct-card-service:hover {
    transform: translateY(-4px);
    box-shadow: 6px 8px 0px #000;
}

.ct-card-process {
    text-align: center;
    position: relative;
    padding-bottom: 48px;
}

.ct-card-process svg {
    margin-bottom: 16px;
}

.ct-check-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}
.ct-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.0625rem;
}
.ct-check-item .ct-icon {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--8jp-primary);
    width: 20px;
    height: 20px;
}

/* Editorial Moments */
.ct-pullquote {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-style: italic;
    line-height: 1.3;
    margin: 64px auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    color: var(--8jp-text);
}

.ct-pullquote::before {
    content: '“';
    font-size: 8rem;
    line-height: 1;
    color: var(--8jp-muted);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.1;
}

.ct-stats {
    background-color: var(--8jp-secondary);
    color: var(--8jp-background);
    padding: 64px 0;
    text-align: center;
}

.ct-stat-item {
    padding: 24px;
}

.ct-stat-number {
    font-family: 'Merriweather', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* 40px base, up to 72px */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.ct-stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
}

/* Testimonials */
.ct-testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.ct-testimonial-card {
    background-color: var(--8jp-background);
    padding: 32px;
    border-radius: var(--8jp-border-radius-card);
    box-shadow: var(--8jp-card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e2e8f0;
}

.ct-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.08);
}

.ct-testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--8jp-text);
}

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

.ct-testimonial-cite img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--8jp-primary);
}

.ct-testimonial-cite-info strong {
    display: block;
    font-weight: 700;
    color: var(--8jp-text);
}

.ct-testimonial-cite-info span {
    color: var(--8jp-muted);
    font-size: 0.9rem;
}

.ct-testimonial-stars {
    color: var(--8jp-accent);
    margin-bottom: 16px;
}

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

/* Form Styling */
.ct-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background-color: var(--8jp-background);
    border-radius: var(--8jp-border-radius-card);
    box-shadow: var(--8jp-card-shadow);
    border: 1px solid #e2e8f0;
}

.ct-form-group {
    margin-bottom: 16px;
    position: relative;
}

.ct-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--8jp-text);
    font-size: 0.95rem;
}

.ct-form-input, .ct-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--8jp-text);
    background-color: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ct-form-input:focus, .ct-form-textarea:focus {
    border-color: var(--8jp-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
    outline: none;
}

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

.ct-form-error {
    color: #a40e0e;
    font-size: 0.9rem;
    margin-top: 8px;
    display: none;
}

.ct-form-success {
    background-color: #ecfdf5;
    color: #047857;
    padding: 16px;
    border-radius: 6px;
    text-align: center;
    margin-top: 24px;
    display: none;
}

/* FAQ Section */
.ct-faq-item {
    background-color: var(--8jp-background);
    border: 1px solid #e2e8f0;
    border-radius: var(--8jp-border-radius-card);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--8jp-card-shadow);
    transition: all var(--8jp-transition-duration) var(--8jp-transition-ease);
}

.ct-faq-item.active {
    border-color: var(--8jp-primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.08);
}

.ct-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-weight: 700;
    cursor: pointer;
    color: var(--8jp-text);
    font-size: 1.125rem;
    user-select: none;
}

.ct-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    margin-left: 16px;
    transition: transform var(--8jp-transition-duration) var(--8jp-transition-ease);
}

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

.ct-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    color: var(--8jp-text);
}

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

.ct-faq-a p {
    margin-bottom: 0;
    padding-top: 8px;
}

/* CTA Section */
.ct-cta {
    background-color: var(--8jp-primary);
    padding: 64px 0;
    text-align: center;
    color: var(--8jp-background);
    position: relative;
    overflow: hidden;
}

.ct-cta-content h2 {
    color: var(--8jp-background);
    margin-bottom: 16px;
}
.ct-cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-size: 1.125rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.ct-footer {
    background-color: var(--8jp-text);
    color: var(--8jp-background);
    padding-top: 96px;
    padding-bottom: 48px;
    font-size: 0.95rem;
}

.ct-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.ct-footer-col h3 {
    color: var(--8jp-background);
    font-size: 1.125rem;
    margin-bottom: 24px;
}

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

.ct-footer-list li {
    margin-bottom: 12px;
}

.ct-footer-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--8jp-transition-duration) var(--8jp-transition-ease);
}

.ct-footer-list a:hover {
    color: var(--8jp-primary);
}

.ct-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.ct-footer-brand {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--8jp-background);
    margin-bottom: 16px;
}

.ct-footer-slogan {
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.ct-social-links {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.ct-social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
}

.ct-social-links a:hover {
    color: var(--8jp-primary);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ct-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--8jp-transition-ease), transform 0.6s var(--8jp-transition-ease);
}

.ct-animate.is-visible {
    animation: fadeInUp 0.8s var(--8jp-transition-ease) forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ct-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .ct-section-alt {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .ct-nav-list {
        gap: 24px;
    }
    .ct-hero-text .ct-h1 {
        font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    }
    .ct-hero-subtitle {
        font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    }
    .ct-hero-illustration-panel {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .ct-mobile-toggle {
        display: block;
    }
    .ct-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: var(--8jp-background);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 24px;
        transition: all 0.3s ease-in-out;
        max-height: 0;
        overflow: hidden;
    }
    .ct-nav.active {
        display: flex;
        max-height: 300px; /* Arbitrary large enough height */
    }
    .ct-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .ct-hero {
        min-height: 60vh;
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .ct-hero-text .ct-h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .ct-hero-subtitle {
        font-size: 1rem;
    }
    .ct-hero-actions {
        flex-direction: column;
    }
    .ct-grid-2, .ct-grid-3, .ct-grid-4, .ct-testimonial-grid, .ct-footer-grid {
        grid-template-columns: 1fr;
    }
    .ct-pullquote {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    .ct-pullquote::before {
        font-size: 6rem;
        top: -30px;
    }
    .ct-stats {
        padding: 48px 0;
    }
    .ct-stat-number {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    .ct-footer-grid {
        text-align: center;
    }
    .ct-footer-col h3 {
        margin-top: 24px;
    }
    .ct-footer-brand {
        margin-bottom: 8px;
    }
    .ct-hero-illustration-panel {
        display: none;
    }
}

@media (max-width: 480px) {
    .ct-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    body {
        font-size: 1rem;
    }
    .ct-h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    .ct-h3 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
    }
    .ct-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .ct-card {
        padding: 24px;
    }
    .ct-faq-q {
        font-size: 1rem;
    }
}

/* === 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); }

/* 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: #ffffff; }
.ct-section-alt { padding: 96px 0; background: color-mix(in srgb, #2563eb 4%, #ffffff); }
.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, #0f172a 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: Merriweather; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #2563eb; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.ct-brand-mark { display: inline-flex; color: #2563eb; 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: #0f172a; 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: #2563eb; }
.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, #2563eb 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #2563eb 7%, #ffffff) 0%, #ffffff 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: Merriweather; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #0f172a; 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: #94a3b8; 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, #2563eb 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: #94a3b8; max-width: 60ch; }
.ct-h1 { font-family: Merriweather; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #0f172a; margin: 0; }
.ct-h2 { font-family: Merriweather; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #0f172a; margin: 0 0 24px; }
.ct-h3 { font-family: Merriweather; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #0f172a; margin: 0 0 12px; }
.ct-subheading { font-size: 1.125rem; line-height: 1.7; color: #94a3b8; 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: #2563eb; color: #fff; border-color: #2563eb; }
.ct-button-primary:hover { background: #1e40af; border-color: #1e40af; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #2563eb 50%, transparent); }
.ct-button-secondary { background: #1e40af; color: #fff; border-color: #1e40af; }
.ct-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.ct-button-outline { background: transparent; color: #2563eb; border-color: #2563eb; }
.ct-button-outline:hover { background: #2563eb; color: #fff; }
.ct-link { color: #2563eb; 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, #0f172a 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, #2563eb 10%, transparent); color: #2563eb; }
.ct-icon-wrapper svg, .ct-icon-wrapper .ct-icon { width: 28px; height: 28px; stroke: #2563eb; }
.ct-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.ct-icon-large { width: 48px; height: 48px; stroke: #2563eb; }
/* 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: #2563eb; margin-top: 4px; }
/* Editorial */
.ct-pullquote { font-family: Merriweather; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #0f172a; 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: #2563eb; 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: Merriweather; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #2563eb; 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: #94a3b8; }
/* 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, #0f172a 6%, transparent); }
.ct-testimonial-quote { font-style: italic; line-height: 1.7; color: #0f172a; margin-bottom: 16px; }
.ct-testimonial-cite { font-weight: 600; color: #2563eb; font-size: 0.95rem; }
.ct-testimonial-stars { color: #f59e0b; 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, #0f172a 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: #0f172a; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.ct-faq-q::after { content: '+'; font-size: 1.5rem; color: #2563eb; 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, #2563eb 0%, #1e40af 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: #2563eb; border-color: #fff; }
.ct-cta .ct-button-primary:hover { background: #ffffff; color: #2563eb; }
/* 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, #0f172a 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #2563eb 40%, transparent); text-align: left; color: #0f172a; }
.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: #0f172a; 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, #0f172a 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #2563eb 2%, #fff); color: #0f172a; 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, #2563eb 35%, transparent); }
.ct-form-input:focus, .ct-form-textarea:focus, .ct-form input:focus, .ct-form textarea:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 4px color-mix(in srgb, #2563eb 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: #0f172a; }
.ct-cta .ct-form button[type="submit"], .ct-cta .ct-contact-form button[type="submit"] { background: #2563eb; color: #fff; border-color: #2563eb; }
/* Footer */
.ct-footer { background: #0f172a; 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: Merriweather; 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: bold_startup === */
.ct-h1 { font-family: 'Archivo Black', 'Space Grotesk', sans-serif; font-weight: 900; font-size: clamp(3.25rem, 8vw, 6.5rem); letter-spacing: -0.03em; line-height: 0.95; }
.ct-card, .ct-card-feature { border: 2px solid #111; box-shadow: 6px 6px 0 0 #111; border-radius: 14px; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.ct-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 0 #111; }
.ct-button-primary { background: #2563eb; color: #fff; border: 2px solid #111; border-radius: 10px; box-shadow: 4px 4px 0 0 #111; }
.ct-button-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 #111; }
.ct-section-alt { background: color-mix(in srgb, #f59e0b 18%, #ffffff); }