/* Pixaro Static Site Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; }
p { margin: 0; }

/* Typography Scale */
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 600; }

/* Eyebrow Label */
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary, #059669);
    margin-bottom: 0.75rem;
}
.theme-dark .eyebrow { color: var(--color-primary-light, #10B981); }
.theme-accent .eyebrow { color: rgba(255,255,255,0.85); }

/* Decorative Number */
.decorative-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-primary, #059669);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: -0.5rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-buttons, 0.5rem);
    transition: all 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn-filled {
    background-color: var(--button-color, var(--color-primary));
    color: white;
    border: none;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.1), 0 1px 2px rgb(0 0 0 / 0.06);
}
.btn-filled:hover { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.btn-outline {
    background: transparent;
    color: var(--button-color, var(--color-primary));
    border: 2px solid var(--button-color, var(--color-primary));
}
.btn-outline:hover { background: var(--button-color, var(--color-primary)); color: white; }
.btn-ghost {
    background: transparent;
    color: var(--button-color, var(--color-primary));
    border: none;
}
.btn-ghost:hover { background: rgb(0 0 0 / 0.05); }

/* Card Styles */
.card {
    padding: 1.75rem;
    border-radius: var(--radius-cards, 0.5rem);
    border: 1px solid var(--color-border, #E7E5E4);
    background: var(--color-background, #fff);
    transition: all 0.25s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgb(0 0 0 / 0.12);
    border-color: var(--color-primary, #059669);
}
.card-accent-border {
    border-bottom: 3px solid transparent;
}
.card-accent-border:hover {
    border-bottom-color: var(--color-primary, #059669);
}

/* Icon Circle */
.icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 600;
}
.icon-circle-primary {
    background-color: var(--color-primary, #059669);
    color: white;
}
.icon-circle-soft {
    background-color: color-mix(in srgb, var(--color-primary, #059669) 12%, transparent);
    color: var(--color-primary, #059669);
}

/* Theme Overrides */
.theme-dark {
    background-color: var(--color-text, #1C1917);
    color: var(--color-background, #FAFAF9);
}
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4 { color: var(--color-background, #FAFAF9); }
.theme-dark .card { background: rgb(255 255 255 / 0.06); border-color: rgb(255 255 255 / 0.1); }
.theme-dark .card:hover { border-color: var(--color-primary, #059669); background: rgb(255 255 255 / 0.1); }
.theme-dark .btn-outline { color: white; border-color: white; }
.theme-dark .btn-outline:hover { background: white; color: var(--color-text, #1C1917); }
.theme-accent {
    background-color: var(--color-primary, #059669);
    color: white;
}
.theme-accent h1, .theme-accent h2, .theme-accent h3, .theme-accent h4 { color: white; }
.theme-accent .btn-filled { background: white; color: var(--color-primary, #059669); }
.theme-accent .btn-outline { color: white; border-color: white; }
.theme-accent .btn-outline:hover { background: white; color: var(--color-primary, #059669); }

/* Visibility */
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
}
@media (min-width: 769px) {
    .mobile-only { display: none !important; }
}
.hidden-section { display: none !important; }

/* Rich Text */
.rich-text p { margin-bottom: 0.75em; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text ul, .rich-text ol { padding-left: 1.5em; margin-bottom: 0.75em; }
.rich-text li { margin-bottom: 0.25em; }
.rich-text a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.rich-text strong { font-weight: 600; }

/* Layout Grid */
.layout-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
    align-items: center;
}
.layout-full { grid-template-columns: 1fr; }
.layout-50-50 { grid-template-columns: 1fr 1fr; }
.layout-60-40 { grid-template-columns: 3fr 2fr; }
.layout-40-60 { grid-template-columns: 2fr 3fr; }
.layout-70-30 { grid-template-columns: 7fr 3fr; }
.layout-30-70 { grid-template-columns: 3fr 7fr; }
.layout-33-33-33 { grid-template-columns: repeat(3, 1fr); }
.layout-25-25-25-25 { grid-template-columns: repeat(4, 1fr); }
.layout-column { display: flex; flex-direction: column; gap: 1.25rem; }
.layout-grid-compact { padding-top: 0.75rem; padding-bottom: 0.75rem; }

/* Grid Utilities */
.grid-auto { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto-fit { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Image Placeholder */
.img-placeholder {
    aspect-ratio: 16/10;
    border-radius: var(--radius-images, 0.5rem);
    background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary, #059669) 8%, transparent), color-mix(in srgb, var(--color-primary, #059669) 16%, transparent));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.img-placeholder svg {
    width: 3rem;
    height: 3rem;
    opacity: 0.3;
}

/* Quote */
.quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: var(--color-primary, #059669);
    opacity: 0.25;
    font-family: Georgia, serif;
}

/* Avatar */
.avatar-placeholder {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary, #059669) 15%, transparent), color-mix(in srgb, var(--color-primary, #059669) 30%, transparent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary, #059669);
    margin: 0 auto;
}

/* Element Shadow Utilities */
.el-shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.el-shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.el-shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

/* FAQ Accordion */
.faq-item { transition: border-color 0.2s ease; }
.faq-item:hover { border-color: var(--color-primary, #059669); }
.faq-item summary { cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform 0.25s ease; }
.faq-item[open] summary { color: var(--color-primary, #059669); }

/* Responsive */
@media (max-width: 768px) {
    .layout-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
    .grid-auto-fit { grid-template-columns: 1fr !important; }
    .avatar-placeholder { width: 4rem; height: 4rem; font-size: 1rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}