/* ========================================
   FLAMELIX — Claude / Anthropic–Inspired
   Warm · Editorial · Breathing
   ======================================== */

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

:root {
    /* Palette */
    --bg: #191919;
    --bg-elevated: #222;
    --bg-light: #f6f1eb;
    --bg-warm: #e8d5c4;

    --surface: rgba(255,255,255,0.05);
    --surface-strong: rgba(255,255,255,0.08);
    --border: rgba(255,255,255,0.09);
    --border-light: rgba(0,0,0,0.08);

    --accent: #d4735c;          /* warm terra / coral */
    --accent-hover: #e0856f;
    --accent-soft: rgba(212,115,92,0.12);

    --text: #ededec;
    --text-secondary: #a8a8a4;
    --text-muted: #6e6e6a;
    --text-dark: #1a1a18;
    --text-dark-secondary: #5a5a56;

    /* Type */
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;

    /* Layout */
    --max-w: 1160px;
    --max-w-narrow: 780px;
    --radius: 16px;       /* large containers */
    --radius-sm: 12px;    /* cards */
    --radius-xs: 8px;     /* buttons, inputs, small elements */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--max-w-narrow);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(25,25,25,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    opacity: 0.92;
    transition: opacity 0.3s;
}

.logo-img:hover {
    opacity: 1;
}

.logo-footer {
    opacity: 0.5;
}

.logo-footer:hover {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.86rem;
    font-weight: 500;
    transition: color 0.25s;
    white-space: nowrap;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--text);
    color: var(--bg);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-xs);
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
}

.nav-cta:hover {
    background: #fff;
    color: var(--bg);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 1px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 3px;
}

.lang-btn {
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--sans);
    letter-spacing: 0.06em;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s;
}

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

.lang-btn.active {
    background: var(--accent);
    color: #fff;
}

/* Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 102;
}

.menu-toggle span {
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 5px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -5px);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: 12rem 0 6rem;
    position: relative;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--serif);
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text);
    max-width: 780px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--sans);
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-xs);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.btn-secondary:hover {
    color: var(--text);
    border-color: rgba(255,255,255,0.35);
    background: var(--surface);
    transform: translateY(-1px);
}

.btn-full { width: 100%; }

.btn-lg {
    padding: 1rem 2.4rem;
    font-size: 0.95rem;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 0;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    justify-content: center;
    max-width: 780px;
    margin: 0 auto;
}

.stat {
    flex: 1;
    padding: 0 2rem;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: var(--border);
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    padding-right: 0;
}

.stat-value {
    display: block;
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
}

/* ========================================
   CLIENTS STRIP (infinite marquee)
   ======================================== */
.clients-strip {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.clients-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.clients-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-wrap {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
}

.marquee-scroll {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1.5rem;
    padding-right: 1.5rem;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.cl-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1;
}

.cl-dot {
    color: var(--text-muted);
    opacity: 0.4;
    font-size: 0.9rem;
    line-height: 1;
}

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

/* ========================================
   SECTION PATTERNS
   ======================================== */
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 3.5rem;
}

.section-eyebrow.centered,
.section-heading.centered,
.section-subtitle.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: -2.5rem;
    margin-bottom: 3.5rem;
    max-width: 560px;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 8rem 0;
}

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

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 2.5rem 2.2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    background: var(--surface-strong);
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.card-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.service-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.2px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.service-card-wide {
    grid-column: 1 / -1;
}

/* ========================================
   PROCESS
   ======================================== */
.process {
    padding: 8rem 0;
    background: var(--bg-light);
    color: var(--text-dark);
}

.process .section-heading {
    color: var(--text-dark);
}

.process-timeline {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    min-height: 0;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xs);
    background: var(--accent);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.step-line {
    width: 2px;
    flex: 1;
    background: rgba(0,0,0,0.1);
    margin: 0.5rem 0;
    min-height: 20px;
}

.step-body {
    padding-bottom: 3rem;
    padding-top: 0.6rem;
}

.process-step:last-child .step-body {
    padding-bottom: 0;
}

.step-body h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.step-body p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-dark-secondary);
    max-width: 560px;
}

/* ========================================
   CASES
   ======================================== */
.cases {
    padding: 8rem 0;
}

.case-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
}

.case-featured-visual {
    position: relative;
    min-height: 340px;
    background: #1a1210;
    display: flex;
    align-items: flex-start;
    padding: 2.5rem;
    overflow: hidden;
}

.case-featured-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.5s;
}

.case-featured:hover .case-featured-img {
    opacity: 0.85;
}

.case-featured-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(212,115,92,0.18), transparent 60%);
}

.case-tag {
    position: relative;
    z-index: 1;
    padding: 0.3rem 0.85rem;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-xs);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.case-featured-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-year {
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.case-featured-body h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-featured-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.case-kpis {
    display: flex;
    gap: 2rem;
}

.kpi strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.kpi span {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* Case Duo */
.case-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.case-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 2.5rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.case-card:hover {
    border-color: rgba(255,255,255,0.14);
    background: var(--surface-strong);
    transform: translateY(-2px);
}

.case-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.case-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-top: 0.25rem;
}

/* Case List */
.case-list {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
}

.case-row {
    display: grid;
    grid-template-columns: 200px 1fr 120px;
    align-items: center;
    padding: 1.15rem 2rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.25s;
    gap: 1.5rem;
}

.case-row:last-child { border-bottom: none; }

.case-row:hover {
    background: var(--surface);
}

.case-row-name {
    font-weight: 700;
    font-size: 0.92rem;
}

.case-row-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.case-row-year {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: right;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-section {
    padding: 8rem 0;
    background: var(--bg-light);
    color: var(--text-dark);
}

.testimonial-section .section-heading {
    color: var(--text-dark);
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 3rem 3rem 2.5rem;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.testimonial-icon {
    font-family: var(--serif);
    font-size: 2.4rem;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 1.5rem;
    user-select: none;
}

.testimonial-quote {
    margin-bottom: 2rem;
}

.testimonial-quote p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-dark-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.72rem;
    color: #fff;
    letter-spacing: -0.3px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.testimonial-info strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.75rem;
    color: var(--text-dark-secondary);
}

/* ========================================
   TEAM
   ======================================== */
.team {
    padding: 8rem 0;
}

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

.team-member {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem 2.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    background: var(--surface-strong);
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.member-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid rgba(212,115,92,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.member-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.member-role {
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 8rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

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

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

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 600;
    font-family: var(--sans);
    cursor: pointer;
    text-align: left;
    gap: 2rem;
    transition: color 0.25s;
}

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

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

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-muted);
    transition: all 0.3s;
    border-radius: 1px;
}

.faq-icon::before {
    width: 12px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    background: var(--accent);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-a {
    max-height: 400px;
}

.faq-a p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 4rem 0 8rem;
}

.cta-box {
    background: var(--accent);
    border-radius: var(--radius);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.12), transparent 60%);
    pointer-events: none;
}

.cta-box h2 {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-box p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    position: relative;
}

.cta-box .btn-primary {
    background: #fff;
    color: var(--bg);
    font-weight: 700;
}

.cta-box .btn-primary:hover {
    background: #f0f0f0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 8rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact .section-heading {
    margin-bottom: 1.5rem;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.c-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s;
}

.c-link:hover {
    color: var(--accent);
}

.c-link svg {
    color: var(--accent);
    opacity: 0.7;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem 1.15rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-muted);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

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

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.5rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s;
}

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

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.25s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.2rem; }
    .section-heading { font-size: 2.2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .case-featured { grid-template-columns: 1fr; }
    .case-duo { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .case-row { grid-template-columns: 1fr; gap: 0.3rem; }
    .case-row-year { text-align: left; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .stat { padding: 0 1.5rem; }
    .stat-value { font-size: 2.6rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-cta { display: none; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--bg-elevated);
        border-left: 1px solid var(--border);
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        align-items: flex-start;
        z-index: 101;
    }

    .nav-menu.active { right: 0; }

    .hero { padding: 8rem 0 4rem; }
    .hero-title { font-size: 2.4rem; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-inner { gap: 3rem; }

    .hero-stats {
        flex-direction: row;
        gap: 0;
    }

    .stat { padding: 0 1rem; }
    .stat-value { font-size: 2rem; }

    .section-heading { font-size: 1.8rem; }
    .testimonial-card { padding: 2rem 1.5rem; }
    .testimonial-quote p { font-size: 0.9rem; }

    .container { padding: 0 1.25rem; }

    .services, .cases, .team, .contact, .faq { padding: 5rem 0; }
    .process { padding: 5rem 0; }


    .services-grid { grid-template-columns: 1fr; }
    .process-step { grid-template-columns: 56px 1fr; gap: 1.25rem; }
    .step-num { width: 40px; height: 40px; font-size: 0.75rem; }
    .step-body { padding-bottom: 2rem; }

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

    .footer-top { flex-direction: column; gap: 2rem; }
    .footer-nav { flex-wrap: wrap; gap: 1rem; }

    .cta-box { padding: 3.5rem 2rem; }
    .cta-box h2 { font-size: 1.7rem; }

    .clients-inner { padding: 0 1.25rem; gap: 1.25rem; }
    .clients-label { font-size: 0.6rem; }
    .cl-name { font-size: 0.78rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
    .hero-stats { flex-direction: column; gap: 0; }
    .stat { padding: 1rem 0; }
    .stat:not(:last-child)::after {
        right: 0; top: auto; bottom: 0; left: 0;
        width: 100%; height: 1px;
    }
    .stat:first-child { padding-top: 0; }
    .stat:last-child { padding-bottom: 0; }
    .stat-value { font-size: 2.4rem; }
    .cta-box h2 { font-size: 1.4rem; }
    .cta-box { padding: 3.5rem 2rem; }
    .section-heading { font-size: 1.5rem; }
    .case-featured-body { padding: 2rem; }
    .process-step { grid-template-columns: 44px 1fr; gap: 1rem; }
    .step-num { width: 36px; height: 36px; font-size: 0.72rem; }
    .service-card { padding: 2rem 1.5rem; }
}
