/* ============================================
   olliebichard.co.uk
   Not a template. Not AI. Just good work.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --c-bg: #f4f1ec;
    --c-bg-alt: #eae6df;
    --c-bg-dark: #1a1a18;
    --c-bg-dark-alt: #232320;
    --c-text: #1a1a18;
    --c-text-light: #5c5c56;
    --c-text-muted: #8a8a82;
    --c-text-inv: #f4f1ec;
    --c-text-inv-muted: #a8a89e;
    --c-accent: #e8553d;
    --c-accent-hover: #d44832;
    --c-border: #d6d1c9;
    --c-border-dark: #333330;
    --c-green: #2d8a4e;
    --c-blue: #2d5a8a;
    --c-purple: #6b4c9a;
    --font: 'Space Grotesk', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* --- Skip Link --- */
.skip-link {
    position: absolute; top: -100%; left: 16px; z-index: 9999;
    padding: 12px 24px; background: var(--c-accent); color: white;
    font-weight: 600; border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; outline: 3px solid var(--c-text); outline-offset: 2px; }
*:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease);
}
.navbar.scrolled {
    background: rgba(244, 241, 236, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--c-border);
    padding: 0.75rem 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-brand {
    font-weight: 700; font-size: 1.1rem; color: var(--c-text);
    letter-spacing: -0.02em; transition: color 0.3s var(--ease); z-index: 2;
}
.nav-brand span { color: var(--c-accent); transition: color 0.3s var(--ease); }

/* Navbar dark variant */
.navbar.navbar-dark .nav-brand { color: var(--c-text-inv) !important; }
.navbar.navbar-dark .nav-brand span { color: #e8553d !important; }
.navbar.navbar-dark .nav-links > li > a,
.navbar.navbar-dark .nav-dropdown-trigger { color: var(--c-text-inv-muted) !important; }
.navbar.navbar-dark .nav-links > li > a:hover,
.navbar.navbar-dark .nav-links > li > a.active,
.navbar.navbar-dark .nav-dropdown-trigger:hover { color: var(--c-text-inv) !important; }
.navbar.navbar-dark .nav-toggle span { background: var(--c-text-inv); }
.navbar.navbar-dark.scrolled { background: rgba(26, 26, 24, 0.92); border-bottom-color: var(--c-border-dark); }

.nav-links {
    display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0;
}
.nav-links > li > a {
    font-size: 0.88rem; font-weight: 500; color: var(--c-text-light);
    transition: color 0.2s; position: relative; padding: 0.5rem 0.85rem;
    display: block;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--c-text); }
.nav-links > li > a.active::after {
    content: ''; position: absolute; bottom: 0; left: 0.85rem; right: 0.85rem;
    height: 2px; background: var(--c-accent); border-radius: 1px;
}

/* --- Services Dropdown --- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    font-family: var(--font); font-size: 0.88rem; font-weight: 500;
    color: var(--c-text-light); background: none; border: none;
    cursor: pointer; padding: 0.5rem 0.85rem; display: flex;
    align-items: center; gap: 0.35rem; transition: color 0.2s;
}
.nav-dropdown-trigger:hover { color: var(--c-text); }
.nav-dropdown-trigger i {
    font-size: 0.65rem; transition: transform 0.3s var(--ease);
}
.nav-dropdown.open .nav-dropdown-trigger i { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute; top: calc(100% + 0.75rem); left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 520px; background: var(--c-bg);
    border: 1px solid var(--c-border); border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    z-index: 200; overflow: hidden;
}
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; padding: 0.5rem;
}

.nav-dropdown-item {
    display: flex; align-items: flex-start; gap: 0.85rem;
    padding: 0.85rem 1rem; border-radius: 10px;
    color: var(--c-text); text-decoration: none;
    transition: background 0.2s var(--ease);
}
.nav-dropdown-item:hover { background: var(--c-bg-alt); color: var(--c-text); }
.nav-dropdown-item i {
    font-size: 1.1rem; color: var(--c-accent);
    margin-top: 0.15rem; flex-shrink: 0;
}
.nav-dropdown-item strong {
    display: block; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 0.1rem;
}
.nav-dropdown-item span {
    font-size: 0.78rem; color: var(--c-text-muted); line-height: 1.4;
}

.nav-dropdown-footer {
    border-top: 1px solid var(--c-border); padding: 0.75rem 1.25rem;
    background: var(--c-bg-alt);
}
.nav-dropdown-footer a {
    font-size: 0.82rem; font-weight: 600; color: var(--c-accent);
    display: flex; align-items: center; gap: 0.35rem;
}
.nav-dropdown-footer a:hover { color: var(--c-accent-hover); }
.nav-dropdown-footer a i { transition: transform 0.2s; }
.nav-dropdown-footer a:hover i { transform: translateX(3px); }

/* --- Nav CTA Button --- */
.nav-cta {
    font-family: var(--font); font-size: 0.85rem; font-weight: 600;
    color: var(--c-bg) !important; background: #e8553d;
    padding: 0.55rem 1.35rem; border-radius: 100px; border: none;
    cursor: pointer; transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.nav-cta:hover { background: var(--c-accent-hover); color: var(--c-bg) !important; transform: scale(1.05); }
.navbar.navbar-dark .nav-cta { background: #e8553d; color: var(--c-bg) !important; }
.navbar.navbar-dark .nav-cta:hover { background: var(--c-accent-hover); color: var(--c-bg) !important; }

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; z-index: 10;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px; background: var(--c-text);
    position: absolute; left: 0; transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.open span { background: var(--c-text-inv); }
.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 991px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 85%; max-width: 380px;
        height: 100vh; height: 100dvh; background: var(--c-bg-dark); flex-direction: column;
        justify-content: flex-start; gap: 0; padding: 6rem 2.5rem 2.5rem;
        transition: right 0.4s var(--ease); box-shadow: -12px 0 40px rgba(0,0,0,0.25);
        z-index: 1;
    }
    .nav-links.open { right: 0; }

    /* All top-level items: same font, same alignment, same colour */
    .nav-links > li { width: 100%; }
    .nav-links > li > a,
    .nav-dropdown-trigger {
        font-family: var(--font) !important;
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        color: var(--c-text-inv) !important;
        padding: 0.6rem 0 !important;
        display: block !important;
        text-align: left !important;
        width: 100%;
    }
    .nav-links > li > a:hover,
    .nav-dropdown-trigger:hover {
        color: #e8553d !important;
    }
    .nav-links > li > a.active { color: #e8553d !important; }
    .nav-links > li > a.active::after {
        bottom: 0.3rem; left: 0; right: auto; width: 20px;
        background: #e8553d;
    }

    /* Dropdown chevron */
    .nav-dropdown-trigger i {
        font-size: 0.75rem !important;
        color: var(--c-text-inv-muted);
    }

    /* Dropdown menu in mobile */
    .nav-dropdown-menu {
        position: static; transform: none; width: 100%;
        border: none; box-shadow: none; border-radius: 0;
        padding: 0; background: transparent;
        max-height: 0; overflow: hidden; opacity: 1; visibility: visible;
        pointer-events: auto;
        transition: max-height 0.3s var(--ease);
    }
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 500px; transform: none;
    }
    .nav-dropdown-grid { grid-template-columns: 1fr; padding: 0.25rem 0; gap: 0; }
    .nav-dropdown-item {
        padding: 0.5rem 0 0.5rem 0.75rem;
        border-left: 2px solid var(--c-border-dark);
        color: var(--c-text-inv-muted);
    }
    .nav-dropdown-item:hover { background: transparent; color: var(--c-text-inv); }
    .nav-dropdown-item i { color: #e8553d; font-size: 0.9rem; }
    .nav-dropdown-item strong {
        font-size: 0.88rem; color: var(--c-text-inv);
    }
    .nav-dropdown-item span { display: none; }
    .nav-dropdown-footer { display: none; }

    /* CTA button: same alignment, styled as button */
    .nav-cta {
        font-family: var(--font) !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: var(--c-bg) !important;
        background: #e8553d !important;
        padding: 0.85rem 1.75rem !important;
        border-radius: 100px !important;
        margin-top: 1.5rem;
        display: inline-block;
        text-align: center;
    }
    .nav-cta:hover {
        background: var(--c-accent-hover) !important;
        color: var(--c-bg) !important;
        transform: none !important;
    }
}

/* --- Contact Sidebar --- */
.contact-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0);
    z-index: 500; pointer-events: none;
    transition: background 0.4s var(--ease);
}
.contact-overlay.open {
    background: rgba(0,0,0,0.4); pointer-events: auto;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

.contact-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 100%; max-width: 480px; z-index: 501;
    background: var(--c-bg); border-left: 1px solid var(--c-border);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    display: flex; flex-direction: column;
    box-shadow: -16px 0 50px rgba(0,0,0,0.1);
}
.contact-sidebar.open { transform: translateX(0); }

.contact-sidebar-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 2rem 2rem 1.5rem; border-bottom: 1px solid var(--c-border);
    flex-shrink: 0;
}
.contact-sidebar-header h2 {
    font-size: 1.35rem; font-weight: 700; margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}
.contact-sidebar-header p {
    font-size: 0.88rem; color: var(--c-text-muted); margin: 0; line-height: 1.5;
}

.contact-close {
    background: none; border: 1px solid var(--c-border); width: 36px; height: 36px;
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--c-text-muted); font-size: 0.9rem;
    transition: all 0.2s var(--ease); flex-shrink: 0;
}
.contact-close:hover { border-color: var(--c-text); color: var(--c-text); }

.contact-sidebar-body {
    flex: 1; overflow-y: auto; padding: 2rem;
}

.contact-sidebar-footer {
    border-top: 1px solid var(--c-border); padding: 1.25rem 2rem;
    flex-shrink: 0;
}
.contact-sidebar-footer p {
    font-size: 0.82rem; color: var(--c-text-muted); margin: 0;
}
.contact-sidebar-footer a { color: var(--c-accent); font-weight: 600; }

/* --- Form Styles --- */
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    margin-bottom: 0.4rem; color: var(--c-text);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; font-family: var(--font); font-size: 0.92rem;
    padding: 0.7rem 0.9rem; border: 1.5px solid var(--c-border);
    border-radius: 10px; background: white; color: var(--c-text);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(232, 85, 61, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.form-error {
    background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
    font-size: 0.85rem; padding: 0.75rem 1rem; border-radius: 8px;
    margin-bottom: 1rem; line-height: 1.5;
}

@keyframes spin { to { transform: rotate(360deg); } }
.spin { display: inline-block; animation: spin 1s linear infinite; }

@media (max-width: 480px) {
    .contact-sidebar { max-width: 100%; }
    .contact-sidebar-header,
    .contact-sidebar-body,
    .contact-sidebar-footer { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* --- Hero --- */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 8rem 0 4rem; position: relative;
}
.hero#heroSection { cursor: none; }

.hero-content { position: relative; z-index: 2; }

.hero-label {
    font-family: var(--mono); font-size: 0.75rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--c-accent); margin-bottom: 2rem;
    display: flex; align-items: center; gap: 12px;
}
.hero-label::before {
    content: ''; width: 32px; height: 1px; background: var(--c-accent);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 700;
    line-height: 0.95; letter-spacing: -0.04em;
    margin-bottom: 2rem;
}
.hero h1 .line { display: block; }
.hero h1 .outline {
    -webkit-text-stroke: 1.5px var(--c-text);
    color: transparent;
}
.hero h1 .accent { color: var(--c-accent); }

/* Inverted hero (dark bg for service pages) */
.hero-inverted {
    background: var(--c-bg-dark);
    color: var(--c-text-inv);
}
.hero-inverted .hero-grid {
    opacity: 0.15;
    background-image:
        linear-gradient(var(--c-border-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-border-dark) 1px, transparent 1px);
}
.hero.hero-inverted h1 { color: var(--c-text-inv); }
.hero.hero-inverted h1 .line { color: var(--c-text-inv); }
.hero.hero-inverted h1 .outline {
    -webkit-text-stroke: 1.5px #e8553d;
    color: transparent;
}
.hero.hero-inverted h1 .accent { color: var(--c-accent); }
.hero.hero-inverted .hero-label { color: #e8553d; }
.hero.hero-inverted .hero-label::before { background: #e8553d; }
.hero.hero-inverted .hero-desc { color: var(--c-text-inv-muted); }
.hero-inverted::before {
    background: radial-gradient(circle, rgba(232,85,61,0.1) 0%, transparent 70%);
}
.hero-inverted::after {
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
}

.hero-desc {
    font-size: 1.1rem; color: var(--c-text-light); max-width: 480px;
    line-height: 1.75; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-cursor {
    position: fixed; width: 20px; height: 20px;
    border: 2px solid var(--c-accent); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transition: width 0.3s var(--ease), height 0.3s var(--ease),
                border-color 0.3s, background 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.hero-cursor.hovering {
    width: 50px; height: 50px;
    background: rgba(232, 85, 61, 0.15); border-color: var(--c-accent);
}

.hero-grid {
    position: absolute; inset: 0; z-index: 1;
    background-image:
        linear-gradient(var(--c-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 60% 60% at 70% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 70% 50%, black, transparent);
}

/* --- Buttons --- */
.btn-main {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-size: 0.95rem; font-weight: 600;
    color: var(--c-bg); background: #e8553d; border: none;
    padding: 0.9rem 2rem; border-radius: 100px; cursor: pointer;
    transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.btn-main:hover {
    background: var(--c-accent-hover); color: var(--c-bg);
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,85,61,0.25);
}
.btn-main i { transition: transform 0.3s var(--ease); }
.btn-main:hover i { transform: translateX(4px); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-size: 0.95rem; font-weight: 600;
    color: var(--c-text); background: none; border: 1.5px solid var(--c-border);
    padding: 0.85rem 2rem; border-radius: 100px; cursor: pointer;
    transition: all 0.3s var(--ease);
}
.btn-ghost:hover {
    border-color: var(--c-text); background: var(--c-text);
    color: var(--c-bg); transform: translateY(-2px);
}

.btn-accent {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-size: 0.88rem; font-weight: 600;
    color: var(--c-bg); background: #e8553d; border: none;
    padding: 0.65rem 1.5rem; border-radius: 100px; cursor: pointer;
    transition: all 0.3s var(--ease);
}
.btn-accent:hover {
    background: var(--c-accent-hover); color: var(--c-bg);
    transform: translateY(-1px);
}
.btn-accent.btn-sm { padding: 0.4rem 1.2rem; font-size: 0.82rem; }

/* --- Sections --- */
.section {
    padding: 7rem 0; position: relative;
}
.section-dark {
    background: var(--c-bg-dark); color: var(--c-text-inv);
}
.section-dark h2, .section-dark h3 { color: var(--c-text-inv); }
.section-dark p { color: var(--c-text-inv-muted); }

.section-header {
    margin-bottom: 4rem;
}

.section-number {
    font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
    color: var(--c-accent); letter-spacing: 0.1em; margin-bottom: 0.75rem;
    display: block;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
    letter-spacing: -0.03em; line-height: 1.1;
}

.section-desc {
    font-size: 1.05rem; color: var(--c-text-light); max-width: 500px;
    line-height: 1.7; margin-top: 1rem;
}
.section-dark .section-desc { color: var(--c-text-inv-muted); }

/* --- Service Cards (interactive) --- */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--c-border); border-radius: 16px; overflow: hidden;
}

.service-card {
    background: var(--c-bg); padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
    transition: background 0.4s var(--ease);
    cursor: pointer;
}
.service-card:hover { background: var(--c-bg-alt); }

.service-card .card-glow {
    position: absolute; width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,85,61,0.08), transparent 70%);
    pointer-events: none; opacity: 0;
    transition: opacity 0.4s;
    transform: translate(-50%, -50%);
}
.service-card:hover .card-glow { opacity: 1; }

.service-card .service-icon {
    font-size: 1.5rem; color: var(--c-accent);
    margin-bottom: 1.25rem; display: block;
}

.service-card h3 {
    font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.service-card p {
    font-size: 0.88rem; color: var(--c-text-light);
    line-height: 1.6; margin: 0;
}

.service-card .card-arrow {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    font-size: 1.1rem; color: var(--c-accent);
    opacity: 0; transform: translate(-8px, 8px);
    transition: all 0.3s var(--ease);
}
.service-card:hover .card-arrow { opacity: 1; transform: translate(0); }

@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-grid { grid-template-columns: 1fr; } }

/* --- Project Cards --- */
.project-card {
    display: block; border-radius: 16px; overflow: hidden;
    background: var(--c-bg-dark-alt); color: var(--c-text-inv);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    text-decoration: none; height: 100%;
}
.project-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    color: var(--c-text-inv);
}

.project-card .project-img {
    aspect-ratio: 16 / 10; overflow: hidden;
    background: var(--c-bg-dark); position: relative;
}
.project-card .project-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.project-card:hover .project-img img { transform: scale(1.05); }
.project-card .placeholder-icon {
    position: absolute; inset: 0; display: flex;
    align-items: center; justify-content: center;
    font-size: 2rem; color: var(--c-text-inv-muted);
}

.project-card .project-body { padding: 1.75rem; }
.project-card h3 {
    font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem;
    color: var(--c-text-inv);
}
.project-card .project-excerpt {
    font-size: 0.88rem; color: var(--c-text-inv-muted);
    line-height: 1.6; margin-bottom: 1rem;
}
.project-card .project-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.project-card .project-tag {
    font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 4px 10px; border-radius: 100px;
    border: 1px solid var(--c-border-dark); color: var(--c-text-inv-muted);
}

/* --- Trust / Why Section --- */
.trust-item {
    padding: 2rem; border: 1px solid var(--c-border);
    border-radius: 12px; background: var(--c-bg);
    transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.trust-item:hover {
    border-color: var(--c-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.trust-item .trust-num {
    font-family: var(--mono); font-size: 3rem; font-weight: 700;
    color: var(--c-border); position: absolute; top: 1rem; right: 1.5rem;
    line-height: 1; transition: color 0.3s;
}
.trust-item:hover .trust-num { color: rgba(232,85,61,0.15); }

.trust-item h3 {
    font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem;
}
.trust-item p {
    font-size: 0.88rem; color: var(--c-text-light);
    line-height: 1.65; margin: 0;
}

/* --- CTA Strip --- */
.cta-strip {
    padding: 6rem 0; text-align: center;
    background: var(--c-bg-dark); color: var(--c-text-inv);
    position: relative; overflow: hidden;
}
.cta-strip::before {
    content: ''; position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,85,61,0.1), transparent 70%);
    top: -200px; right: -100px; pointer-events: none;
}
.cta-strip h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700;
    letter-spacing: -0.03em; color: var(--c-text-inv); margin-bottom: 1rem;
}
.cta-strip p {
    font-size: 1.05rem; color: var(--c-text-inv-muted);
    max-width: 480px; margin: 0 auto 2rem; line-height: 1.7;
}

/* --- Area Links --- */
.area-section p {
    font-size: 1rem; color: var(--c-text-light); line-height: 1.8;
    max-width: 650px;
}
.area-section a {
    color: var(--c-text); font-weight: 500;
    border-bottom: 1px solid var(--c-border);
    transition: all 0.2s;
}
.area-section a:hover { color: var(--c-accent); border-color: var(--c-accent); }

/* --- Marquee --- */
.marquee {
    overflow: hidden; white-space: nowrap; padding: 1.5rem 0;
    border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
}
.marquee-track {
    display: flex; gap: 3rem; animation: marquee 25s linear infinite;
}
.marquee-item {
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--c-text-muted); flex-shrink: 0;
    display: flex; align-items: center; gap: 1rem;
}
.marquee-item .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent);
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Footer --- */
.site-footer {
    background: var(--c-bg); border-top: 1px solid var(--c-border);
    padding: 4rem 0 2rem;
}
.site-footer .footer-brand {
    font-size: 1.1rem; font-weight: 700; color: var(--c-text);
}
.site-footer .footer-brand span { color: var(--c-accent); }
.site-footer .footer-tagline {
    font-size: 0.82rem; color: var(--c-text-muted); margin-top: 0.25rem;
}
.site-footer h6 {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--c-text); margin-bottom: 1rem;
}
.site-footer p { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.65; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 0.5rem; }
.footer-links a {
    font-size: 0.88rem; color: var(--c-text-light); transition: color 0.2s;
}
.footer-links a:hover { color: var(--c-accent); }
.footer-bottom {
    border-top: 1px solid var(--c-border); padding-top: 1.5rem; margin-top: 3rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { margin: 0; font-size: 0.78rem; color: var(--c-text-muted); }
.footer-bottom a { font-size: 0.78rem; color: var(--c-text-muted); }
.footer-bottom a:hover { color: var(--c-text-light); }

@media (max-width: 768px) {
    .section { padding: 4.5rem 0; }
    .cta-strip { padding: 4rem 0; }
    .hero { padding: 6rem 0 3rem; min-height: auto; }
    .hero-cursor { display: none; }
    .site-footer { text-align: center; }
    .footer-bottom { justify-content: center; }
}

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
