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

:root {
    --cph-primary: #ea580c;
    --cph-secondary: #c2410c;
    --cph-accent: #2563eb;
    --cph-background: #fff7ed;
    --cph-text: #431407;
    --cph-muted: #fb923c;
    --cph-dark-header-bg: #1f2937;
    --cph-dark-header-text: #f9fafb;

    --st-space-xs: 8px;
    --st-space-sm: 16px;
    --st-space-md: 24px;
    --st-space-lg: 32px;
    --st-space-xl: 48px;
    --st-space-xxl: 64px;
    --st-space-xxxl: 96px;
    --st-space-huge: 128px;

    --st-border-radius-sm: 8px;
    --st-border-radius-md: 12px;
    --st-border-radius-lg: 16px;

    --st-shadow-card: 4px 4px 0px rgba(0,0,0,1), 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --st-shadow-button: 4px 4px 0px rgba(0,0,0,1);
    --st-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --st-h1-font: 'Nunito', sans-serif;
    --st-body-font: 'Source Sans Pro', sans-serif;
}

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

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

body {
    font-family: var(--st-body-font);
    line-height: 1.65;
    color: var(--cph-text);
    background-color: var(--cph-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

::selection {
    background-color: var(--cph-primary);
    color: var(--cph-dark-header-text);
}

a {
    color: var(--cph-primary);
    text-decoration: none;
    transition: var(--st-transition);
}

a:hover {
    color: var(--cph-secondary);
    text-decoration: underline;
}

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

/* Typography Scale */
h1, .st-h1, h2, .st-h2, h3, .st-h3, h4, h5, h6 {
    font-family: var(--st-h1-font);
    color: var(--cph-text);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: var(--st-space-md);
}

h1, .st-h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Default: clamp(2.5rem, 5vw, 4.5rem); */
    letter-spacing: -0.02em;
    line-height: 1.05;
}

h2, .st-h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.015em;
    line-height: 1.15;
}

h3, .st-h3 {
    font-size: 1.875rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

p {
    margin-bottom: var(--st-space-sm);
    font-size: 1.125rem;
    line-height: 1.75;
}

p.st-hero-subtitle {
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
}

.st-subheading {
    font-family: var(--st-h1-font);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--cph-primary);
    margin-bottom: var(--st-space-sm);
}

/* Utility Classes */
.st-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--st-space-md);
    padding-right: var(--st-space-md);
}

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

.st-section-alt {
    background-color: var(--cph-dark-header-text);
    padding-top: var(--st-space-xxxl);
    padding-bottom: var(--st-space-xxxl);
    position: relative;
}

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

.st-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--st-space-xl);
}

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

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

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

.st-flex {
    display: flex;
    align-items: center;
    gap: var(--st-space-sm);
}

.st-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.st-icon-large {
    width: 48px;
    height: 48px;
    color: var(--cph-primary);
    margin-bottom: var(--st-space-sm);
}

.st-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--st-space-sm);
}

/* Buttons */
.st-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--st-space-sm) var(--st-space-lg);
    border-radius: var(--st-border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--st-transition);
    text-decoration: none;
    border: 1px solid transparent;
    line-height: 1;
    white-space: nowrap;
    box-shadow: var(--st-shadow-button);
}

.st-button-primary {
    background-color: var(--cph-primary);
    color: var(--cph-dark-header-text);
    border-color: var(--cph-primary);
    transform: translate(0, 0);
}

.st-button-primary:hover {
    background-color: var(--cph-secondary);
    border-color: var(--cph-secondary);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0,0,0,1);
}

.st-button-secondary {
    background-color: var(--cph-accent);
    color: var(--cph-dark-header-text);
    border-color: var(--cph-accent);
    transform: translate(0, 0);
}

.st-button-secondary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0,0,0,1);color:#f4ad99}

.st-button-outline {
    background-color: transparent;
    color: var(--cph-primary);
    border-color: var(--cph-primary);
    transform: translate(0, 0);
}

.st-button-outline:hover {
    background-color: var(--cph-primary);
    color: var(--cph-dark-header-text);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0,0,0,1);
}

.st-link {
    color: var(--cph-accent);
    font-weight: 600;
    text-decoration: none;
}

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

/* Header & Navigation */
.st-header {
    background-color: var(--cph-dark-header-bg);
    padding: var(--st-space-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.st-logo {
    font-family: var(--st-h1-font);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cph-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.st-logo span {
    color: var(--cph-dark-header-text);
}

.st-nav-list {
    list-style: none;
    display: flex;
    gap: var(--st-space-xl);
    align-items: center;
}

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

.st-nav-link {
    color: var(--cph-dark-header-text);
    font-weight: 600;
    font-size: 1.1rem;
    padding: var(--st-space-xs) 0;
    position: relative;
}

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

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

.st-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--st-space-xl);
    color: var(--cph-dark-header-text);
    cursor: pointer;
    padding: var(--st-space-xs);
    z-index: 1001;
}

#st-cart-count {
    background-color: var(--cph-primary);
    color: var(--cph-dark-header-text);
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 5px;
    min-width: 24px;
    text-align: center;
    display: inline-block;
}

/* Hero Section */
.st-hero {
    background-color: var(--cph-dark-header-bg);
    color: var(--cph-dark-header-text);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--st-space-xxxl) var(--st-space-md);
    position: relative;
    overflow: hidden;
}

.st-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('https://dummyimage.com/1200x800/dbeafe/1e293b&text=product-detail%20graphic-shapes%202');
     background-size: cover;
     background-position: center;
     opacity: 0.1;
     z-index: 1;
}

.st-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.st-hero-text h1, .st-hero-text .st-h1 {
    color: var(--cph-dark-header-text);
    margin-bottom: var(--st-space-md);
}

.st-hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: var(--st-space-xl);
    color: rgba(255, 255, 255, 0.8);
}

.st-hero .st-button {
    font-size: 1.1rem;
    padding: var(--st-space-md) var(--st-space-xl);
}

/* Off-grid sticker for Hero */
.st-hero-sticker {
    position: absolute;
    top: 10%;
    right: 5%;
    background-color: var(--cph-accent);
    color: var(--cph-dark-header-text);
    padding: var(--st-space-sm) var(--st-space-md);
    border-radius: var(--st-border-radius-sm);
    font-family: var(--st-h1-font);
    font-weight: 700;
    font-size: 1rem;
    transform: rotate(5deg);
    box-shadow: 4px 4px 0px rgba(0,0,0,1);
    z-index: 5;
}

/* Cards */
.st-card {
    background-color: var(--cph-dark-header-text);
    border-radius: var(--st-border-radius-lg);
    padding: var(--st-space-xl);
    box-shadow: var(--st-shadow-card);
    transition: var(--st-transition);
    border: 1px solid var(--cph-text);
    transform: translate(0, 0);
    text-align: center;
}

.st-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px rgba(0,0,0,1), 0 8px 30px rgba(0,0,0,0.1);
}

.st-card-feature, .st-card-service, .st-card-process {
    background-color: var(--cph-dark-header-text);
    border-radius: var(--st-border-radius-lg);
    padding: var(--st-space-xl);
    box-shadow: var(--st-shadow-card);
    transition: var(--st-transition);
    border: 1px solid var(--cph-text);
    transform: translate(0, 0);
    position: relative;
    overflow: hidden;
}

.st-card-feature:hover, .st-card-service:hover, .st-card-process:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px rgba(0,0,0,1), 0 8px 30px rgba(0,0,0,0.1);
}

/* Check List */
.st-check-list {
    list-style: none;
    padding: 0;
    margin: var(--st-space-md) 0;
}

.st-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--st-space-sm);
    margin-bottom: var(--st-space-sm);
    font-size: 1.0625rem;
}

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

/* Editorial Moments */
.st-pullquote {
    font-family: var(--st-h1-font);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-style: italic;
    line-height: 1.3;
    margin: var(--st-space-xxxl) auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    color: var(--cph-text);
    padding: 0 var(--st-space-md);
}

.st-pullquote::before {
    content: '"';
    font-size: 8rem;
    color: var(--cph-muted);
    position: absolute;
    top: -2rem;
    left: -1rem;
    line-height: 1;
    opacity: 0.1;
    z-index: -1;
}

.st-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--st-space-lg);
    text-align: center;
    margin-top: var(--st-space-xxl);
}

.st-stat-item {
    background-color: var(--cph-dark-header-text);
    padding: var(--st-space-xl);
    border-radius: var(--st-border-radius-lg);
    box-shadow: var(--st-shadow-card);
    border: 1px solid var(--cph-text);
}

.st-stat-number {
    font-family: var(--st-h1-font);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--cph-primary);
    line-height: 1;
    margin-bottom: var(--st-space-xs);
}

.st-stat-label {
    font-family: var(--st-body-font);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cph-text);
}

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

.st-testimonial-card {
    background-color: var(--cph-dark-header-text);
    padding: var(--st-space-xl);
    border-radius: var(--st-border-radius-lg);
    box-shadow: var(--st-shadow-card);
    transition: var(--st-transition);
    border: 1px solid var(--cph-text);
    transform: translate(0,0);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.st-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px rgba(0,0,0,1), 0 8px 30px rgba(0,0,0,0.1);
}

.st-testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: var(--st-space-md);
    color: var(--cph-text);
    flex-grow: 1;
}

.st-testimonial-cite {
    font-weight: 600;
    color: var(--cph-primary);
    display: block;
    margin-top: var(--st-space-sm);
}

.st-testimonial-cite span {
    font-weight: 400;
    color: var(--cph-text);
    font-size: 0.95rem;
    display: block;
}

.st-testimonial-stars {
    color: gold;
    margin-bottom: var(--st-space-sm);
    display: flex;
    gap: 2px;
}

.st-testimonial-card .st-icon {
    width: 20px;
    height: 20px;
    fill: gold;
    stroke: none;
}

/* FAQ Section */
.st-faq-item {
    background-color: var(--cph-dark-header-text);
    border-radius: var(--st-border-radius-md);
    padding: var(--st-space-md);
    margin-bottom: var(--st-space-sm);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
    transition: var(--st-transition);
}

.st-faq-q {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cph-text);
    font-size: 1.1rem;
    padding: var(--st-space-xs) 0;
}

.st-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--cph-primary);
    transition: transform 0.3s ease;
}

.st-faq-item.active .st-faq-q::after {
    content: '-';
    transform: rotate(180deg);
}

.st-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-top: 0;
    color: var(--cph-text);
}

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

/* CTA Section */
.st-cta {
    background-color: var(--cph-primary);
    color: var(--cph-dark-header-text);
    padding: var(--st-space-xxxl) var(--st-space-md);
    text-align: center;
}

.st-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.st-cta h2, .st-cta .st-h2 {
    color: var(--cph-dark-header-text);
    margin-bottom: var(--st-space-md);
}

.st-cta p {
    font-size: 1.2rem;
    margin-bottom: var(--st-space-xl);
    color: rgba(255, 255, 255, 0.9);
}

.st-cta .st-button {
    background-color: var(--cph-accent);
    color: var(--cph-dark-header-text);
    border-color: var(--cph-accent);
    font-size: 1.15rem;
    padding: var(--st-space-md) var(--st-space-xl);
    box-shadow: 4px 4px 0px rgba(0,0,0,1);
    transform: translate(0,0);
}

.st-cta .st-button:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0,0,0,1);color:#f4ad99}

/* Form Styling */
.st-contact-form {
    display: grid;
    gap: var(--st-space-md);
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--cph-dark-header-text);
    padding: var(--st-space-xl);
    border-radius: var(--st-border-radius-lg);
    box-shadow: var(--st-shadow-card);
    border: 1px solid var(--cph-text);
}

.st-form-group {
    margin-bottom: var(--st-space-sm);
}

.st-form-label {
    display: block;
    margin-bottom: var(--st-space-xs);
    font-weight: 600;
    color: var(--cph-text);
    font-size: 0.95rem;
}

.st-form-input, .st-form-textarea {
    width: 100%;
    padding: var(--st-space-sm);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: var(--st-border-radius-sm);
    font-family: var(--st-body-font);
    font-size: 1rem;
    color: var(--cph-text);
    background-color: var(--cph-background);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.st-form-input:focus, .st-form-textarea:focus {
    border-color: var(--cph-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--cph-primary), 0.2);
}

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

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

.st-form-success {
    background-color: #dcfce7;
    color: #166534;
    padding: var(--st-space-sm);
    border-radius: var(--st-border-radius-sm);
    margin-top: var(--st-space-md);
    text-align: center;
    display: none;
}

/* Footer */
.st-footer {
    background-color: var(--cph-dark-header-bg);
    color: var(--cph-dark-header-text);
    padding-top: var(--st-space-xxxl);
    padding-bottom: var(--st-space-md);
    font-size: 0.95rem;
}

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

.st-footer-col h3 {
    color: var(--cph-primary);
    font-size: 1.25rem;
    margin-bottom: var(--st-space-md);
}

.st-footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--st-space-sm);
    font-size: 0.95rem;
}

.st-footer-col a {
    color: var(--cph-dark-header-text);
}

.st-footer-col a:hover {
    color: var(--cph-primary);
    text-decoration: underline;
}

.st-footer-list {
    list-style: none;
}

.st-footer-list li {
    margin-bottom: var(--st-space-xs);
}

.st-footer-list li:last-child {
    margin-bottom: 0;
}

.st-footer-list .st-nav-link {
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
}

.st-footer-list .st-nav-link:hover {
    color: var(--cph-primary);
}

.st-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--st-space-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.st-footer-col .st-icon {
    color: var(--cph-primary);
    margin-right: var(--st-space-xs);
}

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

.st-animate {
    opacity: 0;
    transform: translateY(20px);
}

.st-animate.st-animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .st-nav-list {
        gap: var(--st-space-lg);
    }
    .st-hero h1, .st-hero .st-h1 {
        font-size: clamp(2.2rem, 5.5vw, 4rem);
    }
    .st-section {
        padding-top: var(--st-space-xxl);
        padding-bottom: var(--st-space-xxl);
    }
    .st-pullquote {
        font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    }
    .st-hero-sticker {
        top: 2%;
        right: 2%;
        font-size: 0.9rem;
        padding: var(--st-space-xs) var(--st-space-sm);
    }
}

@media (max-width: 768px) {
    .st-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--cph-dark-header-bg);
        padding: var(--st-space-sm) 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    }

    .st-nav-list.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .st-nav-item {
        width: 100%;
        text-align: center;
        margin-bottom: var(--st-space-sm);
    }

    .st-nav-link {
        display: block;
        padding: var(--st-space-sm) 0;
    }

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

    .st-hero {
        min-height: 60vh;
        padding-top: var(--st-space-xxl);
        padding-bottom: var(--st-space-xxl);
    }
    .st-hero h1, .st-hero .st-h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    .st-hero-subtitle {
        font-size: 1.1rem;
    }
    .st-section {
        padding-top: var(--st-space-xxl);
        padding-bottom: var(--st-space-xxl);
    }
    .st-card {
        padding: var(--st-space-lg);
    }
    .st-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .st-hero-sticker {
        display: none;
    }
    .st-footer-col h3 {
        margin-top: var(--st-space-md);
    }
    .st-footer-list li {
        display: inline-block;
        margin: 0 var(--st-space-sm);
    }
    .st-footer-list li:last-child {
        margin-bottom: var(--st-space-sm);
    }
}

@media (max-width: 480px) {
    h1, .st-h1 {
        font-size: clamp(1.8rem, 10vw, 3rem);
    }
    h2, .st-h2 {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }
    h3, .st-h3 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
    .st-button {
        font-size: 0.9rem;
        padding: var(--st-space-sm) var(--st-space-md);
    }
    .st-section {
        padding-top: var(--st-space-xl);
        padding-bottom: var(--st-space-xl);
    }
    .st-stats {
        grid-template-columns: 1fr;
    }
    .st-stat-number {
        font-size: 3rem;
    }
    .st-pullquote {
        font-size: 1.4rem;
    }
    .st-footer-list li {
        display: block;
        margin: 0;
    }
}


/* === Quality polish === */
.st-card, [class*="st-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.st-card:hover, [class*="st-card"]:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.16); }

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

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

/* === STYLE FAMILY: bold_startup === */
.st-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; }
.st-card, .st-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; }
.st-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 0 #111; }
.st-button-primary { background: #ea580c; color: #fff; border: 2px solid #111; border-radius: 10px; box-shadow: 4px 4px 0 0 #111; }
.st-button-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 #111; }
.st-section-alt { background: color-mix(in srgb, #2563eb 18%, #fff7ed); }