/* ==========================================================================
   FORMA AGENCY — Bauhaus Geometric Monochrome
   Complete Production Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & RESET
   -------------------------------------------------------------------------- */

:root {
    /* Colors */
    --primary: #1A1A1A;
    --secondary: #2D2D2D;
    --accent: #4A4A4A;
    --text: #1E1E1E;
    --text-light: #6B6B6B;
    --bg: #F5F5F5;
    --bg-alt: #E8E8E8;
    --bg-dark: #1A1A1A;
    --card-bg: #FFFFFF;
    --border: #1A1A1A;
    --shape-light: #D4D4D4;
    --shape-mid: #9A9A9A;
    --shape-dark: #4A4A4A;

    /* Typography */
    --font-heading: 'Urbanist', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-hard: 4px 4px 0 #1A1A1A;
    --shadow-hard-light: 4px 4px 0 rgba(255, 255, 255, 0.2);
    --shadow-hard-accent: 4px 4px 0 var(--accent);

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    --gap: 30px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
}

/* --------------------------------------------------------------------------
   2. LAYOUT
   -------------------------------------------------------------------------- */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section--dark {
    background-color: var(--bg-dark);
    color: #FFFFFF;
}

.section--alt {
    background-color: var(--bg-alt);
}

/* Dot-grid pattern for alt sections */
.section--alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--shape-light) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
}

h1 { font-size: 5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1em;
    font-weight: 400;
    line-height: 1.8;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-tag--light {
    color: var(--shape-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 20px;
}

.section-title--light {
    color: #FFFFFF;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 720px;
    margin-bottom: 50px;
}

.section-intro--light {
    color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    box-shadow: var(--shadow-hard);
}

.btn-primary:hover {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-ghost:hover {
    background-color: var(--primary);
    color: #FFFFFF;
}

.btn-ghost--light {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-ghost--light:hover {
    background-color: #FFFFFF;
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-hard);
    transform: translate(-4px, -4px);
}

.btn-accent {
    background-color: #FFFFFF;
    color: var(--primary);
    border-color: #FFFFFF;
    box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.25);
}

.btn-accent:hover {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg);
    border-bottom: 2px solid var(--border);
    transition: all var(--transition);
}

.header-transparent {
    background-color: transparent;
    border-bottom-color: transparent;
}

.header-transparent .header-logo-top,
.header-transparent .header-logo-bottom,
.header-transparent .header-nav-list a {
    color: #FFFFFF;
}

.site-header.scrolled {
    background-color: var(--bg);
    border-bottom-color: var(--border);
}

.site-header.scrolled .header-logo-top,
.site-header.scrolled .header-logo-bottom,
.site-header.scrolled .header-nav-list a {
    color: var(--text);
}

.site-header.scrolled .hamburger-line {
    background-color: var(--text);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    height: 80px;
}

.header-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none;
    z-index: 1001;
}

.header-logo-top {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text);
    transition: color var(--transition);
}

.header-logo-bottom {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color var(--transition);
}

.header-transparent .header-logo-bottom {
    color: rgba(255, 255, 255, 0.6);
}

.site-header.scrolled .header-logo-bottom {
    color: var(--text-light);
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav-list {
    display: flex;
    gap: 8px;
}

.header-nav-list a {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    padding: 8px 16px;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.header-nav-list a:hover {
    border-color: var(--border);
}

.header-nav-list a.active {
    background-color: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

.header-transparent .header-nav-list a.active {
    background-color: #FFFFFF;
    color: var(--primary);
    border-color: #FFFFFF;
}

.site-header.scrolled .header-nav-list a.active {
    background-color: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

/* --------------------------------------------------------------------------
   6. HAMBURGER
   -------------------------------------------------------------------------- */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    z-index: 1001;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    transition: all var(--transition);
    transform-origin: center;
}

.header-transparent .hamburger-line {
    background-color: #FFFFFF;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --------------------------------------------------------------------------
   7. MOBILE OVERLAY
   -------------------------------------------------------------------------- */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-nav-overlay .header-nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav-overlay .header-nav-list a {
    color: #FFFFFF;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    padding: 10px 24px;
    border-color: transparent;
}

.mobile-nav-overlay .header-nav-list a:hover {
    border-color: #FFFFFF;
}

.mobile-nav-overlay .header-nav-list a.active {
    background-color: #FFFFFF;
    color: var(--primary);
    border-color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 0 30px;
}

/* Geometric decoration shapes */
.hero-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero-shape--circle-1 {
    width: 450px;
    height: 450px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -100px;
}

.hero-shape--rect-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.03);
    bottom: 80px;
    left: -80px;
    transform: rotate(15deg);
}

.hero-shape--circle-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: 30%;
    left: 10%;
}

.hero-shape--rect-2 {
    width: 150px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    bottom: -50px;
    right: 15%;
    transform: rotate(-8deg);
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.55);
    max-width: 640px;
    margin: 0 auto 40px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero-scroll__line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --------------------------------------------------------------------------
   9. SECTION HEADERS
   -------------------------------------------------------------------------- */

.section-header {
    margin-bottom: 20px;
}

.section-header__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 200;
    color: var(--shape-light);
    line-height: 1;
    margin-bottom: 10px;
}

.section-header--light .section-header__number {
    color: rgba(255, 255, 255, 0.15);
}

.section-header__line {
    width: 60px;
    height: 2px;
    background-color: var(--primary);
    margin-top: 10px;
}

.section-header__line--light {
    background-color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   10. MODEL CARDS
   -------------------------------------------------------------------------- */

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.model-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-hard);
    overflow: hidden;
    transition: all var(--transition);
}

.model-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--primary);
}

.model-card__image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-bottom: 2px solid var(--border);
}

.model-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.model-card:hover .model-card__image img {
    filter: grayscale(0%);
}

.model-card__info {
    padding: 20px;
}

.model-card__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    color: var(--text);
}

.model-card__specialty {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.model-card__meta {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--text-light);
}

.model-card__meta span {
    position: relative;
}

.model-card__meta span + span::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: var(--shape-mid);
    border-radius: 50%;
}

/* --------------------------------------------------------------------------
   11. SERVICE CARDS
   -------------------------------------------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.service-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: #FFFFFF;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.service-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.service-card__price {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
}

/* Geometric shapes behind services */
.hero-shape--service-circle {
    width: 350px;
    height: 350px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.hero-shape--service-rect {
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.02);
    bottom: -50px;
    left: 5%;
    transform: rotate(20deg);
}

/* --------------------------------------------------------------------------
   12. STATS
   -------------------------------------------------------------------------- */

.section-stats {
    background-color: var(--bg-alt);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--shape-light) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.stat-divider {
    width: 1px;
    height: 70px;
    background-color: var(--shape-mid);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */

.section-testimonials {
    background-color: var(--bg);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 340px;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.testimonial-card--active {
    display: block;
    animation: fadeInTestimonial 0.5s ease;
}

@keyframes fadeInTestimonial {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-card__quote-mark {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--shape-light);
    line-height: 0.6;
    margin-bottom: 10px;
    user-select: none;
}

.testimonial-card__text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text);
    font-style: normal;
    margin-bottom: 30px;
    border: none;
    padding: 0;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-card__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
}

.testimonial-card__role {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.testimonials-controls__btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 0;
}

.testimonials-controls__btn:hover {
    background-color: var(--primary);
    color: #FFFFFF;
}

.testimonials-controls__btn:hover svg {
    stroke: #FFFFFF;
}

.testimonials-controls__counter {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-light);
    min-width: 60px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   14. PRICING CARDS
   -------------------------------------------------------------------------- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items: start;
}

.pricing-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-hard);
    padding: 40px 30px;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--primary);
}

.pricing-card--featured {
    background-color: var(--primary);
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 6px 6px 0 var(--accent);
    position: relative;
    z-index: 2;
}

.pricing-card--featured:hover {
    transform: scale(1.05) translate(-4px, -4px);
    box-shadow: 10px 10px 0 var(--accent);
}

.pricing-card__name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.pricing-card--featured .pricing-card__name {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card--featured .pricing-card__price {
    color: #FFFFFF;
}

.pricing-card__period {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.pricing-card--featured .pricing-card__period {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card__features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-alt);
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card--featured .pricing-card__features li {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card__features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    flex-shrink: 0;
}

.pricing-card--featured .pricing-card__features li::before {
    background-color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   15. TEAM CARDS
   -------------------------------------------------------------------------- */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.team-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-hard);
    overflow: hidden;
    transition: all var(--transition);
}

.team-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--primary);
}

.team-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 2px solid var(--border);
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.team-card:hover .team-card__image img {
    filter: grayscale(0%);
}

.team-card__body {
    padding: 24px;
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    color: var(--text);
}

.team-card__role {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.team-card__bio {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   16. FAQ ACCORDION
   -------------------------------------------------------------------------- */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item:first-child {
    border-top: 2px solid var(--border);
}

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

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

.faq-question__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--border);
    font-size: 1.2rem;
    font-weight: 300;
    transition: all var(--transition);
}

.faq-question__icon::before {
    content: '+';
}

.faq-item.active .faq-question__icon {
    background-color: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer__inner {
    padding-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* --------------------------------------------------------------------------
   17. CONTACT FORM
   -------------------------------------------------------------------------- */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 0;
    background-color: var(--card-bg);
    font-size: 0.95rem;
    color: var(--text);
    transition: all var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--accent);
    box-shadow: var(--shadow-hard);
    outline: none;
}

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

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%231A1A1A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* --------------------------------------------------------------------------
   18. CTA SECTION
   -------------------------------------------------------------------------- */

.section-cta {
    text-align: center;
    padding: 120px 0;
}

.hero-shape--cta-circle {
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    top: -120px;
    left: -100px;
}

.hero-shape--cta-rect {
    width: 250px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.03);
    bottom: 60px;
    right: 5%;
    transform: rotate(-12deg);
}

.hero-shape--cta-circle-2 {
    width: 180px;
    height: 180px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: 50%;
    right: -60px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.15;
}

.cta-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
    background-color: var(--bg-dark);
    color: #FFFFFF;
    position: relative;
}

.footer-decoration {
    padding: 0 30px;
}

.footer-line {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 30px 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFFFFF;
}

.footer-brand-city {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transition: all var(--transition);
}

.footer-social a:hover {
    background-color: #FFFFFF;
    color: var(--primary);
    border-color: #FFFFFF;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-col--nav .footer-nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.footer-nav-sub a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-nav-sub a:hover {
    color: #FFFFFF;
}

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

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

.footer-contact-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.footer-contact-list a,
.footer-contact-list span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal-links a:hover {
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   20. PAGE HERO (Subpages)
   -------------------------------------------------------------------------- */

.page-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-dark);
    padding: 120px 30px 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.page-hero__tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.page-hero__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   21. BREADCRUMBS
   -------------------------------------------------------------------------- */

.breadcrumbs {
    background-color: var(--bg-alt);
    border-bottom: 2px solid var(--border);
    padding: 14px 0;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
}

.breadcrumbs-list a {
    color: var(--accent);
}

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

.breadcrumbs-list li + li::before {
    content: '/';
    margin-right: 8px;
    color: var(--shape-mid);
}

/* --------------------------------------------------------------------------
   22. COOKIE BANNER
   -------------------------------------------------------------------------- */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    border-top: 2px solid var(--accent);
    padding: 20px 30px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cookie-content a {
    color: #FFFFFF;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   23. 404 PAGE
   -------------------------------------------------------------------------- */

.page-404 {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 30px;
}

.page-404__number {
    font-family: var(--font-heading);
    font-size: 12rem;
    font-weight: 700;
    line-height: 1;
    color: var(--shape-light);
    margin-bottom: 20px;
}

.page-404__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text);
}

.page-404__text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 480px;
}

/* --------------------------------------------------------------------------
   24. BACK TO TOP
   -------------------------------------------------------------------------- */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #FFFFFF;
    border: 2px solid var(--primary);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    cursor: pointer;
    border-radius: 0;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hard);
}

/* --------------------------------------------------------------------------
   25. CUSTOM CURSOR
   -------------------------------------------------------------------------- */

.custom-cursor {
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.15s ease;
}

body:hover .custom-cursor,
body:hover .custom-cursor-dot {
    opacity: 1;
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1.5);
}

/* --------------------------------------------------------------------------
   26. ANIMATIONS
   -------------------------------------------------------------------------- */

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
    transition-delay: var(--delay, 0s);
}

.fade-in.visible {
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   27. LEGAL PAGES
   -------------------------------------------------------------------------- */

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 14px;
    color: var(--text);
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
}

/* --------------------------------------------------------------------------
   28. UTILITIES
   -------------------------------------------------------------------------- */

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

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

/* --------------------------------------------------------------------------
   29. RESPONSIVE
   -------------------------------------------------------------------------- */

/* Tablet: 1024px */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

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

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

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .pricing-card--featured {
        transform: scale(1.02);
    }

    .pricing-card--featured:hover {
        transform: scale(1.02) translate(-4px, -4px);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col--contact {
        grid-column: 1 / -1;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header-nav-list {
        gap: 4px;
    }

    .header-nav-list a {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .page-hero__title {
        font-size: 2.75rem;
    }

    .stat-item__number {
        font-size: 3rem;
    }
}

/* Mobile: 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .header-nav {
        display: none;
    }

    .mobile-nav-overlay.active .header-nav {
        display: flex;
    }

    .header-inner {
        height: 70px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-header__number {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translate(-4px, -4px);
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
        padding: 16px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item__number {
        font-size: 2.5rem;
    }

    .testimonial-card__quote-mark {
        font-size: 5rem;
    }

    .testimonial-card__text {
        font-size: 1.05rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 0.95rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col--nav .footer-nav-columns {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .page-hero {
        min-height: 35vh;
        padding: 100px 20px 50px;
    }

    .page-hero__title {
        font-size: 2.25rem;
    }

    .page-404__number {
        font-size: 7rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 20px 0;
    }

    .legal-content {
        padding: 40px 20px;
    }

    .hero-shape--circle-1 {
        width: 250px;
        height: 250px;
    }

    .hero-shape--rect-1 {
        width: 180px;
        height: 180px;
    }

    .hero-shape--circle-2 {
        width: 120px;
        height: 120px;
    }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    body {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-header__number {
        font-size: 2.5rem;
    }

    .models-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .stat-item__number {
        font-size: 2.2rem;
    }

    .testimonial-card__text {
        font-size: 0.95rem;
    }

    .testimonial-card__quote-mark {
        font-size: 4rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.78rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .page-hero__title {
        font-size: 1.85rem;
    }

    .page-404__number {
        font-size: 5rem;
    }

    .footer-inner {
        padding: 50px 16px 40px;
    }

    .footer-col--nav .footer-nav-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .header-inner {
        height: 60px;
        padding: 0 16px;
    }

    .header-logo-top {
        font-size: 1.1rem;
    }

    .mobile-nav-overlay .header-nav-list a {
        font-size: 1.2rem;
    }

    .section-cta {
        padding: 80px 0;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card__price {
        font-size: 2.5rem;
    }
}

/* --------------------------------------------------------------------------
   30. PRINT & ACCESSIBILITY
   -------------------------------------------------------------------------- */

@media print {
    .site-header,
    .site-footer,
    .cookie-banner,
    .back-to-top,
    .custom-cursor,
    .custom-cursor-dot,
    .hero-scroll,
    .hero-shape,
    .hamburger,
    .mobile-nav-overlay {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    .hero-section {
        min-height: auto;
        background: #fff;
        padding: 40px 0;
    }

    .hero-title {
        color: #000;
        font-size: 2rem;
    }

    .section {
        padding: 30px 0;
    }

    .section--dark {
        background: #fff;
        color: #000;
    }

    a {
        color: #000;
    }

    a[href]::after {
        content: ' (' attr(href) ')';
        font-size: 0.8em;
        color: #666;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-up {
        opacity: 1;
        transform: none;
    }

    .fade-in {
        opacity: 1;
    }

    .hero-scroll__line {
        animation: none;
    }
}

*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

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