/* ==========================================================
   ARCHETYPE 3: ETHAN COLE MODERN TECH / GLASSMORPHISM (Ref Image 3)
   Studio: Falco Cetra Perugia (Perugia)
   Class Namespace: fc-*
   ========================================================== */

:root {
    --fc-blue: #0284C7;
    --fc-bg: #F4F6F9;
    --fc-surface: #FFFFFF;
    --fc-border: #E2E8F0;
    --fc-text: #0F172A;
    --fc-muted: #64748B;
    --fc-font: 'Plus Jakarta Sans', sans-serif;
}

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

body.fc-body {
    background-color: var(--fc-bg);
    color: var(--fc-text);
    font-family: var(--fc-font);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

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

/* Containers */
.fc-container, .fc-header-container, .fc-footer-container, .fc-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.fc-header {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--fc-border);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.fc-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fc-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: var(--fc-text);
}
.fc-logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fc-blue);
}
.fc-nav {
    display: flex;
    gap: 28px;
}
.fc-nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--fc-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fc-nav-link.active, .fc-nav-link:hover {
    color: var(--fc-blue);
}

/* Pill Buttons */
.fc-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}
.fc-btn-pill-blue {
    background: var(--fc-blue);
    color: #FFFFFF;
}
.fc-btn-pill-blue:hover {
    background: #1D4ED8;
    box-shadow: 0 6px 20px rgba(37,99,235,0.25);
}
.fc-btn-pill-ghost {
    background: var(--fc-surface);
    color: var(--fc-text);
    border: 1px solid var(--fc-border);
}
.fc-btn-full {
    width: 100%;
}

/* Hero Section (Image 3) */
.fc-hero {
    padding: 70px 0 80px;
}
.fc-hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}
.fc-hero-salute {
    font-size: 14px;
    color: var(--fc-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}
.fc-hero-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--fc-text);
    margin-bottom: 6px;
}
.fc-hero-role {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fc-blue);
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}
.fc-hero-sub {
    font-size: 16px;
    color: var(--fc-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}
.fc-hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}
.fc-trust-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--fc-border);
}
.fc-avatar-stack {
    font-size: 18px;
}
.fc-trust-label {
    font-size: 12px;
    color: var(--fc-muted);
}

/* Orbital Portrait Frame (Ref 3 Exact Signature) */
.fc-orbital-portrait-frame {
    width: 340px;
    height: 340px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(37,99,235,0.3);
    animation: rotateRing 30s infinite linear;
}
@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.fc-portrait-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.fc-portrait-mock {
    font-size: 64px;
}
.fc-hud-tag {
    position: absolute;
    background: var(--fc-surface);
    border: 1px solid var(--fc-border);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.fc-hud-tag small {
    display: block;
    font-size: 9px;
    color: var(--fc-muted);
    letter-spacing: 1px;
}
.fc-hud-tag strong {
    font-size: 12px;
    color: var(--fc-text);
}
.fc-hud-tag-top { top: 20px; right: 0; }
.fc-hud-tag-bottom { bottom: 20px; left: 0; }

/* Work Grid (Ref 3 Featured Work) */
.fc-work-section {
    padding: 60px 0;
}
.fc-sec-kicker {
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: var(--fc-blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.fc-work-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.fc-view-all-link {
    font-size: 13px;
    font-weight: 700;
}
.fc-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.fc-work-card {
    background: var(--fc-surface);
    border: 1px solid var(--fc-border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.fc-work-thumb {
    height: 120px;
    background: #0F172A;
    color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 12px;
}
.fc-work-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
}
.fc-work-card small {
    font-size: 12px;
    color: var(--fc-muted);
}

/* Pills Capabilities */
.fc-do-section {
    padding: 50px 0 70px;
}
.fc-do-header {
    margin-bottom: 30px;
}
.fc-do-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}
.fc-do-header p {
    color: var(--fc-muted);
    font-size: 15px;
}
.fc-pills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.fc-pill-card {
    background: var(--fc-surface);
    border: 1px solid var(--fc-border);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.fc-pill-icon {
    font-size: 22px;
    color: var(--fc-blue);
}
.fc-pill-info strong {
    display: block;
    font-size: 13px;
}
.fc-pill-info small {
    font-size: 11px;
    color: var(--fc-muted);
}

/* Proof Section */
.fc-proof-section {
    padding: 40px 0 70px;
}
.fc-proof-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
}
.fc-quote-card {
    background: #8E9B8E;
    color: #FFFFFF;
    border-radius: 20px;
    padding: 36px;
}
.fc-quote-mark {
    font-size: 40px;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.fc-quote-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.fc-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fc-author-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-author-meta strong {
    display: block;
    font-size: 14px;
}
.fc-author-meta small {
    font-size: 12px;
    opacity: 0.8;
}
.fc-gauge-card {
    background: var(--fc-surface);
    border: 1px solid var(--fc-border);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fc-gauge-label {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--fc-muted);
    font-weight: 700;
    margin-bottom: 16px;
}
.fc-radial-gauge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #E2E8F0;
    border-top-color: var(--fc-blue);
    border-right-color: var(--fc-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.fc-gauge-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--fc-text);
}

/* 5-Step Process Roadmap */
.fc-process-section {
    padding: 50px 0 90px;
}
.fc-sec-header-center {
    text-align: center;
    margin-bottom: 50px;
}
.fc-sec-header-center h2 {
    font-size: 32px;
    font-weight: 800;
}
.fc-roadmap-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}
.fc-step-node {
    background: var(--fc-surface);
    border: 1px solid var(--fc-border);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}
.fc-step-icon {
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}
.fc-step-node strong {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
}
.fc-step-node small {
    font-size: 11px;
    color: var(--fc-muted);
}

/* Subpages */
.fc-page-pad {
    padding: 60px 0 100px;
}
.fc-page-title {
    font-size: 36px;
    font-weight: 900;
    margin: 8px 0 16px;
}
.fc-page-lead {
    font-size: 16px;
    color: var(--fc-muted);
    margin-bottom: 40px;
}
.fc-about-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.fc-stat-glass-card {
    background: var(--fc-surface);
    border: 1px solid var(--fc-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}
.fc-stat-glass-card strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    color: var(--fc-blue);
}
.fc-stat-glass-card small {
    font-size: 13px;
    color: var(--fc-muted);
}

/* Deck */
.fc-services-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.fc-deck-card {
    background: var(--fc-surface);
    border: 1px solid var(--fc-border);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
}
.fc-deck-prominent {
    border-color: var(--fc-blue);
    box-shadow: 0 10px 30px rgba(37,99,235,0.12);
}
.fc-deck-tag {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--fc-blue);
    font-weight: 700;
    margin-bottom: 12px;
}
.fc-deck-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.fc-deck-card p {
    font-size: 14px;
    color: var(--fc-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}
.fc-deck-price {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

/* Contact Form */
.fc-contact-container {
    max-width: 800px;
    margin: 0 auto;
}
.fc-contact-glass-box {
    background: var(--fc-surface);
    border: 1px solid var(--fc-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.fc-glass-header {
    margin-bottom: 30px;
    text-align: center;
}
.fc-glass-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}
.fc-glass-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.fc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.fc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fc-field label {
    font-size: 12px;
    font-weight: 700;
}
.fc-field input, .fc-field select, .fc-field textarea {
    padding: 12px;
    border: 1px solid var(--fc-border);
    border-radius: 8px;
    font-family: inherit;
    background: var(--fc-bg);
}
.fc-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--fc-muted);
}
.fc-err {
    display: none;
    color: #EF4444;
    font-size: 11px;
}
.fc-field.has-error input, .fc-field.has-error select, .fc-field.has-error textarea {
    border-color: #EF4444;
}
.fc-field.has-error .fc-err, .fc-field-privacy.has-error .fc-err {
    display: block;
}
.fc-alert-success {
    background: #EFF6FF;
    border: 1px solid var(--fc-blue);
    padding: 16px;
    border-radius: 10px;
    text-align: center;
}

/* Legal */
.legal-main-container {
    max-width: 900px;
    margin: 50px auto 90px;
    padding: 0 24px;
}
.legal-doc-header {
    border-bottom: 2px solid var(--fc-blue);
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.legal-doc-badge {
    color: var(--fc-blue);
    font-size: 11px;
    font-weight: 700;
}
.legal-doc-title {
    font-size: 32px;
    font-weight: 800;
    margin: 10px 0;
}
.legal-doc-subtitle {
    color: var(--fc-muted);
    font-size: 13px;
}
.legal-section-block {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--fc-border);
}
.legal-section-block h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-blue);
    margin-bottom: 12px;
}
.legal-section-block p, .legal-section-block li {
    font-size: 14px;
    color: var(--fc-muted);
    margin-bottom: 10px;
}
.legal-section-block ul {
    margin-left: 20px;
}
.legal-entity-box, .legal-notice-box, .consent-status-box {
    background: var(--fc-surface);
    border-left: 4px solid var(--fc-blue);
    border-radius: 8px;
    padding: 16px;
    margin: 14px 0;
}
.legal-data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.legal-data-table th, .legal-data-table td {
    padding: 10px;
    border: 1px solid var(--fc-border);
    font-size: 12px;
    text-align: left;
}
.legal-data-table th {
    background: var(--fc-bg);
}

/* Footer */
.fc-footer {
    background: #0B0F17;
    color: #94A3B8;
    padding: 60px 0 30px;
}
.fc-footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.fc-foot-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    display: block;
    margin-bottom: 8px;
}
.fc-foot-addr {
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.6;
}
.fc-foot-col h4 {
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 14px;
}
.fc-foot-col a {
    display: block;
    color: #94A3B8;
    font-size: 13px;
    margin-bottom: 8px;
}
.fc-foot-col a:hover {
    color: var(--fc-blue);
}
.fc-foot-col p {
    font-size: 13px;
}
.fc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
}

/* Cookie Bar */
.fc-cookie-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 460px;
    background: #0B0F17;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}
.fc-cookie-bar.show {
    display: block;
}
.fc-cookie-inner p {
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 14px;
}
.fc-cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .fc-hero-container, .fc-proof-grid, .fc-form-row {
        grid-template-columns: 1fr;
    }
    .fc-work-grid, .fc-pills-grid, .fc-roadmap-line, .fc-services-deck, .fc-about-cards-row {
        grid-template-columns: 1fr 1fr;
    }
    .fc-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}