/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --bg: #FFFFFF;
    --surface: #F6F8FB;
    --text: #0B1220;
    --text2: #334155;
    --muted: #64748B;
    --border: #E2E8F0;
    --accent: #FF2D7D;
    --accent2: #2563EB;
    --success: #16A34A;
    --danger: #DC2626;
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    --radius-card: 20px;
    --radius-btn: 14px;
    --radius-input: 12px;
    
    --shadow: 0 8px 24px rgba(2,6,23,0.06);
    --shadow-lg: 0 16px 48px rgba(2,6,23,0.08);
    
    --max-width: 1120px;
    --header-height: 72px;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    /* Exception: marquee should still animate slowly */
    .marquee {
        animation-duration: 60s !important;
    }
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent2);
}

ul, ol {
    padding-left: 1.5em;
}

li {
    margin-bottom: 8px;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
}

h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 36px;
    font-weight: 650;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 24px;
    font-weight: 650;
    line-height: 1.25;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
}

.label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
}

.lead {
    font-size: 20px;
    color: var(--text2);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lead { font-size: 18px; }
}

/* ========================================
   LAYOUT
======================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

section {
    padding: 96px 0;
}

@media (max-width: 1024px) {
    section { padding: 72px 0; }
}

@media (max-width: 768px) {
    section { padding: 48px 0; }
}

.section-surface {
    background: var(--surface);
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--bg);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    flex-shrink: 0;
    gap: 2px;
}

.brand-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.brand-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.brand-sub {
    font-size: 11px;
    color: var(--accent);
    font-weight: 500;
    padding-left: 36px;
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 14px;
    }
    .brand-sub {
        font-size: 10px;
        padding-left: 32px;
    }
    .brand-logo {
        width: 24px;
        height: 24px;
    }
}

.nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav { display: flex; }
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text2);
    position: relative;
}

.nav a:hover {
    color: var(--text);
}

.nav a.active {
    color: var(--text);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta { display: block; }
}

/* Mobile Menu */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 100%;
    background: var(--bg);
    z-index: 2000;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu nav a {
    font-size: 18px;
    font-weight: 500;
}

.mobile-menu .btn {
    margin-bottom: 32px;
    width: 100%;
    justify-content: center;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

@media (max-width: 768px) {
    .btn { height: 44px; font-size: 14px; }
}

.btn-primary {
    background: var(--text);
    color: white;
}

.btn-primary:hover {
    background: #111827;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
}

.btn-secondary:hover {
    background: var(--surface);
    color: var(--text);
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: #E6296F;
    color: white;
}

.btn:focus-visible {
    outline: 2px solid var(--accent2);
    outline-offset: 2px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.micro-copy {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted);
}

/* ========================================
   PAGE HERO
======================================== */
.page-hero {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 64px;
}

.page-hero h1 {
    margin-bottom: 24px;
    max-width: 800px;
}

.page-hero .lead {
    max-width: 700px;
    margin-bottom: 0;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 900px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.page-hero-content .lead {
    max-width: none;
}

.page-hero-image {
    border-radius: var(--radius-card);
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   SECTION HEADER
======================================== */
.section-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header .lead {
    margin: 0;
}

/* ========================================
   CARDS
======================================== */
.card-grid {
    display: grid;
    gap: 24px;
}

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

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

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

@media (max-width: 1024px) {
    .card-grid-3, .card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .card-grid-2, .card-grid-3, .card-grid-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow);
}

.card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.card p {
    color: var(--text2);
    font-size: 16px;
    margin: 0;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}

.card-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Offer Cards (Large) */
.offer-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.offer-card-large {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 40px;
}

.offer-card-large h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.offer-meta {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.offer-desc {
    font-size: 18px;
    color: var(--text2);
    margin-bottom: 16px;
}

.offer-ideal {
    font-size: 16px;
    color: var(--text2);
    margin-bottom: 24px;
    font-style: italic;
}

.offer-outputs {
    margin-bottom: 32px;
}

.offer-outputs h4 {
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-outputs ul {
    list-style: none;
    padding: 0;
}

.offer-outputs li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.offer-outputs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.offer-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Detail Sections */
.detail-section {
    max-width: 900px;
}

.detail-section h2 {
    margin-bottom: 16px;
}

.detail-section .lead {
    margin-bottom: 48px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

.detail-block h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent);
}

.detail-block p {
    color: var(--text2);
}

.detail-block ul, .detail-block ol {
    color: var(--text2);
}

.process-list {
    list-style: none;
    padding: 0;
    counter-reset: process;
}

.process-list li {
    counter-increment: process;
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
}

.process-list li::before {
    content: counter(process);
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Principle Cards */
.principle-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
}

.principle-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent);
}

.principle-card p {
    color: var(--text2);
    margin: 0;
}

/* Process Steps (Full) */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 640px) {
    .process-step {
        grid-template-columns: 1fr;
    }
}

.process-step-num {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-step-content p {
    color: var(--text2);
    margin-bottom: 16px;
}

.process-step-questions {
    font-size: 15px;
    color: var(--muted);
    font-style: italic;
}

/* ========================================
   FAQ ACCORDION
======================================== */
.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.faq-button:hover {
    color: var(--accent);
}

.faq-button:focus-visible {
    outline: 2px solid var(--accent2);
    outline-offset: 2px;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-button[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content-inner {
    padding-bottom: 24px;
    color: var(--text2);
    font-size: 16px;
    line-height: 1.7;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    font-weight: 600;
    color: var(--accent);
}

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

/* ========================================
   CTA BAND
======================================== */
.cta-band {
    background: var(--surface);
    text-align: center;
    padding: 80px 24px;
}

.cta-band h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .cta-band h3 { font-size: 26px; }
}

.cta-band p {
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-band .cta-row {
    justify-content: center;
    margin-top: 0;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-grid-4 {
    grid-template-columns: 2fr 1.2fr 1fr 1fr;
}

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

@media (max-width: 768px) {
    .footer-grid,
    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted);
    max-width: 300px;
}

.footer-brand a {
    color: var(--accent);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text2);
    text-decoration: none;
}

.footer-social:hover {
    color: var(--accent);
}

.footer-social svg {
    flex-shrink: 0;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-list a,
.footer-contact-list p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.5;
    margin: 0;
}

.footer-contact-list a:hover {
    color: var(--accent);
}

.footer h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 16px;
}

.footer nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer nav a {
    font-size: 15px;
    color: var(--text2);
}

.footer nav a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--accent);
}

/* ========================================
   FORMS
======================================== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-main);
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-input);
    background: var(--bg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent2);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: var(--danger);
}

.form-error {
    font-size: 14px;
    color: var(--danger);
    margin-top: 6px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text2);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--accent);
    text-decoration: underline;
}

.form-success,
.form-error-message {
    padding: 24px;
    border-radius: var(--radius-card);
    margin-top: 24px;
}

.form-success {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid var(--success);
}

.form-success h3 {
    color: var(--success);
    margin-bottom: 8px;
}

.form-error-message {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--danger);
}

.form-error-message h3 {
    color: var(--danger);
    margin-bottom: 8px;
}

/* ========================================
   PROFILE / ABOUT
======================================== */
.profile-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 900px) {
    .profile-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.profile-image {
    border-radius: var(--radius-card);
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: auto;
}

.profile-content h2 {
    margin-bottom: 24px;
}

.profile-content ul {
    color: var(--text2);
    margin-bottom: 24px;
}

/* Work Style */
.work-style-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 640px) {
    .work-style-grid {
        grid-template-columns: 1fr;
    }
}

.work-style-item {
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius-card);
}

.work-style-item p {
    margin: 0;
    color: var(--text2);
}

/* ========================================
   CONTACT
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text2);
    margin-bottom: 32px;
}

.contact-alt {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.contact-alt h4 {
    margin-bottom: 12px;
}

.contact-alt a {
    color: var(--accent);
}

/* Fit Section */
.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .fit-grid {
        grid-template-columns: 1fr;
    }
}

.fit-box {
    padding: 32px;
    border-radius: var(--radius-card);
}

.fit-box.positive {
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.fit-box.negative {
    background: var(--surface);
    border: 1px solid var(--border);
}

.fit-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.fit-box.positive h3 {
    color: var(--success);
}

.fit-box ul {
    margin: 0;
    color: var(--text2);
}

/* ========================================
   LEGAL PAGES
======================================== */
.legal-content {
    max-width: 760px;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 96px;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text2);
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    color: var(--text2);
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--accent);
}

/* ========================================
   UTILITIES
======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-accent {
    color: var(--accent);
}

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

.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ========================================
   WORK STYLE CARDS
======================================== */
.work-style-card {
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.work-style-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.work-style-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.work-style-card h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 12px;
}

.work-style-card p {
    font-size: 15px;
    color: var(--text2);
    margin: 0;
}

/* ========================================
   MARQUEE / LOGO TICKER
======================================== */
.marquee-intro {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 32px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
    background: var(--surface);
}

.marquee {
    display: flex;
    width: max-content;
    animation-name: marquee-scroll;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 64px;
    padding-right: 64px;
}

.marquee-item {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    opacity: 0.6;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 16px;
    }
    .marquee-content {
        gap: 40px;
        padding-right: 40px;
    }
}

/* ========================================
   COUNTER SECTION (for pages that need it)
======================================== */
.counter-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background: linear-gradient(rgba(11, 18, 32, 0.75), rgba(11, 18, 32, 0.75)), url('/images/hero-fallback.jpg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 640px) {
    .counter-section {
        padding: 64px 0;
    }
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}

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

@media (max-width: 640px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.counter-item {
    text-align: center;
}

.counter-num {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #FF2D7D;
    line-height: 1;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .counter-num {
        font-size: 36px;
    }
}

.counter-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 900;
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   STICKY CTA (Mobile Only)
======================================== */
.sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background: var(--bg);
        border-top: 1px solid var(--border);
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 950;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }
    
    .sticky-cta.show {
        transform: translateY(0);
    }
    
    .sticky-cta .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    /* Adjust back-to-top when sticky CTA is visible */
    .sticky-cta.show ~ .back-to-top,
    .back-to-top.with-sticky {
        bottom: 80px;
    }
}

/* ========================================
   FOCUS STATES (Accessibility)
======================================== */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Remove default outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}
